03-09-2024, 08:27 PM | #721 | |
Calibre Plugins Developer
Posts: 4,680
Karma: 2162246
Join Date: Oct 2010
Location: Australia
Device: Kindle Oasis
|
Quote:
So while yes it technically “could” be done in a way using that approach the next question then becomes is it really worth the development effort of doing so, given no-one else has asked for this feature in the at least 12+ years this plugin has existed It is clearly not something there is high demand for, and if it is only ever going to be used by 1-2 people then the answer is going to be no. The source code is available for you to modify the plugin for your own purposes to add this feature for yourself of course. |
|
03-15-2024, 08:13 PM | #722 |
Junior Member
Posts: 4
Karma: 31934
Join Date: Aug 2023
Device: Kindle Paperwhite(11) 5.14.1.1
|
Is there a formula suitable for a custom column that considers both the number of votes and the rating, such that a book with over 20,000 votes and a 4.1 rating would rank higher than a book with 20 votes and a 4.9 rating?
Last edited by Wolfbeta; 03-15-2024 at 08:17 PM. |
Advert | |
|
03-15-2024, 08:48 PM | #723 | |
Grand Sorcerer
Posts: 12,027
Karma: 7257323
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
|
Quote:
|
|
03-15-2024, 09:31 PM | #724 | |
want to learn what I want
Posts: 1,251
Karma: 6426810
Join Date: Sep 2020
Device: Calibre E-book viewer
|
Quote:
|
|
03-17-2024, 12:34 AM | #725 |
Calibre Plugins Developer
Posts: 4,680
Karma: 2162246
Join Date: Oct 2010
Location: Australia
Device: Kindle Oasis
|
Goodreads v1.7.10
Release Notes
https://github.com/kiwidude68/calibr...dreads-v1.7.10 |
Advert | |
|
03-18-2024, 06:43 PM | #726 |
Junior Member
Posts: 2
Karma: 31934
Join Date: Mar 2024
Device: Tolino Vision 6
|
hi there,
the plugin is great as a meta data source and I'm loving it. I just got one gripe with it. Most of the time when downloading meta data it gives me not only the original author but also the translator as an author. (This is especially a problem since my ebook reader often only shows the translator as the author). Is there a way to only get the original author as meta data? Alternativly is there a way to deactive goodreads as the source for author meta data? best regards! |
03-19-2024, 01:57 AM | #727 | |
Calibre Plugins Developer
Posts: 4,680
Karma: 2162246
Join Date: Oct 2010
Location: Australia
Device: Kindle Oasis
|
Quote:
I had started typing text explaining why it isn't possible to get just the main author back from Goodreads. Then in double checking my facts on this I discovered a way I could do it. Given someone had raised an issue for this on GitHub for me I will take the opportunity to sort that out. The Goodreads plugin has a "Get all contributing authors" setting in it's configuration page but it doesn't really do anything meaningful at the moment due to how the data scraping method got changed. However I now think I can find a way to properly respect that... expect a new plugin version soon... |
|
03-19-2024, 02:42 AM | #728 |
Calibre Plugins Developer
Posts: 4,680
Karma: 2162246
Join Date: Oct 2010
Location: Australia
Device: Kindle Oasis
|
Goodreads v1.8.0
Release Notes
https://github.com/kiwidude68/calibr...odreads-v1.8.0 This addresses the issue mentioned above of the plugin not respecting turning off the "Get all contributing authors" setting. So now you won't get translators, illustrators, introduction authors etc all being returned as authors for a book with that setting off (which is the default). Note that I still had to make a decision on pseudonyms (pen names). I decided to return both. I didn't want to add yet another setting to control this (which would lead to another round of translation updates etc). So for example the book "Thinner" will return both "Richard Bachman" and "Stephen King" as the authors. There will be some people who want that, others who don't - if you don't you can always either (a) turn off updating author metadata completely (what I do), or (b) edit the authors after to how you prefer them to be... |
03-19-2024, 03:08 AM | #729 |
want to learn what I want
Posts: 1,251
Karma: 6426810
Join Date: Sep 2020
Device: Calibre E-book viewer
|
That's awesome, I noticed this only recently when I started using the EPOM plugin to extract translators from book content to a long text column. Then I began seeing the same information on author and translator field, and I thought it wasn't possible for the plugin to retrieve just the author from Goodreads website. Example: https://www.goodreads.com/book/show/34741564
Previous version would add Agatha Christie and Lucia Brito to authors. This one will add only Christie. Thanks! Last edited by Comfy.n; 03-19-2024 at 03:14 AM. |
03-19-2024, 12:26 PM | #730 | |
Junior Member
Posts: 2
Karma: 31934
Join Date: Mar 2024
Device: Tolino Vision 6
|
Quote:
I really didn't expect this issue to get adressed so quickly! |
|
03-23-2024, 11:24 PM | #731 |
Calibre Plugins Developer
Posts: 4,680
Karma: 2162246
Join Date: Oct 2010
Location: Australia
Device: Kindle Oasis
|
Goodreads v1.8.1
Release Notes
https://github.com/kiwidude68/calibr...odreads-v1.8.1 A further addition to the change for retrieving author metadata for the default behaviour when not retrieving all contributing authors as metadata. The problem is that some books like Manga do not have any contributors with a role of "Author". So in this circumstance I am just taking the primary contributor as the best compromise I could come up with. |
06-13-2024, 04:22 AM | #732 |
Grand Sorcerer
Posts: 6,388
Karma: 12117217
Join Date: Jun 2009
Location: Madrid, Spain
Device: Kobo Clara/Aura One/Forma,XiaoMI 5, iPad, Huawei MediaPad, YotaPhone 2
|
I have a small request. For other identifiers, as Amazon or B&N, if you press right mouse button and press remove identifier, it works and it disappears in the books. It doesn't happen with goodreads identifiers. I have seen that changing in get_book_url
Code:
return ('Goodreads', goodreads_id, '%s/book/show/%s' % (Goodreads.BASE_URL, goodreads_id)) Code:
return ('goodreads', goodreads_id, '%s/book/show/%s' % (Goodreads.BASE_URL, goodreads_id)) |
06-13-2024, 06:35 AM | #733 |
Calibre Plugins Developer
Posts: 4,680
Karma: 2162246
Join Date: Oct 2010
Location: Australia
Device: Kindle Oasis
|
Goodreads v1.8.2
|
06-13-2024, 06:41 AM | #734 |
Grand Sorcerer
Posts: 6,388
Karma: 12117217
Join Date: Jun 2009
Location: Madrid, Spain
Device: Kobo Clara/Aura One/Forma,XiaoMI 5, iPad, Huawei MediaPad, YotaPhone 2
|
Thank you for changing it, I know it's a bit OCD from my side but....
|
07-03-2024, 12:45 PM | #735 |
Enthusiast
Posts: 37
Karma: 10
Join Date: Mar 2023
Device: Kindle Oasis, Kobo Libra Colour
|
When downloading metadata and putting 'Goodreads:60929' in the id field and clearing everything else. metadata.db books table gets the timestamp field wrong showing '0101-01-01 00:00:00+00:00' instead of the added time. Reproducible on macOS.
Timestamp field was correct before downloading metadata from GR |
Tags |
goodreads, metadata |
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[GUI Plugin] Goodreads Sync | kiwidude | Plugins | 1763 | 10-08-2024 12:02 AM |
[Metadata Download Plugin] Goodreads Metadata **Deprecated** | kiwidude | Plugins | 30 | 04-23-2011 03:10 PM |
[Covers Plugin] Goodreads Covers **Deprecated** | kiwidude | Plugins | 13 | 04-17-2011 06:09 PM |
metadata plugin | redneck_momma | Plugins | 1 | 05-21-2010 09:41 PM |