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

想爬取博客,修改定位标签后无法返回url和data

调试之后发现是html_parser没有返回url和data,但是又不知道哪里错了。附上源码。


import re
import urlparse
from bs4 import BeautifulSoup




class HtmlParser(object):
   
   
    def _get_new_urls(self, page_url, soup):
        new_urls = set()
        #href="http://blog.sina.com.cn/s/blog_b4474abf0102wmo4.html
        links = soup.find_all('a',href=re.compile(r'/s/blog_\w+\.html'))
        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 ={}
        #url
        res_data['url'] = page_url
        #<h2 class="titName SG_txta" id="t_b4474abf0102wmo4">ZUK&nbsp;Z2&nbsp;
       
        title_node = soup.find('div',class_="articalTitle").find("h2")
        res_data['title'] = title_node.get_text()
        #<div class="articalContent   newfont_family" id="sina_keyword_ad_area2"><div>


        summary_node = soup.find('div',class_="articalContent   newfont_family" ).find("p")
        res_data['summary'] = summary_node.get_text()
        return res_data
           
   
    def parse(self,page_url,html_cont):
        if page_url is None or html_cont is None:
            return
        #html_cont,'html.parser',from_encoding = 'utf-8'
        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


运行之后结果是

craw 1 : http://blog.sina.com.cn/s/blog_b4474abf0102wmo4.html
craw failed



正在回答

1 回答

编码正确吗?还有页面是不能用ajax。

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

举报

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

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

进入课程

想爬取博客,修改定位标签后无法返回url和data

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