Metadata-Version: 2.4
Name: poly-storage-sdk
Version: 0.1.0
Summary: Official Python SDK for the Entity Market Data API.
Project-URL: Homepage, https://entityml.com
Project-URL: Documentation, https://entityml.com/documentation
Project-URL: Repository, https://github.com/agov12/poly-storage
Project-URL: Issues, https://github.com/agov12/poly-storage/issues
Author: EntityML
License: MIT
Keywords: api,entityml,kalshi,polymarket,sdk
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.9
Requires-Dist: requests>=2.31.0
Description-Content-Type: text/markdown

# poly-storage-sdk

Official Python SDK for the Entity Market Data API.

## Install

```bash
pip install poly-storage-sdk
```

## Usage

```python
from poly_storage_sdk import PolyStorageClient

client = PolyStorageClient(api_key="YOUR_API_KEY")

health = client.system.health()
data = client.polymarket.get_market_data(
    condition_id="0x0008043c3ed513ecff7ee64380fc943dc73eb3dfb6674f281149efe4769f7515",
    date="2026-02-13",
)
```
