转自github
优化学习python
#!/usr/bin env python
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)
2022-07-19 11:39:40
1.19MB
python
1