Hi everyone! I'm trying to connect Reuters using python (with spyder), following the Eikon Data API quick start guide for Windows. I already created an App Key.
I use the following code:
import sys
import os
import eikon as ek
from eikon import Profile as profile
ek.set_app_id('xxxx')
And the last line gives me the following error:
File "C:\Users\AppData\Local\Continuum\anaconda3\lib\site-packages\eikon\Profile.py", line 270, in <listcomp>
for app_name in app_names if os.path.isdir(user_data_dir(app_name, app_author, roaming=True))]
NameError: name 'os' is not defined
Could someone please help me solving this problem?
Thanks!