Skip to main content

Export Amazon wishlist metadata to JSON

Project description

amazon-wishlist-exporter

amazon-wishlist-exporter.py - Scrapes Amazon wishlist data to JSON format

usage: amazon_wishlist_exporter.py [-h] (-u URL | -f HTML_FILE) [-t STORE_TLD] [-l STORE_LOCALE] [-p] [-d] [-s SORT_KEYS] [-c] [-y] [-o OUTPUT_FILE] [--debug]

options:
  -h, --help            show this help message and exit
  -u URL, --url URL     Amazon wishlist URL
  -f HTML_FILE, --html-file HTML_FILE
                        Amazon wishlist HTML file
  -t STORE_TLD, --store-tld STORE_TLD
                        Amazon store TLD
  -l STORE_LOCALE, --store-locale STORE_LOCALE, --locale STORE_LOCALE
                        Amazon store locale
  -p, --priority-is-localized
                        Return localized priority text instead of numeric value
  -d, --iso8601         Convert localized date strings to ISO 8601 format
  -s SORT_KEYS, --sort-keys SORT_KEYS
                        Sort key(s) for JSON output
  -c, --compact-json    Write compacted JSON
  -y, --force           Overwrite existing output file without asking
  -o OUTPUT_FILE, --output-file OUTPUT_FILE
                        Output JSON file
  --debug               Print debug messages

Installation

Due to an upstream dependency, this package can only be installed with pip for Python 3.9, 3.10, and 3.11.

pip install amazon-wishlist-exporter

uv is recommended to install the package in a managed environment:

uv tool install -p 3.11 amazon-wishlist-exporter

For improved sorting of non-Latin or mixed scripts with the Unicode Collation Algorithm, install with the optional icu dependency:

uv tool install -p 3.11 amazon-wishlist-exporter[icu]

PyICU may need to be built separately: https://gitlab.pyicu.org/main/pyicu#installing-pyicu

Windows users can use pre-built wheels from here: https://github.com/cgohlke/pyicu-build/releases

Example:

uv tool install -p 3.11 amazon-wishlist-exporter --with https://github.com/cgohlke/pyicu-build/releases/download/v2.13/PyICU-2.13-cp311-cp311-win_amd64.whl

Installation on Python 3.12 or newer

uv can be used to override the Pillow dependency which has been tested up to Pillow 11.0 on Python 3.13:

uv tool install -p 3.13 amazon-wishlist-exporter --overrides overrides.txt

The above uses the overrides.txt found in this repository.

Dependencies

  • Python >= 3.9
  • amazoncaptcha
  • babel
  • curl_cffi
  • dateparser
  • selectolax
  • price_parser
  • tenacity
  • PyICU (optional)

Options

  • --url: Alternative to the above, allows whole wishlist URL as input - may need to be quoted
  • --html: For HTML files generated via below instructions
  • --store-tld: Optional for --html, will be guessed from filename
  • --store-locale: Optional - Store locale such as en_US, en_GB, de_DE, etc.
    • Not all stores support all locales.
    • If not specified, the default locale for that store will be chosen.
    • This is required for HTML files if the locale is not in the file name
  • --sort-keys: Optional - A single key or comma separated list of key names to sort the wishlist items by. Example priority,name sorts first by priority value highest to lowest, then sorts by name
    • Numeric values (such as priority, rating) are sorted largest to smallest
    • String values (such as name, comment) are sorted using the specified locale - when the package is installed with PyICU, the Unicode Collation Algorithm for the locale is used

Limitations

403 Errors

Excessive scraping in a short time frame will cause Amazon to serve HTTP 403 errors to the session, but will clear on its own after some time.

Private Wishlists and "Date Added" Field

This program is not capable of scraping private lists or authentication. Additionally, the "date added" field is only visible when you are authenticated (except for some old lists).

To scrape these lists, you must use the bookmarklet provided in the below section, which will download an HTML file you can pass to the program with the --html-file argument.

How to generate HTML files from a wishlist

