Obtain Web Page Information : Web Page : Network PYTHON examples


PYTHON examples » Network » Web Page »

 

Obtain Web Page Information



import sys, urllib2

req = urllib2.Request(sys.argv[1])
fd = urllib2.urlopen(req)
print "Retrieved", fd.geturl()
info = fd.info()
for key, value in info.items():
    print "%s = %s" (key, value)
    

           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Network
» Web Page