Introduction
April 28, 2016 ยท View on GitHub
This is a firmware scraper that aims to download firmware images and associated metadata from supported device vendor websites.
Dependencies
Usage
-
Configure the
firmware/settings.pyfile. Comment outSQL_SERVERif metadata about downloaded firmware should not be inserted into a SQL server. -
To run a specific scraper, e.g.
dlink:
scrapy crawl dlink
To run all scrapers with maximum 4 in parallel, using GNU Parallel:
parallel -j 4 scrapy crawl ::: `for i in ./firmware/spiders/*.py; do basename ${i%.*}; done`