How do you perform a search query on Google using Python? How do you store the search results in a Microsoft Word document?
|
|
See this question Contains answer from Alex Martelli (python 2.6) and a python 3 port as well. You should be able to modify it accordingly. It uses the json and urllib that @Aphex mentions |
|||||||||||
|
|
Use the provided API. First register to get an API key here. Then you can use Python's
Which outputs
Please make sure to replace To create an MS Word document from Python, read this question. |
|||||||||||||||||
|
|
http://code.google.com/apis/customsearch/v1/getting_started.html http://code.google.com/apis/customsearch/v1/using_rest.html Google's custom search API looks to be what you're looking for. You'll need to get a API key first; then it seems they let you do up to 100 searches a day. Use Edit: As for creating the word document, you have a variety of options, detailed here: How can I create a Word document using Python? |
||||
|
|