Making quick google requests from the command line

I just wrote a simple python script to make simple requests to Google from the command line. No special characters, no fancy search engine, just plain Google. But it seems to work.

#!/usr/bin/python
# -*- coding: utf-8 -*-
import os, sys
import webbrowser

query = ""
if len(sys.argv) > 1:
	query = sys.argv[1]
print "Querying google: " + query
query = query.replace(" ", "+")
webbrowser.open("http://www.google.com/search?name=f&hl=en&q=" + query)