码迷,mamicode.com
首页 > 编程语言 > 详细

python(27)requests 爬取网页乱码,解决方法

时间:2016-10-20 17:45:42      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

最近遇到爬取网页乱码的情况,找了好久找到了种解决的办法:

html = requests.get(url,headers = head)
html.apparent_encoding
html.encoding = html.apparent_encoding
print html.text

头文件中添加:

import sys
reload(sys)
sys.setdefaultencoding("utf-8")

 

python(27)requests 爬取网页乱码,解决方法

标签:

原文地址:http://www.cnblogs.com/lovychen/p/5981714.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!