码迷,mamicode.com
首页 > Web开发 > 详细

BeautifulSoup解决中文网页乱码

时间:2014-12-16 16:30:13      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   sp   on   div   问题   log   

以下代码,在执行结果中的中文出现乱码。

from bs4 import BeautifulSoup
import urllib2

request = urllib2.Request(http://www.163.com)
response = urllib2.urlopen(request)
html_doc = response.read()
soup = BeautifulSoup(html_doc)

print soup.find_all(a)

因为中文页面编码是gb2312,gbk,在BeautifulSoup构造器中传入from_encoding = "gb18030"参数可解决乱码问题。

注:在BeautifulSoup3中,from_encoding需修改为fromEncoding。

from bs4 import BeautifulSoup
import urllib2

request = urllib2.Request(http://www.163.com)
response = urllib2.urlopen(request)
html_doc = response.read()
soup = BeautifulSoup(html_doc, from_encoding = "gb18030")

print soup.find_all(a)

 

BeautifulSoup解决中文网页乱码

标签:style   blog   http   color   sp   on   div   问题   log   

原文地址:http://www.cnblogs.com/wangjibo/p/4167139.html

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