当前位置: 首页>>代码示例>>Python>>正文


Python Crawler._process_html_link方法代码示例

本文整理汇总了Python中Crawler.Crawler._process_html_link方法的典型用法代码示例。如果您正苦于以下问题:Python Crawler._process_html_link方法的具体用法?Python Crawler._process_html_link怎么用?Python Crawler._process_html_link使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Crawler.Crawler的用法示例。


在下文中一共展示了Crawler._process_html_link方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test__process_html_link

# 需要导入模块: from Crawler import Crawler [as 别名]
# 或者: from Crawler.Crawler import _process_html_link [as 别名]
    def test__process_html_link(self):
        c = Crawler("http://test.com")
        soup = BeautifulSoup(self.html_test_string)

        for link in soup.find_all("a"):
            c._process_html_link(link, "/")

        self.assertEqual(len(c.sitemap.nodes()), 3)
        self.assertEqual(len(c.sitemap.edges()), 2)
        self.assertEqual(len(c.process_q), 3)
开发者ID:vhamid,项目名称:crawler-example,代码行数:12,代码来源:test_crawler.py

示例2: test__process_html

# 需要导入模块: from Crawler import Crawler [as 别名]
# 或者: from Crawler.Crawler import _process_html_link [as 别名]
    def test__process_html(self):
        soup = BeautifulSoup(self.html_test_string)
        c = Crawler("http://test.com")
        c._process_html_asset = mock.Mock()
        c._process_html_link = mock.Mock()

        c._process_html(soup)
        self.assertEqual(c._process_html_asset.call_count, 3)
        self.assertEqual(c._process_html_link.call_count, 4)
开发者ID:vhamid,项目名称:crawler-example,代码行数:11,代码来源:test_crawler.py


注:本文中的Crawler.Crawler._process_html_link方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。