Quote:
Originally Posted by Hellmark
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.