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

downloader失败

try:

                new_url=self.urls.get_new_url()

                print("craw%d : %s"%(count,new_url))

                html_cont=self.downloader.download(new_url)#调试的时候在这出错了,且没抓到任何

              #另外在urllib测试时,就打不开百度的页面,https倒是可以,但这样爬取得最终结果也是一样的

                new_urls,new_data=self.parser.parse(new_url,html_cont)

                self.urls.add_new_urls(new_urls)

                self.outputer.collect_data(new_data)

                if count==1000:

                    break

                count=count+1

            except:

                print("craw failed")

输出

craw1 : http://baike.baidu.com/view/21087.htm

craw failed


正在回答

1 回答

有可能中间这一块哪里代码打错了而不是self.urls.has_new_url()==0导致退出循环,python的百科里面是有别的链接的,你可以试着把try-except去掉,让错误直接显示出来

中间这一块指的是:

html_cont=self.downloader.download(new_url)
new_urls,new_data=self.parser.parse(new_url,html_cont)
self.urls.add_new_urls(new_urls)
self.outputer.collect_data(new_data)
if count==1000:
    break
count=count+1

根据错误位置设置print 相应的变量查看错误原因。

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

scylhy 提问者

非常感谢!找到了
2016-02-17 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

downloader失败

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