2017年8月7日 星期一

[Python 文章收集] urllib2 - How to get the Content-Type of an URL?

Source From Here 
Question 
I need to get the content-type of an internet(intranet) resource not a local file. How can I get the MIME type from a resource behind an UR? 

How-To 
You can leverage urllib2 packages and retrieve information from HTTPMessage object: 
>>> import urllib2 
>>> res = urllib2.urlopen('http://www.kimo.com.tw') 
>>> http_message = res.info() 
>>> http_message.__class__ 
 
>>> http_message.type 
'text/html' 
>>> http_message.maintype 
'text'


沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...