本文整理汇总了Python中scraper.Scraper.save_item方法的典型用法代码示例。如果您正苦于以下问题:Python Scraper.save_item方法的具体用法?Python Scraper.save_item怎么用?Python Scraper.save_item使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类scraper.Scraper
的用法示例。
在下文中一共展示了Scraper.save_item方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: update
# 需要导入模块: from scraper import Scraper [as 别名]
# 或者: from scraper.Scraper import save_item [as 别名]
def update(from_id, to_id, backsort):
"""
Update items between given ids
Use this command to fetch older data
"""
if from_id is None or not from_id.isdigit() or to_id is None or not to_id.isdigit() or backsort not in ('0', '1'):
print "Error. Expected parameters from_hn_id to_hn_id backsort (0 or 1)"
return
s = Scraper()
s.connect()
# Fetch and save items
save = lambda item_data: s.save_item(item_data)
item_ids = range(int(from_id), int(to_id))
if backsort == '1':
item_ids = reversed(item_ids)
s.fetch_items(item_ids, callback=save)