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

调度主程序的时候,只输出一行,然后就 "crawl failed" 是怎么回事,代码如下.

#错误提示 
 craw 1: http://baike.baidu.com/view/21087.htm
 craw failed
#主程
from baike_spider import url_manager,html_downloader,html_parser,html_outputer

class SpiderMain(object):
    def __init__(self):
        self.urls = url_manager.UrlManager()
        self.downloader = html_downloader.HtmlDownloader()
        self.parser = html_parser.HtmlParser()
        self.outputer = html_outputer.HtmlOutputer()
        
    def craw(self,root_url):
        count = 1
        self.urls.add_new_url(root_url)  
        while self.urls.has_new_url():
            try:
                new_url = self.urls.get_new_url()
                print 'craw %d: %s' %(count,new_url)
                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 == 10:
                    break
                count = count + 1
            except:
                print 'craw failed'
        self.outputer.output_html()


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

class UrlManager(object):

    def __init__(self):
        self.new_urls = set()
        self.old_urls = set()
    def add_new_url(self,url):
        if url is None:
            return 
        if url not in self.new_urls and url not in self.old_urls:
            self.new_urls.add(url)
            
    def add_new_urls(self,urls):
        if urls is None or len(urls) == 0:
            return 
        for url in urls:
            self.add_new_url(url)
            
    def has_new_url(self):
        return len(self.new_urls) != 0
    
    def get_new_url(self):
        new_url = self.new_urls.pop()
        self.old_urls.add(new_url)
        return new_url
#html_downloader
import urllib2
class HtmlDownloader(object):

    def download(self,url):
        if url is None:
            return None
            response = urllib2.urlopen(url)
    
        if response.getcode() != 200:
            return None
        
        return response.read()
#html_parser

from bs4 import BeautifulSoup
import re
import urlparse
class HtmlParser(object):
    
    def _get_new_urls(self,page_url,soup):
        new_urls = set()
        links = soup.find_all('a',href = re.compile(r"/view/\d+\.htm"))
        for link in links:
            new_url = link['href']
            new_full_url = urlparse.urljoin(page_url,new_url)
            new_urls.add(new_full_url)
        return new_urls
        
        
    def _get_new_data(self,page_url,soup):        
        res_data = {}
        res_data['url'] = page_url    
        #title     class="lemmaWgt-lemmaTitle-title"><h1>Python</h1>
        title_node = soup.find('dd',class_ = "lemmaWgt-lemmaTitle-title").find("h1")
        res_data['title'] = title_node.get_text()
        
        #jianjie class="lemma-summary"
        cont_node = soup.find('div',class_ = "lemma-summary")
        res_data['cont'] = cont_node.get_text()
        return res_data
        
        
    def parser(self,page_url,html_cont):
        if page_url is None or html_cont is None:
            return 
        
        soup = BeautifulSoup(html_cont,'html.parser',from_encoding = 'utf-8')
        new_urls = self._get_new_urls(page_url,soup)
        new_data = self._get_new_data(page_url,soup)
        return new_urls,new_data
#html_outputer
class HtmlOutputer(object):

    def __init__(self):
        self.datas = []
        
    def collect_data(self,data):
        if data is None:
            return 
        self.datas.append(data)
        
        
    def output_html(self):
        fout = open('output.html','w')
        fout.write("<html>")
        fout.write("<body>")
        fout.write("<table>")
        for data in self.datas:
            fout.write("<tr>")
            fout.write("<td>%s</td>"% data['url'])
            fout.write("<td>%s</td>"% data['title'].encode('utf-8'))
            fout.write("<td>%s</td>"% data['cont'].encode('utf-8'))
            fout.write("</tr>")
        fout.write("</table>")
        fout.write("</body>")
        fout.write("</html>")


正在回答

7 回答

建议你一步一步,逐个函数调试,光看源代码比较难找出错误所在,可以在每个方法打印是否成功运行,找到出错的方法后再找出错的变量。这样一定可以调试出来的,加油!

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

Enterer 提问者

谢答,其实我就是这么做的.
2016-09-28 回复 有任何疑惑可以回复我~
#2

qq_心里有个你_0 回复 Enterer 提问者

你在 #html_downloader 中的 def download(self,url): if url is None: return None response = urllib2.urlopen(url) //这里向前一格,应与if对齐,否则return结束后走不到这里
2016-11-07 回复 有任何疑惑可以回复我~

不知道楼主是什么情况 最好是把环境 IDE都说出来 大家才好帮你解决问题

 首先我也碰到过楼主的情况 

当时我是在 mac的item下 也就是终端下  进行编程的 没有用专门的IDE,  运行的时候 只能解析1条,并且   后面会出线很多问题,

后来我把代码拷贝到eclipse + python 环境中,运行  成功,,,

希望有懂的同学给予  帮助

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

OMG快到碗里来

你的问题解决了吗
2016-12-03 回复 有任何疑惑可以回复我~

楼主#html_downloader 中的 “response=urllib2.urlopen(url) ” 这一行应向前一格,与 if 对齐,否则return后走不到这一行,也就不存在得到response。

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

同求!!!

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

同求解決方案

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

你好,也是这个问题。。求问怎么解决的

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

我也是这问题  python3.4  您是怎么解决的?


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

Dreaman

哈哈发现bug了 但是编码问题又来了。。。。。。
2016-10-02 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

调度主程序的时候,只输出一行,然后就 "crawl failed" 是怎么回事,代码如下.

我要回答 关注问题
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号