Metadata-Version: 2.1
Name: tickhub
Version: 0.3.0
Summary: A Python SDK for real-time stock and futures market data
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev

# TickHub Python SDK

A Python SDK for financial market data.

## How to use

```python
import tickhub

# Initialize client
pro = tickhub.pro("your-api-token")

# Get daily data
df = pro.daily(
    ts_code='000001.SZ',
    start_date='20240101',
    end_date='20240131'
)

# Get realtime data
df = pro.rt_k(ts_code='000001.SZ')
```

## Documentation

- [API Docs](docs/api/) - API reference documentation


## Development

- [DEVELOPMENT.md](docs/dev/DEVELOPMENT.md) - Development environment setup
- [DESIGN.md](DESIGN.md) - Design document
- [API_GUIDE.md](docs/dev/API_GUIDE.md) - API development guide
- [PYPI_RELEASE.md](PYPI_RELEASE.md) - PyPI release guide

## License

MIT
