• Python readability提取网页正文的优化


     Python readability的使用:

    from readability.readability import Document

    import urllib

    html = urllib.urlopen(url).read()

    readable_article = Document(html).summary()

    readable_title = Document(html).short_title()

          最后抽取出来的readable_article是带HTML标签的文本。然而在好多情况下经过readability过滤后的带HTML标签的文本是我们不想要的,也就是readability取错内容了,面对这种情况我们可以先对传入前的html操作。

          例如,需要提取的正文在<div class="arti-con rel">下即<div class="arti-con rel">与<div class="clearfix page-n-p-con">之间,我们可以采取下面的操作。

                 from readability.readability import Document

                 from scrapy .selector import HtmlXPathSelector
                 from scrapy.http import HtmlResponse

                 import urllib

                 html = urllib.urlopen(url).read()

                 content_t = html.split('<div class="arti-con rel">')[-1].strip().split('<div class="clearfix page-n-p-con"')[0].strip()
                 content_t = '<div class="arti-con rel">' + content_t

                 readable_article = Document(content_t ).summary()

                 response = HtmlResponse(url='', body=readable_article, encoding='utf8')
                 hxs = HtmlXPathSelector(response)

                 html_content = ''.join(hxs.select('//text()').extract()).strip()

          经过这样处理获得的正文相对干净,并减少了获取不到的现象,缺点是不适合多种页面的网站。

  • 相关阅读:
    js Map的使用
    javascript的Map使用
    解决vue视图不渲染
    SVN提示is already locked 解决办法
    AS报:Manifest merger failed with multiple errors, see logs
    使用Hbuilder手机debug
    在Html页面中调用ajax代码
    JAVA跨域CORS
    vue2.0的初始化
    jquery的$(selector).each(function(index,element))和$.each(dataresource,function(index,element))的区别
  • 原文地址:https://www.cnblogs.com/zhaobang/p/7503196.html
Copyright © 2020-2023  润新知