Metadata-Version: 2.4
Name: tickdeep
Version: 0.1.0
Summary: TickDeep Python SDK
Author: TickDeep
License-Expression: LicenseRef-Proprietary
Keywords: tickdeep,market-data,websocket,sdk
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: websockets

# TickDeep Python SDK

TickDeep Python client for consuming live market data streams.

## Install

```bash
pip install tickdeep
```

## Quick Start

```python
from tickdeep import Live

client = Live(key="your-api-key")

client.subscribe(dataset="your-dataset", schema="your-schema", symbols="your-symbol")

for record in client:
    print(record)
```

## Notes

- The installable package is `tickdeep`.
- Example scripts are not included in package modules.