Using "Save As" in the browser will not create a usable HTML file for this program.

To work around this, I created a bookmarklet which you can save and then open on any wishlist page. It will continuously scroll to the bottom until the list is fully loaded, and then save the rendered DOM to an HTML file with a filename understood by this program.

Create a blank/dummy bookmark in your browser and replace the URL with this value:

javascript:(function()%7Bif(window.location.host.startsWith(%22www.amazon.%22))var%20previousCount%3D-1%2CunchangedCount%3D0%2CcheckExist%3DsetInterval(function()%7Bvar%20e%3Ddocument.querySelectorAll(%22.g-item-sortable%22)%3Bif(document.getElementById(%22endOfListMarker%22)%7C%7CunchangedCount%3E%3D3)%7BclearInterval(checkExist)%3Blet%20t%3Ddocument.createElement(%22a%22)%2Cn%3Dnew%20Blob(%5Bdocument.getElementById(%22wishlist-page%22).outerHTML%5D%2C%7Btype%3A%22text%2Fhtml%22%7D)%3Bvar%20o%3Dwindow.location.host%2B%22_%22%2Bdocument.getElementById(%22listId%22).value%2B%22_%22%2Bopts.language%2B%22.html%22%3Bt.href%3DURL.createObjectURL(n)%2Ct.download%3Do%2Ct.click()%2CURL.revokeObjectURL(t.href)%7Delse%20e.length%3D%3D%3DpreviousCount%3FunchangedCount%2B%2B%3AunchangedCount%3D0%2CpreviousCount%3De.length%2C(last%3De%5Be.length-1%5D).scrollIntoView()%7D%2C2e3)%3Belse%20alert(%22This%20bookmarklet%20must%20be%20run%20on%20an%20Amazon%20site!%22)%3B%7D)()%3B

Alternatively, you can open a console using your browser's development tools, and then run the code that way:

if(window.location.host.startsWith("www.amazon."))var previousCount=-1,unchangedCount=0,checkExist=setInterval(function(){var e=document.querySelectorAll(".g-item-sortable");if(document.getElementById("endOfListMarker")||unchangedCount>=3){clearInterval(checkExist);let t=document.createElement("a"),n=new Blob([document.getElementById("wishlist-page").outerHTML],{type:"text/html"});var o=window.location.host+"_"+document.getElementById("listId").value+"_"+opts.language+".html";t.href=URL.createObjectURL(n),t.download=o,t.click(),URL.revokeObjectURL(t.href)}else e.length===previousCount?unchangedCount++:unchangedCount=0,previousCount=e.length,(last=e[e.length-1]).scrollIntoView()},2e3);else alert("This bookmarklet must be run on an Amazon site!");

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

amazon_wishlist_exporter-2024.12.7.tar.gz (1.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

amazon_wishlist_exporter-2024.12.7-py3-none-any.whl (18.1 kB view details)

Uploaded Python 3

File details

Details for the file amazon_wishlist_exporter-2024.12.7.tar.gz.

File metadata

File hashes

Hashes for amazon_wishlist_exporter-2024.12.7.tar.gz
Algorithm Hash digest
SHA256 efc2ad105fe2ffd8bf1235e60834271406dab28696db99843f23b4d043dd006a
MD5 7e76dd030b197434170c212006c3e3e3
BLAKE2b-256 b74d1c66739ea873f46aff0642e3b5981440b3231b865f8bbd3f3ffd8b4197b3

See more details on using hashes here.

File details

Details for the file amazon_wishlist_exporter-2024.12.7-py3-none-any.whl.

File metadata

File hashes

Hashes for amazon_wishlist_exporter-2024.12.7-py3-none-any.whl
Algorithm Hash digest
SHA256 dfa56b6ed785e2fd249a32f632b1449bcd9b241026e6c65339911ecd900df945
MD5 ba197c435b8546ceec079b063707fa39
BLAKE2b-256 2f6204eca13f24b23bfb2fd9b88b497f79485e21225f5d36b807ef1b966bface

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page