Click to See Complete Forum and Search --> : "wget" in Python


CaptainPinko
05-06-2003, 01:17 PM
i've been searching for a library in python to get a webpage, no luck. calling wget is out of the question since i want to use this in xp too

baldguy
05-06-2003, 03:38 PM
You might try:
http://www.cygwin.com/
or
http://gnuwin32.sourceforge.net/

This doesn't answer your python question though

CaptainPinko
05-06-2003, 03:54 PM
i'm look for a pure python solution... or java since i could use jython

baldguy
05-06-2003, 04:48 PM
This is probably what you need then.
google up httplib , urllib and python
http://google.com/search?q=httplib+urllib+python

CaptainPinko
05-06-2003, 07:23 PM
thanks thas perfect

Alex Cavnar, aka alc6379
05-07-2003, 02:41 AM
Really, you could use wget in windows if you wanted to.

There is a wget binary available for Win32 boxen, and you can use the os.system(command) function in the os library to run the path to wget.