View Single Post
Old 11-30-2020, 01:58 AM   #535
queensacrifice
Junior Member
queensacrifice began at the beginning.
 
Posts: 4
Karma: 10
Join Date: Sep 2020
Device: Kindle Paperwhite
Quote:
Originally Posted by Freakeao View Post
I've got a book with a mobi-asin GUID, I run this pluging (and no other metadata downloads). I have scan multiple editions and get ASIN checked. But I always get matched to the hard cover. Not the Kindle edition or the ebook edition.

All the metadata will probably be the same between editions I'm looking at (same publishers, etc) but I'd like to get the IDs for the right edition. Is this just because publishers are all this same for this particular book? Is there a way to prefer ebook editions?
For this, in the line in __init__.py that reads
Code:
if identifier_name in ('amazon', 'asin') or identifier_name.startswith('amazon_'):
I added mobi-asin to the list, so that the line reads
Code:
if identifier_name in ('amazon', 'asin', 'mobi-asin') or identifier_name.startswith('amazon_'):
queensacrifice is offline   Reply With Quote