Metadata-Version: 2.4
Name: tsshare
Version: 1.0.19
Summary: tsshare — Financial data proxy SDK, drop-in replacement for pro_api
Author-email: tsshare team <tsshare@example.com>
License-Expression: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Office/Business :: Financial
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests<3.0.0,>=2.28.0
Requires-Dist: pandas<4.0.0,>=1.5.0
Requires-Dist: urllib3<3.0.0,>=1.26.0
Dynamic: license-file

# tsshare SDK

A drop-in replacement for Tushare's `pro_api` — same API, no quota limits.

## Installation

```bash
pip install tsshare
```

## Quick Start

```python
import tsshare as ts

# One-line setup: paste your auth_code
ts.set_token("your-auth-code")

# Use exactly like tushare pro_api
pro = ts.pro_api()
df = pro.daily(ts_code="000001.SZ", start_date="20240101", end_date="20240201")
print(df)
```

## Supported APIs

All Tushare APIs are supported: `daily`, `stock_basic`, `trade_cal`, `income`, `balancesheet`, `moneyflow`, and more.

## Platform Support

- Windows (x86_64)
- macOS (Apple Silicon / Intel)
- Linux (x86_64 / aarch64)

Python 3.8 or later required.

## License

MIT
