|  06-28-2016, 11:15 AM | #46 | |
| Evangelist            Posts: 404 Karma: 401800 Join Date: Jun 2011 Device: Pocketbook 902 / Ipad air/ kindle paperwhite | Quote: 
 More likely it is related to the name of the Publisher, if there are spanisch characters in it. Can you check that and/or give an example of a book found in english mode and not in spanish mode. Last edited by Pr.BarnArt; 06-29-2016 at 07:47 AM. | |
|   |   | 
|  07-31-2016, 12:48 AM | #47 | 
| Enthusiast  Posts: 26 Karma: 10 Join Date: Jul 2010 Device: Kobo | 
			
			Thank you greatly for this plugin. Love it. Just a quick question: When using the plugin, is it possible to download just the rating without downloading any other metadata? That is, to download and add only the rating itself to Calibre so as not to change any pre-existing info on other fields such as the Comments, Ids, etc? As an aside, at first I couldn't get any ratings but then I went into "Configure metadata download" and unchecked all the Metadata sources except for Goodreads and it worked. | 
|   |   | 
|  07-31-2016, 01:32 AM | #48 | |
| Grand Sorcerer            Posts: 24,905 Karma: 47303824 Join Date: Jul 2011 Location: Sydney, Australia Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos | Quote: 
 | |
|   |   | 
|  07-31-2016, 02:33 AM | #49 | 
| Enthusiast  Posts: 26 Karma: 10 Join Date: Jul 2010 Device: Kobo | 
			
			I've always had the Goodreads metadata source plugin. Earlier today I downloaded both the goodreads rating and the frating plugins. I was able to add the rating to a book I tested it on but not without also changing other metadata.  Since closing down and restarting Calibre I am unable to add the rating to any of my books. | 
|   |   | 
|  07-31-2016, 06:42 AM | #50 | |
| Evangelist            Posts: 404 Karma: 401800 Join Date: Jun 2011 Device: Pocketbook 902 / Ipad air/ kindle paperwhite | Quote: 
 You can minimize it to check only download Publisher metadata. That item is needed to get the floating rating through the plugin. It is correct to select only the goodreads-rating, beacause only that one gives you the rating in float-format. Last edited by Pr.BarnArt; 08-01-2016 at 10:48 AM. | |
|   |   | 
|  08-01-2016, 01:21 PM | #51 | 
| Enthusiast            Posts: 30 Karma: 12906 Join Date: Aug 2016 Device: Kindle PW 11th | 
			
			Quick question do I need both plugins to download the decimal rating from goodreads or just the first one? I need to clean my TBR folder that has more than 2000 books and doing so for starters from the GR rating would be a great help.
		 | 
|   |   | 
|  08-01-2016, 03:00 PM | #52 | |
| Evangelist            Posts: 404 Karma: 401800 Join Date: Jun 2011 Device: Pocketbook 902 / Ipad air/ kindle paperwhite | Quote: 
 You need both: goodreads-rating to get the decimal rating and frating is for use afterwards to split the decimal rating from the Publisher-field to a custom field. | |
|   |   | 
|  08-02-2016, 10:00 AM | #53 | 
| Enthusiast            Posts: 30 Karma: 12906 Join Date: Aug 2016 Device: Kindle PW 11th | 
			
			@Pr.BarnArt Nvm.. figured it out =D
		 Last edited by Teeny; 08-02-2016 at 03:15 PM. | 
|   |   | 
|  08-04-2016, 11:37 AM | #54 | 
| Evangelist            Posts: 404 Karma: 401800 Join Date: Jun 2011 Device: Pocketbook 902 / Ipad air/ kindle paperwhite | |
|   |   | 
|  08-07-2016, 01:02 PM | #55 | 
| Connoisseur            Posts: 93 Karma: 13884 Join Date: Dec 2009 Location: Austria Device: Kindle Oasis, Amazon Fire 7 Tablet, iPad mini 4, iPhone XS |  for this plugin. It worked for me immediately after installing and re-starting. Just a minor thing: Clicking into the  the window it says "Set decimal retings" instead "ratings". I would like to add some thought for further improvements: 
 I am not a programmer, so I do not know if these ideas are feasible. Take these ideas just as suggestions for your own thoughts of improvements. And again,  your plugin is an important enhancement! | 
|   |   | 
|  08-08-2016, 03:10 AM | #56 | 
| Enthusiast            Posts: 30 Karma: 12906 Join Date: Aug 2016 Device: Kindle PW 11th | 
			
			@Pr.BarnArt  I was wondering would it be possible if your plugin was enhanced to download not only the average rating of a book but those of people we are following as well, with a limit of 3 people or something so that it isn't abused? | 
|   |   | 
|  09-15-2016, 05:04 PM | #57 | 
| I need a chapter break            Posts: 4,042 Karma: 56058267 Join Date: Mar 2015 Location: Israel Device: Kobo Glo | 
			
			Hi Pr.BarnArt I have a problem when the rating is x.x0, for example 4.10 the rating show 41.0, Calibre 2.67. EDIT: I find the problem in goodreadsX-2.1.zip, I changed the code in worker.py file. Spoiler: 
 Now it works okay. Last edited by oren64; 09-17-2016 at 07:11 AM. | 
|   |   | 
|  09-17-2016, 09:06 AM | #58 | |
| Grand Sorcerer            Posts: 24,905 Karma: 47303824 Join Date: Jul 2011 Location: Sydney, Australia Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos | Quote: 
 Code:     def parse_rating(self, root):
        rating_node = root.xpath('//div[@id="metacol"]/div[@id="bookMeta"]/span[@class="value rating"]/span')
        if rating_node:
            try:
                rating_text = rating_node[0].text
                rating_value = float(rating_text)
                return rating_value
            except:
                return None | |
|   |   | 
|  09-17-2016, 12:40 PM | #59 | 
| I need a chapter break            Posts: 4,042 Karma: 56058267 Join Date: Mar 2015 Location: Israel Device: Kobo Glo | |
|   |   | 
|  09-17-2016, 03:30 PM | #60 | |
| Evangelist            Posts: 404 Karma: 401800 Join Date: Jun 2011 Device: Pocketbook 902 / Ipad air/ kindle paperwhite | Quote: 
 I only add the rating tot the Publisher field. And you were right, as Davidfor mentioned there was a problem with a rating with 1 decimal, and I presume also for ratings with 3 decimals. Dafidfor changed the code a little. The new goodreadsX code is based on the betaversion of goodreads (v 1.1.12) You can find the new goodreadsX version 0.2.2 at the start of this topic, where it can be downloaded for a manual install. Frating itself does not need an update. Enjoy again. Last edited by Pr.BarnArt; 09-17-2016 at 03:33 PM. | |
|   |   |