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


Python Util.fetch方法代码示例

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


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

示例1: get_for_search_url

# 需要导入模块: from variety.Util import Util [as 别名]
# 或者: from variety.Util.Util import fetch [as 别名]
    def get_for_search_url(self, url):
        logger.info(lambda: "Fetching quotes from Goodreads for search url=%s" % url)
        html = Util.fetch(url)
        try:
            page = random.randint(1, int(re.findall('Page 1 of (\d+)', html)[0]))
            url += "&page=%d" % page
            html = Util.fetch(url)
        except Exception:
            pass # probably just one page

        logger.info(lambda: "Used QuotationsPage url %s" % url)

        r = r'.*<dl>(.*)</dl>.*'
        if re.match(r, html, flags=re.M | re.S):
            html = re.sub(r, '<html><body>\\1</body></html>', html, flags=re.M | re.S)
            # without this BeautifulSoup gets confused by some scripts

        return self.get_from_html(url, html)
开发者ID:GLolol,项目名称:variety-deb,代码行数:20,代码来源:QuotationsPageSource.py

示例2: test_fetch

# 需要导入模块: from variety.Util import Util [as 别名]
# 或者: from variety.Util.Util import fetch [as 别名]
 def test_fetch(self):
     resp = Util.fetch("//google.com")
     self.assertTrue(len(resp) > 0)
开发者ID:GLolol,项目名称:variety-deb,代码行数:5,代码来源:TestUtil.py


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