Metadata-Version: 2.4
Name: metron-tagger
Version: 4.9.3
Summary: A program to write metadata from metron.cloud to a comic archive
Project-URL: Homepage, https://github.com/Metron-Project/metron-tagger
Project-URL: Bug Tracker, https://github.com/Metron-Project/metron-tagger/issues
Author-email: Brian Pepple <bpepple@metron.cloud>
Maintainer-email: Brian Pepple <bpepple@metron.cloud>
License-Expression: GPL-3.0-or-later
License-File: LICENSE
Keywords: cb7,cbr,cbt,cbz,comic,comicinfo,metadata,metroninfo,pdf,tagger,tagging
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: BSD
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Other/Nonlisted Topic
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Requires-Dist: comicfn2dict<0.3,>=0.2.4
Requires-Dist: darkseid<9,>=8.0.0
Requires-Dist: imagehash<5,>=4.3.1
Requires-Dist: mokkari<4,>=3.25.3
Requires-Dist: pandas<3,>=2.2.1
Requires-Dist: pyxdg<0.29,>=0.28
Requires-Dist: questionary<3,>=2.0.1
Requires-Dist: tqdm<5,>=4.66.4
Provides-Extra: 7zip
Requires-Dist: py7zr>=1.0.0; extra == '7zip'
Provides-Extra: pdf
Requires-Dist: pymupdf>=1.26.6; extra == 'pdf'
Description-Content-Type: text/markdown

# Metron-Tagger

[![PyPI version](https://img.shields.io/pypi/v/metron-tagger.svg)](https://pypi.org/project/metron-tagger/)
[![Python versions](https://img.shields.io/pypi/pyversions/metron-tagger.svg)](https://pypi.org/project/metron-tagger/)
[![License](https://img.shields.io/github/license/bpepple/metron-tagger)](https://opensource.org/licenses/GPL-3.0)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)

## Quick Description

A command-line tool to tag comic archives with metadata from
[metron.cloud](https://metron.cloud).

## Installation

### PyPi

Or install it yourself:

```bash
$ pipx install metron-tagger
```

There are optional dependencies which can be installed by specifying one or more
of them in braces e.g. metron-tagger[7zip]

The optional dependencies are:

- 7zip: Provides support for reading/writing to CB7 files.
- pdf: Provides support for reading/writing to PDF files.

## FAQ

**What comics formats are supported?**

- Metron-Tagger supports CBZ, CBR, CBT, CB7 (optional), and PDF (optional)
  comics.

**How to enable RAR support?**

- It depends on the unrar command-line utility, and expects it to be in your
  $PATH.
  > _NOTE_: unrar only supports reading archives, so you will need to convert
  > the archive to a cbz to write to it. To do so you can use
  > `-z, --export-to-cbz` and if you want you can remove the orginal .cbr
  > archive with `--delete-original` after successful conversion.

## Help

```
usage: metron-tagger [-h] [-r] [-o] [-m] [-c] [--id ID] [-d] [--ignore-existing] [--accept-only] [--missing] [-s] [-z] [--validate] [--remove-non-valid] [--delete-original] [--duplicates] [--migrate] [--version]
                   path [path ...]

Read in a file or set of files, and return the result.

positional arguments:
  path                 Path of a file or a folder of files.

options:
  -h, --help           show this help message and exit
  -r, --rename         Rename comic archive from the files metadata. (default: False)
  -o, --online         Search online and attempt to identify comic archive. (default: False)
  -m, --metroninfo     Write, delete, or validate MetronInfo.xml. (default: False)
  -c, --comicinfo      Write, delete, or validate ComicInfo.xml. (default: False)
  --id ID              Identify file for tagging with the Metron Issue Id, or restrict directory matches to issues from a specific Metron Series Id. (default: None)
  -d, --delete         Delete the metadata tags from the file. (default: False)
  --ignore-existing    Ignore files that have existing metadata tag. (default: False)
  --accept-only        Automatically accept the match when exactly one valid match is found. (default: False)
  --skip-multiple      Skip files that have multiple matches instead of prompting for selection. (default: False)
  --missing            List files without metadata. (default: False)
  -s, --sort           Sort files that contain metadata tags. (default: False)
  -z, --export-to-cbz  Export a CBR (rar) archive to a CBZ (zip) archive. (default: False)
  --validate           Verify that comic archive has a valid metadata xml. (default: False)
  --remove-non-valid   Remove metadata xml from comic if not valid. Used with --validate option (default: False)
  --delete-original    Delete the original archive after successful export to another format. (default: False)
  --duplicates         Identify and give the option to delete duplicate pages in a directory of comics. (Experimental) (default: False)
  --migrate            Migrate information from a ComicInfo.xml into a *new* MetronInfo.xml (default: False)
  --version            Show the version number and exit
```

## Examples

To tag all comics in a directory with MetronInfo.xml that don't already have
one:

```
metron-tagger -om --ignore-existing /path/to/comics
```

To remove any ComicInfo.xml from a directory of comics:

```
metron-tagger -dc /path/to/comics
```

To validate any metadata, ComicInfo.xml and MetronInfo.xml, would be done by
running the following:

```
metron-tagger -cm --validate /path/to/comics
```

To write MetronInfo.xml metadata from comics with ComicInfo.xml data, and
migrate data for comics that don't exist at the Metron Comic Database:

```
metron-tagger -om --migrate /path/to/comics
```

To remove duplicate pages from comics (which should be only ran on a directory
of weekly release since we scan all the pages within a comic), would be done by
running the following:

```
metron-tagger --duplicates /path/to/weekly/comics
```

## Bugs/Requests

Please use the
[GitHub issue tracker](https://github.com/Metron-Project/metron-tagger/issues)
to submit bugs or request features.

## License

This project is licensed under the [GPLv3 License](LICENSE).
