使用python擷取網頁編碼方式實現代碼

來源:互聯網
上載者:User
這篇文章主要介紹了使用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

感謝閱讀,希望能協助到大家,謝謝大家對本站的支援!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.