這篇文章主要介紹了使用python獲取網頁編碼方式實現代碼的相關資料,需要的朋友可以參考下
python 獲取網頁編碼方式實現代碼
<span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);"> </span><span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);"> python开发,自动化获取网页编码方式用到了chardet库,字符集检测,这个类在python2.7中没有,需要在官网上下载。 这里我下载好了chardet-2.3.0.tar.gz压缩包文件,只需要将压缩包文件解压后的chardet文件放到python安装包下的 python27/lib/site-packages/下,就可以了。</span>
然後import chardet
#下面寫了一個自動化檢測的函數供檢測Url連接,然後返回網頁url的編碼方式。
import chardet #字符集检测 import urllib url="http://www.jd.com" def automatic_detect(url): content=urllib.urlopen(url).read() result=chardet.detect(content) encoding=result['encoding'] return encoding urls=['http://www.baidu.com','http://www.163.com','http://dangdang.com'] for url in urls: print url,automatic_detect(url)
上面用到了chardet類別的detect方法,返回字典,然後取出編碼方式encoding
感謝閱讀,希望能幫助大家,謝謝大家對本站的支持!
以上是使用python取得網頁編碼方式實現代碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!