Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre > Library Management

Notices

Reply
 
Thread Tools Search this Thread
Old 04-11-2022, 11:25 PM   #1
ownedbycats
Custom User Title
ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.
 
ownedbycats's Avatar
 
Posts: 10,972
Karma: 75337983
Join Date: Oct 2018
Location: Canada
Device: Kobo Libra H2O, formerly Aura HD
Download metadata: Ignore identifiers from selected sources

Aside from disabling the sources entirely, is there an option to ignore specified identifiers when downloading metadata? Calibre often combines results so I have to manually remove unwanted ones from the ids field afterward.

ownedbycats is online now   Reply With Quote
Old 06-25-2023, 10:13 PM   #2
alyshadeshae
Cat Mom
alyshadeshae began at the beginning.
 
alyshadeshae's Avatar
 
Posts: 14
Karma: 10
Join Date: Jan 2013
Location: Louisiana
Device: Likebook Mars
I know this is an old post (posted on my birthday last year, actually!), but I think I have the same question.

I'm trying to figure out how to simply not download certain identifiers. Or even just any identifiers other than Goodreads as that is the only one I ever keep.
alyshadeshae is offline   Reply With Quote
Advert
Old 06-26-2023, 02:58 AM   #3
Ghostcat
Connoisseur
Ghostcat ought to be getting tired of karma fortunes by now.Ghostcat ought to be getting tired of karma fortunes by now.Ghostcat ought to be getting tired of karma fortunes by now.Ghostcat ought to be getting tired of karma fortunes by now.Ghostcat ought to be getting tired of karma fortunes by now.Ghostcat ought to be getting tired of karma fortunes by now.Ghostcat ought to be getting tired of karma fortunes by now.Ghostcat ought to be getting tired of karma fortunes by now.Ghostcat ought to be getting tired of karma fortunes by now.Ghostcat ought to be getting tired of karma fortunes by now.Ghostcat ought to be getting tired of karma fortunes by now.
 
Posts: 61
Karma: 582370
Join Date: Apr 2023
Device: Kobo Clara 2E
Can't you just click on the Paste Identifier button (on the Edit Metadata screen) and remove the prefixes you are not interested in. Or have I mis-understood the question.
Ghostcat is offline   Reply With Quote
Old 06-26-2023, 03:35 AM   #4
ownedbycats
Custom User Title
ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.
 
ownedbycats's Avatar
 
Posts: 10,972
Karma: 75337983
Join Date: Oct 2018
Location: Canada
Device: Kobo Libra H2O, formerly Aura HD
Yes, but it's a hassle to do it constantly.
ownedbycats is online now   Reply With Quote
Old 06-26-2023, 03:41 AM   #5
Dsharma
Enthusiast
Dsharma ought to be getting tired of karma fortunes by now.Dsharma ought to be getting tired of karma fortunes by now.Dsharma ought to be getting tired of karma fortunes by now.Dsharma ought to be getting tired of karma fortunes by now.Dsharma ought to be getting tired of karma fortunes by now.Dsharma ought to be getting tired of karma fortunes by now.Dsharma ought to be getting tired of karma fortunes by now.Dsharma ought to be getting tired of karma fortunes by now.Dsharma ought to be getting tired of karma fortunes by now.Dsharma ought to be getting tired of karma fortunes by now.Dsharma ought to be getting tired of karma fortunes by now.
 
Dsharma's Avatar
 
Posts: 48
Karma: 3254262
Join Date: Apr 2023
Device: Kindle
As far as I know, Calibre does not have an in-built feature to ignore specific identifiers when downloading metadata.
A possible workaround might be to use a plugin or write a custom script that post-processes the metadata and removes unwanted identifiers. Although this still means an extra step, it could be automated to run after each download, thereby reducing the hassle.
Remember that any modifications to the software or use of third-party plugins should be done with caution, and make sure to back up your library before making major changes.
Dsharma is offline   Reply With Quote
Advert
Old 06-26-2023, 04:05 AM   #6
ownedbycats
Custom User Title
ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.
 
ownedbycats's Avatar
 
Posts: 10,972
Karma: 75337983
Join Date: Oct 2018
Location: Canada
Device: Kobo Libra H2O, formerly Aura HD
Quote:
Originally Posted by Dsharma View Post
As far as I know, Calibre does not have an in-built feature to ignore specific identifiers when downloading metadata.
A possible workaround might be to use a plugin or write a custom script that post-processes the metadata and removes unwanted identifiers. Although this still means an extra step, it could be automated to run after each download, thereby reducing the hassle.
Remember that any modifications to the software or use of third-party plugins should be done with caution, and make sure to back up your library before making major changes.
I use Action Chains single-field edit with this template. It removes amazon/barnesnoble/kobo/baen identifiers, but keeps the one associated with #purchasesource if available.

Code:
program:

	def do_one(ids, check_value, select_identifier):
		si = select(ids, select_identifier);
		if 
			!$#purchasesource==check_value && si
		then
			return list_difference (ids, strcat(select_identifier, ':', si), ',')
		fi;
		return ids
	fed;

	ids = do_one($identifiers, "Amazon",'amazon');
	ids = do_one(ids, "Barnes & Noble", 'barnesnoble');
	ids = do_one(ids, "Kobo", 'kobo');
	ids = do_one(ids, "Baen", 'baen')

This post was made before I set it up, It's more ideal than outright excluding for my usecase.

Last edited by ownedbycats; 06-26-2023 at 04:11 AM.
ownedbycats is online now   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
One possible bug report, two questions about developing metadata sources sources lrpirlet Development 3 03-16-2021 10:03 AM
why does Calibre ignore the single most useful metadata flag? jleslie48 Conversion 6 12-31-2019 04:33 PM
How are tags selected between multiple metadata sources? Isomorpheus Library Management 3 10-19-2019 01:29 PM
Importing Books: Ignore tags in metadata ownedbycats Library Management 3 02-03-2019 03:07 PM
Ignore tags when downloading metadata? rockola Library Management 2 12-09-2017 10:11 AM


All times are GMT -4. The time now is 05:16 PM.


MobileRead.com is a privately owned, operated and funded community.