I want to get the constituents of the ETF IEUS.DE with this part of a Jupyter Notebook:
rd.open_session()
# Get constituents for ETF
response2 = fundamental_and_reference.Definition(
universe = "IEUS.DE",
fields = ["TR.ETPConstituentRIC,TR.ETPConstituentName"],
).get_data()
response2.data.df
I get the error
An error occurred while requesting URL('https://api.refinitiv.com/data/datagrid/beta1/').
ReadTimeout('The read operation timed out')
When doing a similar request for STOXX with "TR.CommonName", everything works fine.
What should I do to avoid this error?