Tushare 入门
一、安装 Tushare
pip install tushare
二、设置 Token
import tushare as ts
ts.set_token("{token}") # 设置一次就OK了
三、基本使用
以查询某只股票的日线行情为例:
pro = ts.pro_api()
df = pro.query('daily', ts_code='600491.SH', start_date='20241202', end_date='20241210')
print(df)
License:
CC BY 4.0