本文整理汇总了Python中scraper.Scraper.set_output_file方法的典型用法代码示例。如果您正苦于以下问题:Python Scraper.set_output_file方法的具体用法?Python Scraper.set_output_file怎么用?Python Scraper.set_output_file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类scraper.Scraper
的用法示例。
在下文中一共展示了Scraper.set_output_file方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: show_version
# 需要导入模块: from scraper import Scraper [as 别名]
# 或者: from scraper.Scraper import set_output_file [as 别名]
if "--version" in argument_list:
show_version()
if "--search" not in argument_list:
# print bcolors.bcolors.bred("Enter vendor product to search.")
show_help()
sys.exit(1)
if "--outfile" not in argument_list:
print bcolors.bcolors.bred("Outfile was not found, outfile will match to the keywords.")
print bcolors.bcolors.bred("Example: \n Keyword : LED strip lights")
print bcolors.bcolors.bred(" \n Outfile : led-strip-lights.csv")
argument_count = len(sys.argv)
if argument_count >= 3:
search_index = argument_list.index("--search")
search_keyword = argument_list[search_index + 1]
query_string = urllib.urlencode({"field-keywords": search_keyword})
url = "http://www.amazon.com/s/?" + query_string
print "Scrapping : " + bcolors.bcolors.bgreen(url)
s = Scraper(url)
s.set_output_file(search_keyword)
s.main()
else:
# print bcolors.bcolors.bred("Enter vendor product to search.")
show_help()