I think this is the snippe that you want:

david@david-desktop:~$ python
Python 2.7.3 (default, Aug  1 2012, 05:16:07)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import urlliib
>>> url_to_read = urllib.urlopen('http://hitwebdevelopment.com')
>>> for line in url_to_read:
...     print line



-- 
Best Regards,
David Hutto
CEO: http://www.hitwebdevelopment.com
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to