标签:
import chardet import urllib.request url=‘http://stock.sohu.com/news/‘ html = urllib.request.urlopen(url).read() chardit1 = chardet.detect(html) print(chardit1[‘encoding‘])
使用chardet模块判断网页编码
原文地址:http://www.cnblogs.com/wumac/p/5959967.html