How to automatically download a list of domestic investment trusts using python

Hi,I want to automatically download a list of domestic investment trusts list everyday

using task scheduler.

I'd like to run it by python. so I got embeddable python.

I think local batch.bat files should call that local test.py.


<C/:Tmp/test.py>

import refinitiv.dataplatform.eikon as ek

import numpy as np

ek.set_app_key('DEFAULT_CODE_BOOK_APP_KEY')

data = ek.get_timeseries(rics='.N225',interval='daily',count=30) ←example

np.savetxt('C/:Tmp/hoge.csv',data)


but how do I get [refinitiv.dataplatform.eikon] library file?

Thank you.

Best Answer