Hi,
When using the code below, I keep getting 'Failure sending request with <class 'refinitiv.data._data.content.fundamental.fundamental_and_reference.Definition'>' error messages, even though I get the data that I'm after:
rd.get_data(
['GBP=', 'EUR=', 'JPY='],
['BID', 'ASK'])
The issue is that I have this in a loop, so for every data frame returned, I have many error messages to scroll through, be it in Jupyter or other IDEs...
I tried to ignore warnings, but that's bad practice and it didn't work anyway:
import warnings
warnings.filterwarnings("ignore")
Why are we getting this? why are we getting error messages for a field I didn't request?