-
实现结果同ts.get_k_data
可以输出某段日期,包含当日的所有常用数据。
https://tushare.pro/register?reg=234285
-
- [x] https://tushare.pro/document/2?doc_id=192
- [x] https://tushare.pro/document/2?doc_id=191
-
除了000300.SH,其他中证500、创业板指成分权重数据获取正常。
以下是获取000300.SH的过程
df = pro.index_weight(index_code='000300.SH', start_date='20180102', end_date='20181102')
tushare ID: leonfeng2010
-
目前LIBOR只能获取19年8月的数据,后面有计划恢复获取最新的吗?
-
**复现代码:**
···
import tushare as ts
from multiprocessing.pool import Pool
ts.set_token('*******')
pro = ts.pro_api()
def f(x):
return x**3
if __name__ == "__main__":
pool = Pool(4)…
-
版本1.2.45
https://tushare.pro/document/1?doc_id=108里,这个接口权限是0
已经设置了ts.set_token
-
如https://github.com/waditu/tushare/issues/349 所说, 如果去掉start, 就可以拿到今天的数据.
-
![image](https://user-images.githubusercontent.com/55790428/65594386-3c9d3d80-dfc5-11e9-810d-e5a02e8dd7fe.png)
-
df = pro.income(ts_code='002081.SZ')
df[['ts_code','ann_date', 'end_date', 'revenue']]
Out[107]:
ts_code ann_date end_date revenue
0 002081.SZ 20191026 20190930 2.274064e+10
…
-
```
import tushare as ts
ts.get_sz50s()
```
输出
`read_excel() got an unexpected keyword argument 'parse_cols'`