L2股票数据接口golang-数据存盘

1、存储
importtushareasts
importpandasaspd
e=ts.get_today_all()
printe
h5=pd.HDFStore('data/tmp.h5','w')
h5['data']=e
h5.close()
2、读取
importpandasaspd
h5=pd.HDFStore('data/tmp.h5','r')
e=h5['data']
h5.close()
printe