「python開発」urllib2を使ってサイトのリソースを取得する

サンプルコード:
#!/usr/bin/env python
#
urlfile = urllib2.urlopen('http://www.XXX.com/’)
print “ドキュメント", urlfile.info().getheader(“Content-Type","")
#結果:ドキュメント text/html

print “HTTP Response headers:"
print urlfile.info()
#結果:
#Document type is Date: Thu, 23 Mar 2014 15:13:29 GMT
#Content-Type: text/html; charset=UTF-8
#Server: Apache
#X-Powered-By: PHP/5.1.2-1.dotdeb.2
#Connection: close

Python

Posted by arkgame