I'm trying to run a google search query from a python app. Is there any python interface out there? If there isn't does anyone know which Google API will enable me to do this. THanks
|
There's a simple example here (peculiarly missing some quotes;-). Most of what you'll see on the web is Python interfaces to the old, discontinued SOAP API -- the example I'm pointing to uses the newer and supported AJAX API, that's definitely the one you want!-) Edit: here's a more complete Python 2.6 example with all the needed quotes &c;-)...:
|
|||||||||
|
|
Here is Alex's answer ported to Python3
|
|||||||||
|
|
Here's my approach to this: http://breakingcode.wordpress.com/2010/06/29/google-search-python/ A couple code examples:
Note that this code does NOT use the Google API, and is still working to date (January 2012). |
||||
|
|
|
I am new in python and I was investigating how to do this. None of the provided examples are working properly for me. Some are blocked by google if you make many (few) requests, some are outdated. Parsing the google search html (adding the header in the request) will work until google changes the html structure again. You can use the same logic to search in any other search engine, looking into the html (view-source).
Usage:
(Edit: Adding a parameter to narrow the google search to a specific site:) |
||||
|