Re: What module to use to get a file from a website?

2005-07-16 Thread Jonathan Conrad
from os import system system (start http://www.python.org/;) -- http://mail.python.org/mailman/listinfo/python-list

What module to use to get a file from a website?

2005-07-15 Thread SolaFide
I'm sure this is builtin, I just don't know what module. Thank you for any help! Billt -- http://mail.python.org/mailman/listinfo/python-list

Re: What module to use to get a file from a website?

2005-07-15 Thread [EMAIL PROTECTED]
urllib2.urlopen() -- http://mail.python.org/mailman/listinfo/python-list

Re: What module to use to get a file from a website?

2005-07-15 Thread Sybren Stuvel
SolaFide enlightened us with: I'm sure this is builtin, I just don't know what module. Thank you for any help! urllib, read the excellent free book dive into python at http://www.diveintopython.org/ for examples and usage. Sybren -- The problem with the world is stupidity. Not saying there

Re: What module to use to get a file from a website?

2005-07-15 Thread SolaFide
Thanks! -- http://mail.python.org/mailman/listinfo/python-list