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


Python Scraper.main方法代码示例

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


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

示例1: show_version

# 需要导入模块: from scraper import Scraper [as 别名]
# 或者: from scraper.Scraper import main [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()
开发者ID:samundra,项目名称:amazon-search-scrapper,代码行数:31,代码来源:main.py


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