使用python调用tushare股票基金数据接口,附带Python源码

tushare提供了股票基金等很多数据接口,python调用是最好方法,因为tushare系统是基于python开发的。

注册用户使用链接:https://tushare.pro/register?reg=266769

下面例子可以调用tushare股票列表数据:

#-*-coding:GBK -*- 
import tushare as ts
import time
import datetime
from pandas import DataFrame

ts.set_token('*********************************************************')
pro = ts.pro_api()
data = pro.stock_basic(exchange='',list_status='L')
print(data)

# 部分数据
# 3666  688122.SH  688122   西部超导   陕西      小金属    科创板  20190722
# 3667  688168.SH  688168   N安博通   北京     软件服务    科创板  20190906
# 3668  688188.SH  688188   柏楚电子   上海     软件服务    科创板  20190808
# 3669  688321.SH  688321   微芯生物   深圳     化学制药    科创板  20190812
# 3670  688333.SH  688333    铂力特   陕西     机械基件    科创板  20190722
# 3671  688388.SH  688388   嘉元科技   广东      元器件    科创板  20190722
# ……
# [3672 rows x 7 columns]

 

注册用户使用链接:https://tushare.pro/register?reg=266769

你可能感兴趣的:(python,python,接口,数据,股票,基金)