Metadata-Version: 2.4
Name: quantgoData
Version: 1.0.0
Summary: QuantGo SDK - Tushare兼容的量化数据接口
Home-page: https://quantgo.ai
Author: QuantGo Team
Author-email: QuantGo Team <support@quantgo.ai>
License: MIT
Project-URL: Homepage, https://quantgo.ai
Keywords: quantgo,tushare,stock,data,api,quant
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Requires-Dist: pandas>=1.3.0
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# QuantGo SDK

Tushare兼容的量化数据接口，连接QuantGo数据服务。

## 安装

```bash
pip install quantgoData
```

## 使用

```python
import quantgo
api = quantgo.pro_api(token='your_token', server='https://quantgo.ai/data')

# 获取日线数据
df = api.daily(ts_code='000001.SZ', start_date='20260101', end_date='20260130')

# 获取交易日历
cal = api.trade_cal(start_date='20260101', end_date='20260131')

# 获取ETF日线
etf = api.fund_daily(ts_code='510300.SH', start_date='20260101')
```

## 支持接口

| 接口 | 说明 |
|------|------|
| daily | 日线行情 |
| weekly | 周线行情 |
| monthly | 月线行情 |
| daily_basic | 每日指标 |
| stock_basic | 股票列表 |
| trade_cal | 交易日历 |
| stk_mins | 分钟线 |
| fund_daily | 基金/ETF日线 |
| index_daily | 指数日线 |
| moneyflow | 资金流向 |
| margin | 融资融券 |
| limit_list_d | 涨跌停统计 |
| cn_gdp/cn_cpi/cn_pmi | 宏观经济 |
| ths_index/ths_daily | 同花顺概念 |
| moneyflow_hsgt | 北向资金 |

## Token获取

访问 https://quantgo.ai 注册获取API Token。
