This file contains hidden or 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
| # ASIN Fixer for Kindle Colorsoft Cover Issues | |
| # | |
| # Since the new Kindle Colorsoft only loads book covers from Amazon servers, having the correct Kindle ASIN is crucial for covers to display properly. | |
| # Calibre doesn’t always fetch the correct Kindle ASIN, which is the only way for the Kindle to download the cover. | |
| # This tool extracts ASINs from Calibre `.opf` files, scrapes Amazon for Kindle variants, and updates the `.opf` files with the correct Kindle ASIN. | |
| # Additionally, it reads from the Calibre database, updates book identifiers in the database based on the `.opf` files. | |
| # | |
| # How It Works: | |
| # 1. Extract ASINs: Pulls existing ASINs from `.opf` files in your Calibre library. | |
| # 2. Scrape Amazon: Uses Selenium to visit Amazon and scrape the correct Kindle ASIN. |
This file contains hidden or 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
| 0.0.0.0 localhost | |
| 0.0.0.0 localhost.localdomain | |
| 0.0.0.0 test | |
| 0.0.0.0 testing | |
| 0.0.0.0 0000mps.webpreview.dsl.net | |
| 0.0.0.0 0001.2waky.com | |
| 0.0.0.0 00037.accountant | |
| 0.0.0.0 00038.accountant | |
| 0.0.0.0 00039.accountant | |
| 0.0.0.0 00041.accountant |
This file contains hidden or 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
| // hyper settings sync gist |