Google Search
Python Code
+ 1 likes
Please Register to submit score.
| Average Score | 5.5 (of 2 scores) |
| Date Added | Jul 31, 2008 |
| Last Updated | Jul 31, 2008 |
| Tags | google kaspersky python search |
Description
Script that starts a google search with specified criteria.
Python Snippet:
Google Search
Posted on Aug 18, 2008 4:01 am
Posted on Aug 18, 2008 4:01 am
nice...nice...
Python Snippet:
Google Search
Posted on Sep 29, 2008 1:02 pm
Posted on Sep 29, 2008 1:02 pm
Nice work :)
Particularly helpful for someone learning Python like me.
Particularly helpful for someone learning Python like me.
Python Snippet:
Google Search
Posted on Apr 26, 2009 6:39 pm
Posted on Apr 26, 2009 6:39 pm
good code... bit sloppy but not too bad. bit pointless but it is a good demenstartion of urllib. gets a 5.
Python Snippet:
Google Search
Posted on May 28, 2009 2:02 pm
Posted on May 28, 2009 2:02 pm
I have a better shorter and faster version...
| Code: |
import webbrowser google = raw_input('Google search:') webbrowser.open_new_tab('http://www.google.com/search?btnG=1&q=%s' % google) |





