On Thu, 18 Aug 2005 12:01:16 -0400, Colin Gillespie <[EMAIL PROTECTED]> wrote:
> I would like to place a url in my browsers address bar, then execute.
> How can do this?
>
> e.g.
>
> def goToGoogle():
> url = "www.google.com"
> b = openBrowser()
> b.goToUrl(url)
> return True
>
def goToGoogle():
import webbrowser
webbrowser.open("www.google.com");
Alan
--
http://mail.python.org/mailman/listinfo/python-list
