<[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 - neropercaso.it
"It is difficult to get a man to understand 
something when his salary depends on not
understanding it" - Upton Sinclair
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to