Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tobiasmcnulty/amzscraper

Simple Python-based scraper for Amazon order receipts
https://github.com/tobiasmcnulty/amzscraper

Last synced: about 2 months ago
JSON representation

Simple Python-based scraper for Amazon order receipts

Awesome Lists containing this project

README

        

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 -p 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+
* ``virtualenv`` and ``virtualenvwrapper``
* ``wkhtmltopdf`` installed and in your ``PATH``
* ``chromedriver`` installed and in your ``PATH``

Credits
-------

This is loosely based on an `earlier project `_
by Chase Seibert.