首页 > PHP资讯 > Python培训 > python处理抓取中文编码和判断编码

python处理抓取中文编码和判断编码

Python培训

在开发自用爬虫过程中,有的网页是utf-8,有的是gb2312,有的是gbk,如果不加处理,采集到的都是乱码,解决的方法是将html处理成统一的utf-8编码

版本python2.7

#coding:utf-8import chardet#抓取网页htmlline = "http://www.pythontab.com"html_1 = urllib2.urlopen(line,timeout=120).read()encoding_dict = chardet.detect(html_1)print encodingweb_encoding = encoding_dict['encoding']#处理,整个html就不会是乱码。if web_encoding == 'utf-8' or web_encoding == 'UTF-8':html = html_1else :html = html_1.decode('gbk','ignore').encode('utf-8')


Python培训

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持2不支持0