Is it possible to get the Bloomberg API in Python 3?

Is there a blpapi version for python 3? If not, did someone successfully modify the existing SDK to make it work (or are you just starting from scratch and writing an interface for the C ++ version?).

Some prerequisites: The existing Bloomberg API (free to the public, but must be downloaded from the Bloomberg website) makes it easy to query the python Bloomberg database and data feeds on the market. The official version of Bloomberg seems to work only for <= 2.7.

+6
source share
3 answers

Finally it was released, now I can upgrade to Python 3

http://www.bloomberglabs.com/api/libraries/

This is the 64-bit version for Python 3.4 http://static.bloomberglabs.com/api/python/blpapi_python_3.9.0.win-amd64-py3.4.exe

+3
source

I created a python 3 API branch that might interest you:

https://github.com/filmackay/blpapi-py/tree/py3/blpapi

+2
source

MathMonkey, at the moment you can see the binary file supported by Bloomberg on this page: http://www.openbloomberg.com/open-api/

The API for Python 3.3 is currently not officially supported.

0
source

Source: https://habr.com/ru/post/952631/


All Articles