Metadata-Version: 2.5
Name: pytae
Version: 3.0.0
Summary: A package to enhance common day to day tasks in the life of a data scientist
Project-URL: Homepage, https://github.com/maddytae/pytae
Project-URL: Bug Tracker, https://github.com/maddytae/pytae/issues
Author-email: Madhukar Kumar Jha <madhukar.k.jha@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Requires-Dist: pandas>=2.0
Requires-Dist: pyarrow>=15.0.0
Provides-Extra: dev
Requires-Dist: matplotlib; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Provides-Extra: plot
Requires-Dist: matplotlib; extra == 'plot'
Description-Content-Type: text/markdown

# pytae

R-style chaining on pandas, plus a CLI for inspecting and converting tabular files (`.parquet`, `.csv`, `.txt`, `.sas7bdat`).

## Install

```bash
pip install pytae          # CLI + DataFrame methods (pandas ≥ 2.0, pyarrow ≥ 15)
pip install pytae[plot]    # matplotlib — only needed for Plotter
```

Requires **Python ≥ 3.10** and **pandas ≥ 2.0**.

```bash
pip install -e ".[dev]"    # local checkout
pytest
```

## Docs

- [CLI](docs/CLI.md)
- [Library](docs/LIBRARY.md)
