Python Forum
API in Python - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: API in Python (/thread-9108.html)



API in Python - ptre - Mar-21-2018

Hello all,

I am starting with Python (previously i coded some in VBA) and I have a question about API. Is there any good book about that?

I need API to connect with Bloomberg and Reuters.


br


RE: API in Python - sparkz_alot - Mar-21-2018

For Bloomberg, try https://data.bloomberglp.com/professional/sites/4/blpapi-developers-guide-2.54.pdfhttps://data.bloomberglp.com/professional/sites/4/blpapi-developers-guide-2.54.pdf

For Reuters try: https://newsapi.org/s/reuters-api


RE: API in Python - snippsat - Mar-21-2018

To connect to API's is Requests the best tool.
Today is most common that get JSON back from API,then can parse out wanted stuff as you get Python dictionary back.
Example:
>>> import requests
>>> 
>>> r = requests.get('https://api.github.com/users/defunkt')
>>> r.status_code
200
>>> data = r.json()
>>> data['company']
'@github '
>>> data['bio']
'? '
>>> data['updated_at']
'2018-02-25T19:53:23Z'



RE: API in Python - ptre - Mar-21-2018

Many thanks,

I saw on youtube that there are many tutorials with JSON

br