├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── cache └── .placeholder ├── dedupe_index.py ├── models ├── __init__.py ├── index.py └── listing.py ├── requirements.txt ├── scrape.sh ├── scrape_index.py ├── scrape_listing.py ├── states.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | cache/* 2 | *.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/armslist-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/armslist-scraper/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dedupe_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/armslist-scraper/HEAD/dedupe_index.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/armslist-scraper/HEAD/models/index.py -------------------------------------------------------------------------------- /models/listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/armslist-scraper/HEAD/models/listing.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/armslist-scraper/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrape.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/armslist-scraper/HEAD/scrape.sh -------------------------------------------------------------------------------- /scrape_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/armslist-scraper/HEAD/scrape_index.py -------------------------------------------------------------------------------- /scrape_listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/armslist-scraper/HEAD/scrape_listing.py -------------------------------------------------------------------------------- /states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/armslist-scraper/HEAD/states.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/armslist-scraper/HEAD/utils.py --------------------------------------------------------------------------------