├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── data.json ├── gui.py ├── pyproject.toml ├── renamer.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | dist 3 | build 4 | *.spec -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kierankihn/comic-renamer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kierankihn/comic-renamer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kierankihn/comic-renamer/HEAD/README.md -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kierankihn/comic-renamer/HEAD/data.json -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kierankihn/comic-renamer/HEAD/gui.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kierankihn/comic-renamer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kierankihn/comic-renamer/HEAD/renamer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests --------------------------------------------------------------------------------