I searched everywhere, including here, for an answer regarding the bloomberg open API for Python. I have two questions regarding this: 1. Is the historical data, such as historical prices, given for free? 2. If So, where can I find examples regarding how to retrieve this data? I tried to use pybbg but didn't manage to work with it. Also, the Bloomberg developers guide doesn't include Python guidelines.
Asked
Active
Viewed 1.8k times
6
-
1Not sure you get any data for free. They give you the API for free to use with your (paid) subscription. It states this on the page your first link goes to in the 'note:' paragraph – NickSlash Aug 19 '13 at 00:33
-
Also, they have a support staff (open-tech@bloomberg.net) paid to answer such questions. – Paulo Scardine Aug 19 '13 at 01:37
-
Quantopian and it's python package zipline might be a nice free pythonic alternative to bloomberg – agconti Aug 19 '13 at 02:20
-
The zipfile containing the python package contains a few examples, if they are not sufficient maybe you should try to contact them. – lc2817 Aug 19 '13 at 03:16
-
The data is definitely not for free - unless you subsribe to the Bloomberg data, you won't be able to retrieve anything using their API. See also: http://stackoverflow.com/questions/9097382/bloomberg-open-api – assylias Aug 20 '13 at 08:39
2 Answers
5
If you download the installer and install it from http://www.openbloomberg.com/open-api/
There is a folder called examples within the Python folder with example *.py files NoAdmin_DesktopAPI_SDK\API\APIv3\Python\v3.5.5\examples

Maxim
- 507
- 1
- 7
- 18
0
Go to Bloomberg API Libraries and download the zip file instead of the "self-extracting".
By the time of this post, you're able to download it directly from here.
Extract the files and you'll find a folder named "examples". Enjoy!

Flavio Wuensche
- 9,460
- 1
- 57
- 54