Hello,
oneshotsearch_results = service.jobs.oneshot(searchquery_oneshot, **kwargs_oneshot)
reader = results.JSONResultsReader(oneshotsearch_results)
for item in reader:
if(isinstance(item, dict)):
for key in item:
if(key == '<...>'):
A = str(item[key])
print('A is :',A)
The above code was working till yesterday. Now it does not enter the 1st for loop (i.e. for item in reader) anymore. I verified this by adding a print statement before the 1st if statement and it is not printing.