Re: read a web page using python

2007-03-17 Thread Lawrence Oluyede
<[EMAIL PROTECTED]> wrote: > Kindly, could you someone tell me how to read a page(any web site) > using Python, what method to be used ? import urllib2 res = urllib2.urlopen(url) page = res.read() See: http://www.voidspace.org.uk/python/articles/urllib2.shtml -- Lawrence, oluyede.org - neroperc

Re: read a web page using python

2007-03-17 Thread Luuk
<[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > Hi All, > > Kindly, could you someone tell me how to read a page(any web site) > using Python, what method to be used ? > > Paris > http://www.amk.ca/python/howto/sockets/ -- http://mail.python.org/mailman/listinfo/python-list

read a web page using python

2007-03-17 Thread myTesterFrench
Hi All, Kindly, could you someone tell me how to read a page(any web site) using Python, what method to be used ? Paris -- http://mail.python.org/mailman/listinfo/python-list