You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
""" crawlers.rb """require'crawlers'require'scrapers'classPypiScraper < BaseScraper@@matching_urls=["%pypi.python.org/pypi%"]defscraperesponsesuperresponseendendclassPypiCrawler < BaseCrawler#add your starting urls here@@start_urls=["http://pypi.python.org/pypi"]#add your scraper classes here@@scrapers=[PypiScraper.new]#specify your maximum crawling depth level@@max_depth=1end