Dear Community,
so I recently started to play around with the Python Eikon Interface. Unfortunately for my latest code, I get a Backend error: 400 Bad Request - Honestly I don't know why. Funnily, it worked two days ago ...
My goal ist to split a list I have in even chunks of 1000 values per list and then get the data. Listdf is a flat list with RICS in the proper format. Thanks in advance.
chunksize = 1000
for i in range (0, len(listdf), chunksize):
chunk = listdf[i:i+chunksize]
list2 =[]
for i in range (0, len(listdf), chunksize):
list2.append(ek.get_data(listdf[i:i+chunksize], ["TR.Revenue"]))