Perdoo is designed to assist in sorting and organizing your comic collection by utilizing metadata files stored within comic archives.
Perdoo standardizes all your digital comics into a unified format (cbz).
It adds and/or updates metadata files using supported services.
Unlike other tagging tools, Perdoo employs a manual approach when metadata files are absent, prompting users to enter the necessary Publisher/Series/Issue details for search purposes.
- Ensure you have Pipx installed:
pipx --version
- Install the project:
pipx install perdoo
- .cbr
- .cbt
- .cbz
- .cb7 (Requires installing
cb7
dependencies:pipx install perdoo[cb7]
)
- .cbz
- MetronInfo.xml
- Perdoo supports a slightly modified ComicInfo.xml to ignore field ordering.
- Comicvine using the Simyan library.
- Marvel using the Esak library.
- Metron using the Mokkari library.
File naming and organization uses a pattern-based approach, it tries to name based on the MetronInfo data with a fallback to ComicInfo.
Naming is done based on the Comic Format, set the value to ""
and it will fallback to the default setting.
- Default:
{publisher-name}/{series-name}-v{volume}/{series-name}-v{volume}_#{number:3}
- Annual:
{publisher-name}/{series-name}-v{volume}/{series-name}-v{volume}_Annual_#{number:2}
- Digital Chapter:
{publisher-name}/{series-name}-v{volume}/{series-name}-v{volume}_Chapter_#{number:3}
- Graphic Novel:
{publisher-name}/{series-name}-v{volume}/{series-name}-v{volume}_GN_#{number:2}
- Hardcover:
{publisher-name}/{series-name}-v{volume}/{series-name}-v{volume}_HC_#{number:2}
- Limited Series:
""
Falls back to Default - Omnibus:
{publisher-name}/{series-name}-v{volume}/{series-name}-v{volume}_OB_#{number:2}
- One-Shot:
""
Falls back to Default - Single Issue:
""
Falls back to Default - Trade Paperback:
{publisher-name}/{series-name}-v{volume}/{series-name}-v{volume}_TPB_#{number:2}
- Padding: Int and Int-like fields, such as
{number}
, can include optional zero-padding by specifying the length (e.g.{number:3}
will pad 0's to be atleast 3 digits long,12
=>012
). - Sanitization: All metadata values are sanitized to remove characters outside the set
0-9a-zA-Z&!-
. Custom characters can still be added directly to patterns.
Pattern Key | Description |
---|---|
{cover-date} |
The issue cover date in yyyy-mm-dd format. |
{cover-day} |
The day from the issue cover date. |
{cover-month} |
The month from the issue cover date. |
{cover-year} |
The year from the issue cover date. |
{format} |
The full format name of the series. |
{id} |
The primary id of the issue. |
{imprint} |
The publisher's imprint. |
{isbn} |
The issue's ISBN. |
{issue-count} |
The total number of issues in the series. |
{lang} |
The issue's language. |
{number} |
The issue number. |
{publisher-id} |
The publisher's unique id. |
{publisher-name} |
The full name of the publisher. |
{series-id} |
The series' unique id. |
{series-name} |
The full name of the series. |
{series-sort-name} |
Sort-friendly name (omits leading "The", "A", etc...). |
{series-year} |
The year the series started. |
{store-date} |
The store date of the issue in yyyy-mm-dd format. |
{store-day} |
The day from the issue store date. |
{store-month} |
The month from the issue store date. |
{store-year} |
The year from the issue store date. |
{title} |
The issue title. |
{upc} |
The issue's UPC. |
{volume} |
The volume of the series. |
To set Perdoo setting details, update the file: ~/.config/perdoo/settings.toml
.
File will be created on first run.
[output]
folder = "~/.local/share/perdoo"
format = "cbz"
[output.comic_info]
create = true
handle_pages = true
[output.metron_info]
create = true
[output.naming]
seperator = "-"
default = "{publisher-name}/{series-name}-v{volume}/{series-name}-v{volume}_#{number:3}"
annual = ""
digital_chapter = ""
graphic_novel = ""
hardcover = ""
limited_series = ""
omnibus = ""
one_shot = ""
single_issue = ""
trade_paperback = ""
[services]
order = ["Metron", "Marvel", "Comicvine"]
[services.comicvine]
api_key = "<Comicvine API Key>"
[services.marvel]
public_key = "<Marvel Public Key>"
private_key = "<Marvel Private Key>"
[services.metron]
username = "<Metron Username>"
password = "<Metron Password>"
-
output.folder
The folder where the output files will be stored. Defaults to~/.local/share/perdoo
. -
output.format
The output file format for the comic archives. Defaults tocbz
. -
output.comic_info.create
Whether to create a ComicInfo.xml file in the output archive. Defaults totrue
. -
output.comic_info.handle_pages
Whether to handle page data in the ComicInfo.xml file. Defaults totrue
. -
output.metron_info.create
Whether to create a MetronInfo.xml file in the output archive. Defaults totrue
. -
output.naming.seperator
The word separator used in the output file names. Defaults to-
. Options are-
,_
,.
, or -
output.naming.*
The naming patterns for different comic formats. Each pattern can be customized or left empty to use the default setting. The patterns support various metadata fields as described in the above "File Renaming and Organization" section. -
services.order
The order in which the services will be used for metadata retrieval. Metadata will be fetched from the first service that returns a result. Don't include the service name in the list if you don't want to use it. Defaults to["Metron", "Marvel", "Comicvine"]
, options areMetron
,Marvel
andComicvine
.