Reputation: 339
Does anyone know any good resources/ tutorials/ books to get started with Bloomberg's API blpapi in python?
I have searched everywhere and I haven't found anything at all.
Upvotes: 7
Views: 32532
Reputation: 2462
xbbg
is a library with minimum setup and some relatively powerful functionalities:
For example this is how to download historical intraday data:
from xbbg import blp
blp.bdib('AAPL US Equity', '2018-11-21')
Upvotes: 1
Reputation: 328659
If you download the API from the official website and you the zip file, you will find an "examples" folder which has plenty of examples.
Then there's the core developer guide if you need help on the schemas.
Upvotes: 6