Hi,
I'm trying to set the Eikon Python API on my computer in order to retrieve data directly in Python instead of using the Excel add-in.
I installed the necessary Python package and I use the following code to test (I found it in the codebook examples).
import refinitiv.dataplatform.eikon as ek
ek.set_app_key('my-app-key')
df,err = ek.get_data(['PEUP.PA', 'EUR=', 'JPY='], ['BID','ASK'])
df
Unfortunately, I get the following error:
Error code 407 | Client Error: Proxy Authentication Required - <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Could you please help me solve the issue ? it seems it comes from the proxy. Is there a config file I should update to provide the proxy address and my credentials ?
I try to run the Python API on the same computer where Eikon is installed. I get this issue independently of the app_key I input (if it's the correct one or a dummy one).
Thank you in advance.
Thomas