When using the Python Workspace API under Windows 10, Events data for companies are not getting downloaded, even if parameters (e.g. Start-End Dates or Event Types) are changed.
For example, the following code:
RICs=['MMM.N','ABDP.L','ABT.N','ABSO.ST','ACN.N','ARBN.AS','ADNGk.DE','ADBE.OQ','AMSU.L','ADYEN.AS','ABNB.OQ','ALRM.OQ','ALGN.OQ','A1OS.DE','AEIGn.DE','MO.N','AMDG.DE','AMA.MC','AMZN.OQ']
Fields=['TR.RICCode','AVAIL(TR.CommonName,TR.CompanyName)','TR.EventStartDate','TR.EventEndDate','TR.EventType','TR.EventTitle.companyEvent']
df=rd.get_data(RICs, Fields, parameters={'SDate':'2024-08-22','Edate':'2025-08-22','EventType':'ALL','NULL':'Blank'})
only returns data for the first RIC.
How can data for all RICs (with the same parameters for all RICs) be downloaded at the same time?