Metadata-Version: 2.4
Name: pdboost
Version: 0.1.0
Summary: A drop-in accelerator for Pandas using DuckDB (Zero-Copy).
Home-page: https://github.com/ashish-002/pdboost
Author: Ashish
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: pandas>=1.5.0
Requires-Dist: duckdb>=0.9.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# PDBoost: Pandas, but it doesn't crash on large files.

PDBoost is a lightweight wrapper around **Pandas** that automatically detects when a dataset is too large for RAM. When it sees a large file (CSV, Parquet, JSON), it silently swaps the backend to **DuckDB** or **Polars** while keeping the standard Pandas API.

## Installation
```bash
git clone [https://github.com/ashish-002/pdboost.git]
cd pdboost
pip install .
