Reputation: 41811
I need a code with which I can send queries to Google and get the results back for some processing. i am mostly interested in retrieving the snippets of the results. It would be nice if I can do this without installing any extra packages for Python. A pre-written api would also do the trick. Thanks
Upvotes: 0
Views: 1230
Reputation: 66709
A simple url based fetching technique using urllib2:
See an example with google API
Upvotes: 2