amzscraper
amzscraper copied to clipboard
Simple Python-based scraper for Amazon order receipts
Amazon Order Scraper
This is a simple script using the Python selenium library to scrape all your Amazon orders and create handy PDFs for receipt/tax purposes.
To use::
mkvirtualenv -p python3.9 amzscraper
pip install git+https://github.com/tobiasmcnulty/amzscraper.git
amscraper -u <email> -p <pass> 2021
If it does need to download a page from Amazon, a random sleep is inserted to throttle connections to the server.
Orders will be downloaded to the orders/ directory in your current directory by
default
For further options, see::
amzscraper -h
Requirements
- Python 3.7+
virtualenvandvirtualenvwrapperwkhtmltopdfinstalled and in yourPATHchromedriverinstalled and in yourPATH
Credits
This is loosely based on an earlier project <http://chase-seibert.github.io/blog/2011/01/15/backup-your-amazon-order-history-with-python.html>_
by Chase Seibert.