Skip to content

03. 汇率数据

PKUJohnson edited this page Dec 20, 2018 · 1 revision

OpenDataTools通过fx接口,支持对人民币汇率数据的获取,要求版本0.2.2以上。

数据来源:外汇交易中心

基本数据规范

CNY :人民币 USD :美元 EUR :欧元 JPY :日元 HKD :港币 GBP :英镑

导入fx接口

from opendatatools import fx

详细接口

  1. 人民币汇率中间价历史数据
df,msg = fx.get_hist_cny_cpr()

  1. shibor历史数据
df, msg = fx.get_his_shibor()

  1. shibor实时数据
df = fx.get_realtime_shibor()

  1. 人民币汇率最新数据
df = fx.get_cny_spot_price()