接口: stock_zh_index_spot_em 目标地址:https://quote.eastmoney.com/center/gridlist.html#index_sz 描述:东方财富网-行情中心-沪深京指数 限量: 单次返回所有指数的实时行情数据 输入参数 输出参数 接口示例 import akshare as ak stock_zh_index_spot_em_df = ak.stock_zh_index_spot_em(symbol="上证系...
"stock_zh_index_spot_em" # 实时行情数据 实时行情数据-东财 接口: stock_zh_index_spot_em 目标地址: quote.eastmoney.com/cen 描述: 东方财富网-行情中心-沪深京指数 限量: 单次返回所有指数的实时行情数据 输入参数 名称类型描述 symbol str symbol="上证系列指数";choice of {"上证系列指数", "深证系列...
ak.stock_zh_a_cdr_daily(symbol, start_date, end_date) 某股票的历史行情数据(不考虑复权) symbol 股票代码,symbol=‘sh600000’; 股票代码可以在 ak.stock_zh_a_spot() 中获取 symbol 股票代码,symbol=‘sh600000’; 股票代码可以在 ak.stock_zh_a_spot() 中获取 start_date 开始查询的日期;start_da...
adjust_futures_df = futures_df["20150102":] / futures_df["20150102"] *1000adjust_futures_df.plot(linewidth=4) plt.title("index example") plt.legend() plt.show() 会画出图片 股票指数查询 aksharetest02.py importakshareasak stock_df = ak.stock_zh_index_spot()print(stock_df) ak_test环...
"20150102"] * 1000 adjust_futures_df.plot(linewidth=4)plt.title("index example")plt.legend()plt.show()会画出图片 股票指数查询aksharetest02.py import akshare as ak stock_df = ak.stock_zh_index_spot()print(stock_df)下面是vmware的虚拟机文件目录和Anaconda的自建环境文件目录,是不是很像 ...
stock_df = ak.stock_zh_index_spot() print(stock_df) 1. 2. 3. ak_test环境和base是隔离的 如果执行conda deactivate离开这个环境切换到(base)环境,可以看到找不到akshare模块,说明base和ak_test环境是隔离的。 自建环境像是新建了个虚拟机 下面是vmware的虚拟机文件目录和Anaconda的自建环境文件目录,是不是...
import akshare as ak# 获取东方财富网-沪深京 A 股-实时行情df = ak.stock_zh_a_spot_em()# 保存为csv文件,encoding="utf_8_sig"确保csv文件可以正常显示中文spath = r"./data.csv"df.to_csv(spath, encoding="utf_8_sig", index=False)获取的CSV数据可以通过excel打开:使用python获取历史股票数据 ...
df = ak.stock_zh_index_spot() return [{'market_code': df.loc[i]['代码'].upper(), 'name': df.loc[i]['名称']} for i in range(len(df))]58 changes: 51 additions & 7 deletions 58 hikyuu/data/pytdx_to_h5.py Original file line numberDiff line numberDiff line change @@ -...
print(stock_zh_a_spot_df) # 插入到 MySQL 数据库中 common.insert_db(stock_zh_a_spot_df, "stock_zh_a_spot", True, "`symbol`") 20 changes: 20 additions & 0 deletions 20 jobs/test_akshare/test_stock_zh_index_spot.py Original file line numberDiff line numberDiff line change @@ -...
增加导出到代码,比如 csv 代码: import akshare as ak stock_zh_a_spot_em_df = ak.bond_cb_jsl(cookie="替换成你自己的cookie") stock_zh_a_spot_em_df.to_csv('可转债.csv', index=False, encoding='utf-8-sig') print(stock_zh_a_spot_em_df)...