Re: How to execute a hyperlink?

2009-01-28 Thread Roel Schroeven
Muddy Coder schreef: Hi Folks, Module os provides a means of running shell commands, such as: import os os.system('dir .') will execute command dir I think a hyperlink should also be executed. I tried: os.system('http://somedomain.com/foo.cgi?name=foopasswd=bar') but I got

RE: How to execute a hyperlink?

2009-01-28 Thread Barak, Ron
Hi Muddy, http://docs.python.org/library/urllib2.html may help. Bye, Ron. -Original Message- From: Muddy Coder [mailto:cosmo_gene...@yahoo.com] Sent: Wednesday, January 28, 2009 03:00 To: python-list@python.org Subject: How to execute a hyperlink? Hi Folks, Module os provides a means

Re: How to execute a hyperlink?

2009-01-28 Thread Jeff McNeil
On Jan 27, 7:59 pm, Muddy Coder cosmo_gene...@yahoo.com wrote: Hi Folks, Module os provides a means of running shell commands, such as: import os os.system('dir .') will execute command dir I think a hyperlink should also be executed. I tried:

Re: How to execute a hyperlink?

2009-01-28 Thread Cameron Laird
In article 8uvfl.45$n_6...@newsfe22.ams2, Roel Schroeven rschroev_nospam...@fastmail.fm wrote: Muddy Coder schreef: Hi Folks, Module os provides a means of running shell commands, such as: import os os.system('dir .') will execute command dir I think a hyperlink should also be

How to execute a hyperlink?

2009-01-27 Thread Muddy Coder
Hi Folks, Module os provides a means of running shell commands, such as: import os os.system('dir .') will execute command dir I think a hyperlink should also be executed. I tried: os.system('http://somedomain.com/foo.cgi?name=foopasswd=bar') but I got kicked out by the Python interpreter. I

Re: How to execute a hyperlink?

2009-01-27 Thread Jon Clements
On Jan 28, 12:59 am, Muddy Coder cosmo_gene...@yahoo.com wrote: Hi Folks, Module os provides a means of running shell commands, such as: import os os.system('dir .') will execute command dir I think a hyperlink should also be executed. I tried:

Re: How to execute a hyperlink?

2009-01-27 Thread alex23
On Jan 28, 10:59 am, Muddy Coder cosmo_gene...@yahoo.com wrote: Module os provides a means of running shell commands [...] import os os.system('dir .') will execute command dir I think a hyperlink should also be executed. I tried: