gitextract_cj0h4lbg/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── akshare_report.md │ └── workflows/ │ ├── main_dev_check.yml │ └── release_and_deploy.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile-Jupyter ├── LICENSE ├── README.md ├── akshare/ │ ├── __init__.py │ ├── _version.py │ ├── air/ │ │ ├── __init__.py │ │ ├── air_hebei.py │ │ ├── air_zhenqi.py │ │ ├── cons.py │ │ ├── crypto.js │ │ ├── outcrypto.js │ │ └── sunrise_tad.py │ ├── article/ │ │ ├── __init__.py │ │ ├── cons.py │ │ ├── epu_index.py │ │ ├── ff_factor.py │ │ ├── fred_md.py │ │ └── risk_rv.py │ ├── bank/ │ │ ├── __init__.py │ │ ├── bank_cbirc_2020.py │ │ └── cons.py │ ├── bond/ │ │ ├── __init__.py │ │ ├── bond_buy_back_em.py │ │ ├── bond_cb_sina.py │ │ ├── bond_cb_ths.py │ │ ├── bond_cbond.py │ │ ├── bond_china.py │ │ ├── bond_china_money.py │ │ ├── bond_convert.py │ │ ├── bond_em.py │ │ ├── bond_gb_sina.py │ │ ├── bond_info_cm.py │ │ ├── bond_issue_cninfo.py │ │ ├── bond_nafmii.py │ │ ├── bond_summary.py │ │ ├── bond_zh_cov.py │ │ ├── bond_zh_sina.py │ │ └── cons.py │ ├── cal/ │ │ ├── __init__.py │ │ └── rv.py │ ├── crypto/ │ │ ├── __init__.py │ │ ├── crypto_bitcoin_cme.py │ │ └── crypto_hold.py │ ├── currency/ │ │ ├── __init__.py │ │ ├── currency.py │ │ ├── currency_china_bank_sina.py │ │ └── currency_safe.py │ ├── data/ │ │ ├── __init__.py │ │ ├── cninfo.js │ │ └── ths.js │ ├── datasets.py │ ├── economic/ │ │ ├── __init__.py │ │ ├── cons.py │ │ ├── macro_australia.py │ │ ├── macro_bank.py │ │ ├── macro_canada.py │ │ ├── macro_china.py │ │ ├── macro_china_hk.py │ │ ├── macro_china_nbs.py │ │ ├── macro_constitute.py │ │ ├── macro_euro.py │ │ ├── macro_finance_ths.py │ │ ├── macro_germany.py │ │ ├── macro_info_ws.py │ │ ├── macro_japan.py │ │ ├── macro_other.py │ │ ├── macro_swiss.py │ │ ├── macro_uk.py │ │ ├── macro_usa.py │ │ └── marco_cnbs.py │ ├── energy/ │ │ ├── __init__.py │ │ ├── energy_carbon.py │ │ └── energy_oil_em.py │ ├── event/ │ │ ├── __init__.py │ │ ├── cons.py │ │ └── migration.py │ ├── exceptions.py │ ├── file_fold/ │ │ ├── __init__.py │ │ └── calendar.json │ ├── forex/ │ │ ├── __init__.py │ │ ├── cons.py │ │ └── forex_em.py │ ├── fortune/ │ │ ├── __init__.py │ │ ├── fortune_500.py │ │ ├── fortune_bloomberg.py │ │ ├── fortune_forbes_500.py │ │ ├── fortune_hurun.py │ │ └── fortune_xincaifu_500.py │ ├── fund/ │ │ ├── __init__.py │ │ ├── fund_amac.py │ │ ├── fund_announcement_em.py │ │ ├── fund_aum_em.py │ │ ├── fund_em.py │ │ ├── fund_etf_em.py │ │ ├── fund_etf_sina.py │ │ ├── fund_etf_sse.py │ │ ├── fund_etf_szse.py │ │ ├── fund_etf_ths.py │ │ ├── fund_fee_em.py │ │ ├── fund_fhsp_em.py │ │ ├── fund_init_em.py │ │ ├── fund_init_ths.py │ │ ├── fund_lof_em.py │ │ ├── fund_manager.py │ │ ├── fund_overview_em.py │ │ ├── fund_portfolio_em.py │ │ ├── fund_position_lg.py │ │ ├── fund_rank_em.py │ │ ├── fund_rating.py │ │ ├── fund_report_cninfo.py │ │ ├── fund_scale_em.py │ │ ├── fund_scale_sina.py │ │ └── fund_xq.py │ ├── futures/ │ │ ├── __init__.py │ │ ├── cons.py │ │ ├── cot.py │ │ ├── futures_basis.py │ │ ├── futures_comex_em.py │ │ ├── futures_comm_ctp.py │ │ ├── futures_comm_js.py │ │ ├── futures_comm_qihuo.py │ │ ├── futures_contract_detail.py │ │ ├── futures_daily_bar.py │ │ ├── futures_foreign.py │ │ ├── futures_hf_em.py │ │ ├── futures_hist_em.py │ │ ├── futures_hq_sina.py │ │ ├── futures_index_ccidx.py │ │ ├── futures_inventory_99.py │ │ ├── futures_inventory_em.py │ │ ├── futures_news_shmet.py │ │ ├── futures_roll_yield.py │ │ ├── futures_rule.py │ │ ├── futures_rule_em.py │ │ ├── futures_settle.py │ │ ├── futures_settlement_price_sgx.py │ │ ├── futures_spot_stock_em.py │ │ ├── futures_stock_js.py │ │ ├── futures_to_spot.py │ │ ├── futures_warehouse_receipt.py │ │ ├── futures_zh_sina.py │ │ ├── receipt.py │ │ ├── requests_fun.py │ │ └── symbol_var.py │ ├── futures_derivative/ │ │ ├── __init__.py │ │ ├── cons.py │ │ ├── futures_contract_info_cffex.py │ │ ├── futures_contract_info_czce.py │ │ ├── futures_contract_info_dce.py │ │ ├── futures_contract_info_gfex.py │ │ ├── futures_contract_info_ine.py │ │ ├── futures_contract_info_shfe.py │ │ ├── futures_cot_sina.py │ │ ├── futures_hog.py │ │ ├── futures_index_sina.py │ │ └── futures_spot_sys.py │ ├── fx/ │ │ ├── __init__.py │ │ ├── cons.py │ │ ├── currency_investing.py │ │ ├── fx_c_swap_cm.py │ │ ├── fx_quote.py │ │ └── fx_quote_baidu.py │ ├── hf/ │ │ ├── __init__.py │ │ └── hf_sp500.py │ ├── index/ │ │ ├── __init__.py │ │ ├── cons.py │ │ ├── index_cflp.py │ │ ├── index_cni.py │ │ ├── index_cons.py │ │ ├── index_csindex.py │ │ ├── index_cx.py │ │ ├── index_drewry.py │ │ ├── index_eri.py │ │ ├── index_global_em.py │ │ ├── index_global_sina.py │ │ ├── index_hog.py │ │ ├── index_kq_fz.py │ │ ├── index_kq_ss.py │ │ ├── index_option_qvix.py │ │ ├── index_research_fund_sw.py │ │ ├── index_research_sw.py │ │ ├── index_spot.py │ │ ├── index_stock_hk.py │ │ ├── index_stock_us_sina.py │ │ ├── index_stock_zh.py │ │ ├── index_stock_zh_csindex.py │ │ ├── index_sugar.py │ │ ├── index_sw.py │ │ ├── index_yw.py │ │ ├── index_zh_a_scope.py │ │ └── index_zh_em.py │ ├── interest_rate/ │ │ ├── __init__.py │ │ └── interbank_rate_em.py │ ├── movie/ │ │ ├── __init__.py │ │ ├── artist_yien.py │ │ ├── jm.js │ │ ├── movie_yien.py │ │ └── video_yien.py │ ├── news/ │ │ ├── __init__.py │ │ ├── news_baidu.py │ │ ├── news_cctv.py │ │ └── news_stock.py │ ├── nlp/ │ │ ├── __init__.py │ │ └── nlp_interface.py │ ├── option/ │ │ ├── __init__.py │ │ ├── cons.py │ │ ├── option_comm_qihuo.py │ │ ├── option_commodity.py │ │ ├── option_commodity_sina.py │ │ ├── option_contract_info_ctp.py │ │ ├── option_current_sse.py │ │ ├── option_current_szse.py │ │ ├── option_czce.py │ │ ├── option_daily_stats_sse_szse.py │ │ ├── option_em.py │ │ ├── option_finance.py │ │ ├── option_finance_sina.py │ │ ├── option_lhb_em.py │ │ ├── option_margin.py │ │ ├── option_premium_analysis_em.py │ │ ├── option_risk_analysis_em.py │ │ ├── option_risk_indicator_sse.py │ │ └── option_value_analysis_em.py │ ├── other/ │ │ ├── __init__.py │ │ ├── other_car_cpca.py │ │ └── other_car_gasgoo.py │ ├── pro/ │ │ ├── __init__.py │ │ ├── client.py │ │ ├── cons.py │ │ └── data_pro.py │ ├── qdii/ │ │ ├── __init__.py │ │ └── qdii_jsl.py │ ├── qhkc/ │ │ ├── __init__.py │ │ └── qhkc_api.py │ ├── qhkc_web/ │ │ ├── __init__.py │ │ ├── qhkc_fund.py │ │ ├── qhkc_index.py │ │ └── qhkc_tool.py │ ├── rate/ │ │ ├── __init__.py │ │ └── repo_rate.py │ ├── reits/ │ │ ├── __init__.py │ │ └── reits_basic.py │ ├── request.py │ ├── spot/ │ │ ├── __init__.py │ │ ├── spot_hog_soozhu.py │ │ ├── spot_price_qh.py │ │ └── spot_sge.py │ ├── stock/ │ │ ├── __init__.py │ │ ├── cons.py │ │ ├── stock_allotment_cninfo.py │ │ ├── stock_ask_bid_em.py │ │ ├── stock_board_concept_em.py │ │ ├── stock_board_industry_em.py │ │ ├── stock_cg_equity_mortgage.py │ │ ├── stock_cg_guarantee.py │ │ ├── stock_cg_lawsuit.py │ │ ├── stock_dividend_cninfo.py │ │ ├── stock_dzjy_em.py │ │ ├── stock_fund_em.py │ │ ├── stock_fund_hold.py │ │ ├── stock_gsrl_em.py │ │ ├── stock_hk_comparison_em.py │ │ ├── stock_hk_famous.py │ │ ├── stock_hk_fhpx_ths.py │ │ ├── stock_hk_hot_rank_em.py │ │ ├── stock_hk_sina.py │ │ ├── stock_hold_control_cninfo.py │ │ ├── stock_hold_control_em.py │ │ ├── stock_hold_num_cninfo.py │ │ ├── stock_hot_rank_em.py │ │ ├── stock_hot_search_baidu.py │ │ ├── stock_hot_up_em.py │ │ ├── stock_hsgt_em.py │ │ ├── stock_industry.py │ │ ├── stock_industry_cninfo.py │ │ ├── stock_industry_pe_cninfo.py │ │ ├── stock_industry_sw.py │ │ ├── stock_info.py │ │ ├── stock_info_em.py │ │ ├── stock_intraday_em.py │ │ ├── stock_intraday_sina.py │ │ ├── stock_ipo_summary_cninfo.py │ │ ├── stock_new_cninfo.py │ │ ├── stock_news_cx.py │ │ ├── stock_profile_cninfo.py │ │ ├── stock_profile_em.py │ │ ├── stock_rank_forecast.py │ │ ├── stock_repurchase_em.py │ │ ├── stock_share_changes_cninfo.py │ │ ├── stock_share_hold.py │ │ ├── stock_stop.py │ │ ├── stock_summary.py │ │ ├── stock_us_famous.py │ │ ├── stock_us_js.py │ │ ├── stock_us_pink.py │ │ ├── stock_us_sina.py │ │ ├── stock_weibo_nlp.py │ │ ├── stock_xq.py │ │ ├── stock_zh_a_sina.py │ │ ├── stock_zh_a_special.py │ │ ├── stock_zh_a_tick_tx.py │ │ ├── stock_zh_ah_tx.py │ │ ├── stock_zh_b_sina.py │ │ ├── stock_zh_comparison_em.py │ │ ├── stock_zh_kcb_report.py │ │ └── stock_zh_kcb_sina.py │ ├── stock_feature/ │ │ ├── __init__.py │ │ ├── cons.py │ │ ├── stock_a_below_net_asset_statistics.py │ │ ├── stock_a_high_low.py │ │ ├── stock_a_indicator.py │ │ ├── stock_a_pe_and_pb.py │ │ ├── stock_account_em.py │ │ ├── stock_all_pb.py │ │ ├── stock_analyst_em.py │ │ ├── stock_board_concept_ths.py │ │ ├── stock_board_industry_ths.py │ │ ├── stock_buffett_index_lg.py │ │ ├── stock_classify_sina.py │ │ ├── stock_comment_em.py │ │ ├── stock_concept_futu.py │ │ ├── stock_congestion_lg.py │ │ ├── stock_cyq_em.py │ │ ├── stock_disclosure_cninfo.py │ │ ├── stock_dxsyl_em.py │ │ ├── stock_ebs_lg.py │ │ ├── stock_esg_sina.py │ │ ├── stock_fhps_em.py │ │ ├── stock_fhps_ths.py │ │ ├── stock_fund_flow.py │ │ ├── stock_gddh_em.py │ │ ├── stock_gdfx_em.py │ │ ├── stock_gdhs.py │ │ ├── stock_gdzjc_em.py │ │ ├── stock_gpzy_em.py │ │ ├── stock_gxl_lg.py │ │ ├── stock_hist_em.py │ │ ├── stock_hist_tx.py │ │ ├── stock_hk_valuation_baidu.py │ │ ├── stock_hot_xq.py │ │ ├── stock_hsgt_em.py │ │ ├── stock_hsgt_exchange_rate.py │ │ ├── stock_hsgt_min_em.py │ │ ├── stock_info.py │ │ ├── stock_inner_trade_xq.py │ │ ├── stock_irm_cninfo.py │ │ ├── stock_jgdy_em.py │ │ ├── stock_lh_yybpm.py │ │ ├── stock_lhb_em.py │ │ ├── stock_lhb_sina.py │ │ ├── stock_margin_em.py │ │ ├── stock_margin_sse.py │ │ ├── stock_margin_szse.py │ │ ├── stock_market_legu.py │ │ ├── stock_pankou_em.py │ │ ├── stock_qsjy_em.py │ │ ├── stock_report_em.py │ │ ├── stock_research_report_em.py │ │ ├── stock_sns_sseinfo.py │ │ ├── stock_sy_em.py │ │ ├── stock_technology_ths.py │ │ ├── stock_tfp_em.py │ │ ├── stock_three_report_em.py │ │ ├── stock_ttm_lyr.py │ │ ├── stock_us_valuation_baidu.py │ │ ├── stock_value_em.py │ │ ├── stock_yjbb_em.py │ │ ├── stock_yjyg_cninfo.py │ │ ├── stock_yjyg_em.py │ │ ├── stock_yzxdr_em.py │ │ ├── stock_zdhtmx_em.py │ │ ├── stock_zf_pg.py │ │ ├── stock_zh_valuation_baidu.py │ │ ├── stock_zh_vote_baidu.py │ │ ├── stock_ztb_em.py │ │ └── ths.js │ ├── stock_fundamental/ │ │ ├── __init__.py │ │ ├── stock_basic_info_xq.py │ │ ├── stock_finance_hk_em.py │ │ ├── stock_finance_sina.py │ │ ├── stock_finance_ths.py │ │ ├── stock_finance_us_em.py │ │ ├── stock_gbjg_em.py │ │ ├── stock_hold.py │ │ ├── stock_ipo_declare.py │ │ ├── stock_ipo_review.py │ │ ├── stock_ipo_ths.py │ │ ├── stock_ipo_tutor.py │ │ ├── stock_kcb_detail_sse.py │ │ ├── stock_kcb_sse.py │ │ ├── stock_notice.py │ │ ├── stock_profit_forecast_em.py │ │ ├── stock_profit_forecast_hk_etnet.py │ │ ├── stock_profit_forecast_ths.py │ │ ├── stock_recommend.py │ │ ├── stock_register_em.py │ │ ├── stock_restricted_em.py │ │ ├── stock_zygc.py │ │ └── stock_zyjs_ths.py │ ├── tool/ │ │ ├── __init__.py │ │ └── trade_date_hist.py │ └── utils/ │ ├── __init__.py │ ├── cons.py │ ├── context.py │ ├── demjson.py │ ├── func.py │ ├── multi_decrypt.py │ ├── request.py │ ├── token_process.py │ └── tqdm.py ├── docs/ │ ├── README.rst │ ├── akdocker/ │ │ └── akdocker.md │ ├── anaconda.md │ ├── answer.md │ ├── articles.md │ ├── changelog.md │ ├── conf.py │ ├── contributing.md │ ├── data/ │ │ ├── article/ │ │ │ └── article.md │ │ ├── bank/ │ │ │ └── bank.md │ │ ├── bond/ │ │ │ └── bond.md │ │ ├── currency/ │ │ │ └── currency.md │ │ ├── dc/ │ │ │ └── dc.md │ │ ├── energy/ │ │ │ └── energy.md │ │ ├── event/ │ │ │ └── event.md │ │ ├── fund/ │ │ │ ├── fund_private.md │ │ │ └── fund_public.md │ │ ├── futures/ │ │ │ └── futures.md │ │ ├── fx/ │ │ │ └── fx.md │ │ ├── hf/ │ │ │ └── hf.md │ │ ├── index/ │ │ │ └── index.md │ │ ├── index.rst │ │ ├── interest_rate/ │ │ │ └── interest_rate.md │ │ ├── macro/ │ │ │ └── macro.md │ │ ├── nlp/ │ │ │ └── nlp.md │ │ ├── option/ │ │ │ └── option.md │ │ ├── others/ │ │ │ └── others.md │ │ ├── qdii/ │ │ │ └── qdii.md │ │ ├── qhkc/ │ │ │ ├── broker.md │ │ │ ├── commodity.md │ │ │ ├── fund.md │ │ │ ├── fundamental.md │ │ │ ├── index.rst │ │ │ ├── index_data.md │ │ │ └── tools.md │ │ ├── spot/ │ │ │ └── spot.md │ │ ├── stock/ │ │ │ └── stock.md │ │ └── tool/ │ │ └── tool.md │ ├── data_tips.md │ ├── demo.md │ ├── dependency.md │ ├── deploy_http.md │ ├── index.rst │ ├── indicator.md │ ├── installation.md │ ├── introduction.md │ ├── platform.md │ ├── requirements.txt │ ├── special.md │ ├── trade.md │ └── tutorial.md ├── pyproject.toml ├── setup.py └── tests/ ├── __init__.py └── test_func.py