My apologies if this question has already been asked.
I am a beginner in using APIs.
I need to get the indexing dates of the google search results obtained using Google Search API using a python program.
Apparently, the item returned by the site does not have any key named 'date'.
search_results = urllib.urlopen(url)
json = simplejson.loads(search_results.read())
results = json['responseData']['results']
for item in results:
if number == 0:
break
for key in item:
print key
number -= 1
Is there any way to get the indexing date?