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'.

        url = 
'http://ajax.googleapis.com/ajax/services/search/web?v=1.0&start='+str(index*4)+'&'+query
        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?

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Google AJAX APIs" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
To view this message on the web, visit
https://groups.google.com/d/msgid/google-ajax-search-api/dd6b0914-fa09-4362-bd5f-2063047a22bc%40googlegroups.com
For more options, visit this group at
http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Google AJAX APIs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to