本文整理汇总了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)
示例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)