Last active
August 16, 2023 01:17
-
-
Save xiaolai/f3346fd6923ed6bcfef1a2b01ec62472 to your computer and use it in GitHub Desktop.
a jupyter notebook for downloading all books to devices, using Selenium.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"id": "61a548ac-c6d1-467d-b1e4-158fefcbe0fc", | |
"metadata": {}, | |
"source": [ | |
"# Download all your books from Amazon to your PC/Mac\n", | |
"... for backup, or for converting.\n", | |
"\n", | |
"## 1. Download Audiobooks\n", | |
"Audible books can be downloaded and converted to mp3 in batch with [OpenAidible](https://openaudible.org/), a paid app (CN¥139.95).\n", | |
"\n", | |
"## 2. Download awz files \n", | |
"\n", | |
"Checkout [this page: How to Download Kindle Books to Your Computer / Kindle\n", | |
"](https://www.epubor.com/the-ultimate-guide-to-download-kindle-books.html) on epubor.com\n", | |
"\n", | |
"## About THIS SCRIPT\n", | |
"\n", | |
"1. \"Send to kindle\" and then using USB;\n", | |
"2. Using kindle serial number in Epubor to remove DRM of downloaded awz files. (Of course they are purchased.)\n", | |
"\n", | |
"Your kindle Serial Number can be found in \"[Manage Your Content and Deivices > Devices > .. > Device Summary](https://www.amazon.com/hz/mycd/digital-console/alldevices)\"." | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"id": "ce4d1f50-b17a-4eab-a130-6f8e31cdc460", | |
"metadata": { | |
"tags": [] | |
}, | |
"outputs": [], | |
"source": [ | |
"!pip install Selenium" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"id": "f1d06c52-f818-477a-a295-9b89fc1232aa", | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"from selenium import webdriver\t\n", | |
"from selenium.webdriver.common.by import By\n", | |
"from selenium.webdriver.common.action_chains import ActionChains\n", | |
"from selenium.webdriver.chrome.service import Service\n", | |
"from selenium.webdriver.support.ui import WebDriverWait\n", | |
"from selenium.webdriver.support import expected_conditions as EC\n", | |
"from selenium.webdriver.common.keys import Keys\n", | |
"\n", | |
"# Login credential\n", | |
"email = \"\"\n", | |
"password = \"\"\n", | |
"\n", | |
"# How many pages? There're 25 books listed per page.\n", | |
"pages = 44\n", | |
"\n", | |
"# Devices that are delivered to\n", | |
"# Change the list to suit your needs\n", | |
"devices = [\n", | |
" 'bulk_deliver_to_device_list_2_checkmark>',\n", | |
" '',\n", | |
" '',\n", | |
"]\n", | |
"\n", | |
"# Login\n", | |
"driver = webdriver.Chrome()\n", | |
"driver.get('https://www.amazon.com/hz/mycd/digital-console/contentlist/booksAll/dateDsc/?pageNumber=1')\n", | |
"\n", | |
"wait = WebDriverWait(driver, 60)\n", | |
"wait.until(EC.element_to_be_clickable((By.NAME, \"email\")))\n", | |
"email = driver.find_element(by=By.NAME, value=\"email\")\n", | |
"# your username/email\n", | |
"email.send_keys(email)\n", | |
"\n", | |
"continue_button = driver.find_element(by=By.ID, value=\"continue\")\n", | |
"continue_button.click()\n", | |
"\n", | |
"wait = WebDriverWait(driver, 60)\n", | |
"wait.until(EC.element_to_be_clickable((By.NAME, \"password\")))\n", | |
"password = driver.find_element(by=By.NAME, value=\"password\")\n", | |
"# your password\n", | |
"password.send_keys(password)\n", | |
"\n", | |
"sign_in_button = driver.find_element(by=By.ID, value=\"signInSubmit\")\n", | |
"sign_in_button.click()\n", | |
"\n", | |
"# processing book-dilivering\n", | |
"\n", | |
"for i in range(1, pages + 1):\n", | |
" \n", | |
" driver.get(f'https://www.amazon.com/hz/mycd/digital-console/contentlist/booksAll/dateDsc/?pageNumber={i}')\n", | |
" \n", | |
" wait = WebDriverWait(driver, 5)\n", | |
" \n", | |
" # Button: Select All, SELECT-ALL\n", | |
" wait = WebDriverWait(driver, 60)\n", | |
" wait.until(EC.element_to_be_clickable((By.ID, \"SELECT-ALL\")))\n", | |
" select_all_button = driver.find_element(by=By.ID, value=\"SELECT-ALL\")\n", | |
" select_all_button.click()\n", | |
" \n", | |
" # Button: Deliver, BULK_DELIVER_ACTION_ID\n", | |
" wait = WebDriverWait(driver, 60)\n", | |
" wait.until(EC.element_to_be_clickable((By.ID, \"BULK_DELIVER_ACTION_ID\"))) \n", | |
" deliver_to_device = driver.find_element(by=By.ID, value=\"BULK_DELIVER_ACTION_ID\")\n", | |
" deliver_to_device.click()\n", | |
"\n", | |
" # Checkboxes of Devices \n", | |
" for device in devices:\n", | |
" wait = WebDriverWait(driver, 60)\n", | |
" wait.until(EC.element_to_be_clickable((By.ID, device))) \n", | |
" the_device_to_deliver = driver.find_element(by=By.ID, value=device)\n", | |
" the_device_to_deliver.click()\n", | |
"\n", | |
" # Button: Making Changes, BULK_DELIVER_ACTION_ID_CONFIRM\n", | |
" wait = WebDriverWait(driver, 60)\n", | |
" wait.until(EC.element_to_be_clickable((By.ID, \"BULK_DELIVER_ACTION_ID_CONFIRM\"))) \n", | |
" confirm_button = driver.find_element(by=By.ID, value=\"BULK_DELIVER_ACTION_ID_CONFIRM\")\n", | |
" confirm_button.click()\n", | |
"\n", | |
" # close_notification\n", | |
" wait = WebDriverWait(driver, 2)\n", | |
" close_notification_button = driver.find_element(by=By.ID, value=\"notification-close\")\n", | |
" close_notification_button.click()\n", | |
"\n", | |
"driver.quit() \n", | |
"print(\"DONE!\")\n" | |
] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": "Python 3 (ipykernel)", | |
"language": "python", | |
"name": "python3" | |
}, | |
"language_info": { | |
"codemirror_mode": { | |
"name": "ipython", | |
"version": 3 | |
}, | |
"file_extension": ".py", | |
"mimetype": "text/x-python", | |
"name": "python", | |
"nbconvert_exporter": "python", | |
"pygments_lexer": "ipython3", | |
"version": "3.8.13" | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 5 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment