Metadata-Version: 2.4
Name: smoosense
Version: 0.0.1rc24
Summary: Smoothly make sense of your large multi-modal datasets
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: boto3>=1.39.11
Requires-Dist: click>=8.1.8
Requires-Dist: duckdb>=1.2.1
Requires-Dist: flask>=3.1.0
Requires-Dist: pydantic>=2.11.7
Requires-Dist: pytz>=2025.2
Requires-Dist: requests>=2.32.3
Provides-Extra: jupyter
Requires-Dist: pandas>=2.3.0; extra == "jupyter"
Requires-Dist: pyarrow>=20.0.0; extra == "jupyter"
Requires-Dist: ipython>=8.0.0; extra == "jupyter"
Provides-Extra: daft
Requires-Dist: smoosense[jupyter]; extra == "daft"
Requires-Dist: daft>=0.3.0; extra == "daft"
Dynamic: license-file

# SmooSense Python SDK

SmooSense is a web-based application for exploring and analyzing large-scale multi-modal tabular data. It provides an intuitive interface for working with CSV, Parquet, and other data formats with powerful SQL querying capabilities.

This repo contains source code for "SmooSense Python SDK".

## Feature highlights
- Natively visualize multimodal data (images, videos, json, bbox, image mask, 3d assets etc)
- Effortlessly look at distribution. Automatic drill-through from statistics to random samples.
- Graphical and interactive slice-n-dice of your dataset.
- Large scale support for 100 million rows on your laptop.
- Easy to integrate; SmooSense directly work with table file (parquet, csv, jsonl, etc)
- Low cost. Free and open source to use on your laptop. Compute efficient when deployed.

Demo: <https://demo.smoosense.ai>

## How to use
### CLI
Install [uv](https://docs.astral.sh/uv/#highlights), and then
```bash
uv tool install -U smoosense
```
In terminal, `cd` into the folder containing your data files, and then run `sense`

### Jupyter Notebook
```bash
pip install -U "smoosense[jupyter]"
```
Inside Jupyter notebook:
```python
from smoosense.widget import Sense
import pandas as pd
import numpy as np

df = pd.DataFrame(np.random.randn(500, 5), columns=["a", "b", "c", "d", "e"])

Sense(df)  # Displays automatically in Jupyter
```

## License

SmooSense Python SDK is licensed under **Apache 2.0**.

This is a permissive open source license that allows you to:
- ✅ Use SmooSense for any purpose, including commercial use
- ✅ Modify and distribute the software
- ✅ Use it in proprietary software
- ✅ Deploy it in production environments
- ✅ Include it as a dependency in your projects

See the full [LICENSE](LICENSE) file for complete terms and conditions.
