Mac os Python 安裝 chardet模組

來源:互聯網
上載者:User

標籤:python

1. chardet模組

  Python在處理字串問題,常常會遇到字串編碼的問題。chardet是一個非常優秀的編碼識別模組。
  能夠識別的格式有:

  • ASCII, UTF-8, UTF-16 (2 variants), UTF-32 (4 variants)
  • Big5, GB2312, EUC-TW, HZ-GB-2312, ISO-2022-CN (Traditional and Simplified Chinese)
  • EUC-JP, SHIFT_JIS, CP932, ISO-2022-JP (Japanese)
  • EUC-KR, ISO-2022-KR (Korean)
  • KOI8-R, MacCyrillic, IBM855, IBM866, ISO-8859-5, windows-1251 (Cyrillic)
  • ISO-8859-2, windows-1250 (Hungarian)
  • ISO-8859-5, windows-1251 (Bulgarian)
  • windows-1252 (English)
  • ISO-8859-7, windows-1253 (Greek)
  • ISO-8859-8, windows-1255 (Visual and Logical Hebrew)
  • TIS-620 (Thai)

     chardet 是python的第三方庫,需要下載和安裝。
     官網:https://pypi.python.org/pypi/chardet

安裝chardet

 Mac 下Python已經整合在系統中,OS X Yosemite 10.10 版本的系統Python的版本為Python2.7 。 Python的安裝目錄在/usr/bin/python, 庫目錄在/Library/Python/2.7/site-packages/中。
 將下載的chardet-2.3.0.tar.gz解壓,然後複製到Python的庫目錄中。

# sudo cp -rf chardet /Library/Python/2.7/site-packages/

mac下需要使用sudo加許可權。

測試代碼
import chardet  import urllib  #可根據需要,選擇不同的資料  TestData = urllib.urlopen(‘http://www.baidu.com/‘).read()  print chardet.detect(TestData) 

結果表示有99%的機率認為這段代碼是utf-8編碼方式。

Mac os Python 安裝 chardet模組

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.