Access Bloomberg API from python

Possible duplicate:
Bloomberg Server API and Ruby / Python

What's the best way to access the Bloomberg API from Python?
I need something that will work on both Windows and Linux (the messages I have seen so far on SO are for specific Windows solutions). And I would prefer to use cpython rather than jython, etc.

+4
source share
2 answers

The v3.5 Bloomberg Open API (BLPAPI) release now has its own Python SDK.

Bloomberg Server API and Ruby / Python

+3
source

It works with standard python (I use it), but your problem is that it will not work using the api on linux terminal, since bloomberg software is only available for windows.

If you must have access to linux, you will need a license for a server such as api, which will allow you to request a server without a client running on the terminal. You need to talk with the seller to find out the prices and get more information about this.

0
source

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


All Articles