python 教程的彭博 API
Bloomber API for python tutorial
有谁知道在 python 中开始使用 Bloomberg 的 API blpapi 的任何好的资源/教程/书籍?
我找遍了,完全没有找到..
如果您从 the official website 下载 API 和 zip 文件,您会发现一个 "examples" 文件夹,其中有大量示例。
如果您需要架构方面的帮助,可以参考核心开发人员指南。
xbbg
是一个设置最少但功能相对强大的库:
例如,这是下载历史盘中数据的方法:
from xbbg import blp
blp.bdib('AAPL US Equity', '2018-11-21')
有谁知道在 python 中开始使用 Bloomberg 的 API blpapi 的任何好的资源/教程/书籍?
我找遍了,完全没有找到..
如果您从 the official website 下载 API 和 zip 文件,您会发现一个 "examples" 文件夹,其中有大量示例。
如果您需要架构方面的帮助,可以参考核心开发人员指南。
xbbg
是一个设置最少但功能相对强大的库:
例如,这是下载历史盘中数据的方法:
from xbbg import blp
blp.bdib('AAPL US Equity', '2018-11-21')