python中的chardet模組

One of them發表於2018-08-24

chardet模組使用

chardet模組可用來猜測指定內容的編碼型別, 引數接收bytes型別.

import chardet
import requests

url = "https://www.baidu.com"
resp = requests.get(url)
# detect() 接受bytes型別. 返回一個字典, 裡面有觀察後的頁面編碼型別.
compare_encoding = chardet.detect(resp.content).get('encoding')

相關文章