免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3021 | 回复: 4
打印 上一主题 下一主题

使用beautfulSoup抓取网页数据并写入txt文件失败 [复制链接]

论坛徽章:
2
2015年迎新春徽章
日期:2015-03-04 10:01:44程序设计版块每日发帖之星
日期:2015-06-28 22:20:00
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-12-11 22:08 |只看该作者 |倒序浏览
# -*- coding: utf-8 -*-
from bs4 import BeautifulSoup
import urllib2
import re

link=''
path=r'E:/pydownload/1.txt'
f=open(path,'wb+')
for i in range(1,150):
    print "it is download the %d page:" % i
    new=link + str(i) + '.'+'shtml'
    req=urllib2.Request(new)
    fd=urllib2.urlopen(req)
    soup=BeautifulSoup(fd.read(),from_encoding="utf-8"
    ret=soup.find(id="content_1"
    for r in ret.stripped_strings:
        f.write(r)

f.close()
网页的内容是中文的。提示如下错误:
Traceback (most recent call last):
  File "E:\py_prj\test1.py", line 17, in <module>
    f.write(r)
UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-7: ordinal not in range(12

论坛徽章:
0
2 [报告]
发表于 2015-12-12 00:53 |只看该作者
  1. reload(sys)
  2. sys.setdefaultencoding( "utf-8" )
复制代码

论坛徽章:
2
2015年迎新春徽章
日期:2015-03-04 10:01:44程序设计版块每日发帖之星
日期:2015-06-28 22:20:00
3 [报告]
发表于 2015-12-14 16:40 |只看该作者
回复 2# ma__
没用,一样的效果

论坛徽章:
0
4 [报告]
发表于 2015-12-14 20:40 |只看该作者
  1. # -*- coding: utf-8 -*-
  2. from bs4 import BeautifulSoup
  3. import urllib2
  4. import re,sys
  5. reload(sys)
  6. sys.setdefaultencoding( "utf-8" )

  7. link='http:     //movie.douban.com/'
  8. path=r'1.txt'
  9. f=open(path,'wb+')
  10. # print "it is download the %d page:" % i
  11. # new=link + str(i) + '.'+'shtml'
  12. req=urllib2.Request(link)
  13. fd=urllib2.urlopen(req)
  14. soup=BeautifulSoup(fd.read(),from_encoding="utf-8")
  15. ret=soup.find(id="top-nav-appintro")
  16. for r in ret.stripped_strings:
  17.         f.write(r)
  18.         print r
  19. # f.close()
复制代码
To get rid of this warning, change this:

BeautifulSoup([your markup])

to this:

BeautifulSoup([your markup], "lxml"

豆瓣
3.0
和有趣的人做有趣的事
扫码直接下载
iPhone
·
Android
为什么我可以

论坛徽章:
0
5 [报告]
发表于 2015-12-14 20:53 |只看该作者
本帖最后由 ma__ 于 2015-12-14 20:55 编辑

r是unicode
那你写之前加行
r=r.encode('utf-8','ignore')
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP