Files
cbz/README.md
T
2023-02-06 10:44:12 +01:00

1.3 KiB

pydvdfab

License: GPL v3 Release Total Downloads

Python library to create a cbz file with metadata.

Usage

Basic Usage

>>> import os
>>> from pycbzhelper import Helper
>>> metadata = {
>>>     "Title": "T1 - Arrête de me chauffer, Nagatoro",
>>>     "Series": "Arrête de me chauffer, Nagatoro",
>>>     "Number": "1",
>>>     "Count": 8,
>>>     "Volume": 1
>>>     ...
>>> }
>>> ...
>>> helper = Helper(metadata)
>>> helper.save_cbz(
...     path=os.path.join("eBooks", "Arrête de me chauffer, Nagatoro"),
...     file="T1 - Arrête de me chauffer, Nagatoro",
...     clear=False,
...     replace=True
... )

Installation

To install, you can either clone the repository and run python setup.py install

About

  • Graphical metadata editing software here
  • Standard ComicInfo file structure information here
  • New version of ComicInfo file structure here