为了账号安全,请及时绑定邮箱和手机立即绑定

我的代码和视频的一模一样了 为什么还是会报错???

# coding:utf8
import url_manager, html_downloader, html_parser, html_outputer
    
# from itertools import count

class SpiderMain(object):
    def __init__(self):
        self.urls = url_manager.UrlManager()#url管理器
        self.downloader = html_downloader.HtmlDownloader()#html下载器
        self.parser = html_parser.HtmlParser()#html解析器
        self.outputer = html_outputer.HtmlOutputer()
    
    def craw(self, root_url):
        
        count = 1#当前爬取url
        
        self.urls.add_new_url(root_url)#添加入口url
        #当有新的url时
        while self.urls.has_new_url():
            try:
                new_url = self.urls.get_new_url()#从urls获取行的url页面
                print 'craw %d : %s'%(count, new_url)
                html_cont = self.downloader.download(new_url)#下载url页面
                new_urls, new_data = self.parser.parse(new_url, html_cont)#解析下载页面
                self.urls.add_new_urls(new_urls)#添加批量url
                self.outputer.collect_data(new_data)#收集新的数据
                
                if count == 1000:
                    break
                
                count = count + 1
            except Exception as e:
                print 'carw failed--', e
        
        #输出收集好的数据
        self.outputer.output_html()



if __name__=="__main__":
    root_url = "http://baike.baidu.com/view/21087.htm"#入口url
    obj_spider = SpiderMain()
    obj_spider.craw(root_url)

http://img1.sycdn.imooc.com//594bb7050001708d10341080.jpg

正在回答

1 回答

你用的版本可能错了  有2×、3×俩个版本,你都去试试

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Python开发简单爬虫
  • 参与学习       227670    人
  • 解答问题       1219    个

本教程带您解开python爬虫这门神奇技术的面纱

进入课程

我的代码和视频的一模一样了 为什么还是会报错???

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信