Hello,
I am using the Refinitiv Data Api. I have no issue running the following script on my machine (when Eikon Desktop is running)
import refinitiv.data as rd
rd.open_session('desktop.workspace')
rd.get_data(
universe=['USDSROISTNZ=R'],
fields=['PRIMACT_1']
)
I get a dataframe of the data that I am looking for, so all good.
When I try to run the following
rd.open_session('platform.deployed')
rd.get_data(
universe=['USDSROISTNZ=R'],
fields=['PRIMACT_1']
)
the code gets stuck and it does not give me any output or error, simply gets stuck (probably in an endless loop).
This is are the components of the refinitiv-data.config.json file. I am using the same app key (It's an Eikon Data API key). Url and Dacs are coming from the market data team in my company
"desktop": {
"workspace": {
"app-key": "#### APP KEY ####"
}
}
"deployed": {
"app-key": "#### APP KEY ####",
"realtime-distribution-system": {
"url" : " xxx.xx.xxx.x:xxxxx",
"dacs" : {
"username" : "xxxxxx",
"application-id" : xxx,
"position" : ""
}
}
}
Any idea what is happening?