I have very simple Python code that looks like the below. It has worked for a very long time but today started hanging regardless of what ticker is sent into it. Is this a known issue?
Note: I asked on Refinitiv Live Chat and the person tried it using Codebook on their side, and got a "400 bad request error" after a long wait, similar to what I'm seeing.
import pandas as pd
import refinitiv.dataplatform.eikon as ek
import refinitiv.dataplatform as rdp
import refinitiv.data as rd
ek.set_app_key('MY_KEY_REDACTED')
df, err = ek.get_data(instruments = ['SPY'],fields = ['TR.CLOSEPRICE'])