You might want to checkout <a href="http://blackcodeseo.com/google-
search-api-for-python/">http://blackcodeseo.com/google-search-api-for-
python/</a>

Sample implementation:

>>> from Google import Google, search
>>> results = search(’blackcodeseo.com’, 3)
>>> for result in results:
…     print ‘Title: %s’ % (result.title())
…     print ‘Url: %s’ % (result.url())
…     print ‘Description: %s’ % (result.description())
…     print
…

On Nov 12, 5:32 am, wrybread <[email protected]> wrote:
> I need to do some google searches from a Python script... I can't tell
> what API I should use for that. I downloaded the google gdata module
> for Python from here:
>
> http://code.google.com/apis/gdata/articles/python_client_lib.html#lib...
>
> The tests work fine. I have an app searching "google base", which I
> thought was searches, but it looks like it isn't.
>
> Can anyone point me in the right direction? Again, I'd like to search
> google web search from a Python app.
>
> Thanks for any help.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Data Protocol" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to