├── .github └── ISSUE_TEMPLATE │ └── issue.md ├── .gitignore ├── LICENSE ├── MangaTagger.py ├── MangaTaggerLib ├── MangaTaggerLib.py ├── __init__.py ├── _version.py ├── api.py ├── database.py ├── errors.py ├── models.py ├── task_queue.py └── utils.py ├── README.md ├── images └── manga_tagger_logo_cropped.png ├── install.bat ├── requirements.txt ├── run.bat ├── settings.json ├── tests ├── __init__.py ├── data │ ├── Absolute Boyfriend │ │ ├── data.json │ │ └── staff.json │ ├── G-Maru Edition │ │ ├── data.json │ │ └── staff.json │ └── Peach Girl Next [EN] │ │ ├── data.json │ │ └── staff.json ├── database.py ├── test_integration.py └── test_manga.py └── wiki └── images ├── fmd1.PNG ├── fmd2.PNG └── mangatagger.PNG /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/LICENSE -------------------------------------------------------------------------------- /MangaTagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/MangaTagger.py -------------------------------------------------------------------------------- /MangaTaggerLib/MangaTaggerLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/MangaTaggerLib/MangaTaggerLib.py -------------------------------------------------------------------------------- /MangaTaggerLib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MangaTaggerLib/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.1.6-alpha' 2 | -------------------------------------------------------------------------------- /MangaTaggerLib/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/MangaTaggerLib/api.py -------------------------------------------------------------------------------- /MangaTaggerLib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/MangaTaggerLib/database.py -------------------------------------------------------------------------------- /MangaTaggerLib/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/MangaTaggerLib/errors.py -------------------------------------------------------------------------------- /MangaTaggerLib/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/MangaTaggerLib/models.py -------------------------------------------------------------------------------- /MangaTaggerLib/task_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/MangaTaggerLib/task_queue.py -------------------------------------------------------------------------------- /MangaTaggerLib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/MangaTaggerLib/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/README.md -------------------------------------------------------------------------------- /images/manga_tagger_logo_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/images/manga_tagger_logo_cropped.png -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/install.bat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- 1 | python MangaTagger.py -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/settings.json -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/Absolute Boyfriend/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/tests/data/Absolute Boyfriend/data.json -------------------------------------------------------------------------------- /tests/data/Absolute Boyfriend/staff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/tests/data/Absolute Boyfriend/staff.json -------------------------------------------------------------------------------- /tests/data/G-Maru Edition/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/tests/data/G-Maru Edition/data.json -------------------------------------------------------------------------------- /tests/data/G-Maru Edition/staff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/tests/data/G-Maru Edition/staff.json -------------------------------------------------------------------------------- /tests/data/Peach Girl Next [EN]/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/tests/data/Peach Girl Next [EN]/data.json -------------------------------------------------------------------------------- /tests/data/Peach Girl Next [EN]/staff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/tests/data/Peach Girl Next [EN]/staff.json -------------------------------------------------------------------------------- /tests/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/tests/database.py -------------------------------------------------------------------------------- /tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/tests/test_integration.py -------------------------------------------------------------------------------- /tests/test_manga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/tests/test_manga.py -------------------------------------------------------------------------------- /wiki/images/fmd1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/wiki/images/fmd1.PNG -------------------------------------------------------------------------------- /wiki/images/fmd2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/wiki/images/fmd2.PNG -------------------------------------------------------------------------------- /wiki/images/mangatagger.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inpacchi/Manga-Tagger/HEAD/wiki/images/mangatagger.PNG --------------------------------------------------------------------------------