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.
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.
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.
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')
© 2022 - 2024 — McMap. All rights reserved.
For additional information, refer to the "Reference Services and Schemas Guide"
however I have be unable to find this? I have found a document referencing the schemas however this is somewhat old data.bloomberglp.com/labs/sites/2/2014/07/… – Retractor