View Single Post
Old 02-18-2025, 06:35 AM   #338
Fraccy
Junior Member
Fraccy began at the beginning.
 
Posts: 4
Karma: 10
Join Date: Feb 2025
Device: none
Quote:
Originally Posted by Hellmark View Post
Does anyone know of a grease monkey script or some other means of automating download on this? I have about 3000 books on Amazon, and I'd like to get local copies before this gets shut down, because it will take forever doing it on the device one by one.
I was able to automate the download of my ~2400 Kindle books using the command line utility from https://github.com/yihong0618/Kindle_download_helper

Log in to your Amazon account > Manage Your Content and Devices

Copy the cookie and save it to a file ('cookie.txt'): https://github.com/yihong0618/Kindle...rieving-cookie

Execute the Python utility (this example accesses amazon.co.uk):

Code:
  python kindle.py --cookie-file cookie.txt --uk -o DOWNLOADS --device_sn [Your Kindle serial no.] --mode all
You can also download a JSON list containing details of all your Kindle books:

Code:
  python kindle.py --cookie-file cookie.txt --uk --list --device_sn [Your Kindle serial no.]
There are other methods outlined in the README, but this worked best for me.
Fraccy is offline   Reply With Quote