'''
This code use python urllib2 syntax
- This code use for download a page
'''
import urllib2
u="http://www.sust.edu"
f = urllib2.urlopen(u)
data=f.read()
f.close()
print data;
Thursday, October 28, 2010
Python fetch URL
Posted by
Abu Zahed Jony
at
3:39 AM
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels:
Url Fetch
Subscribe to:
Post Comments (Atom)

0 comments:
Post a Comment