├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── chapter_converter ├── __init__.py ├── __main__.py ├── chapter_converter.py └── gui.py ├── examples ├── human.txt ├── mediainfo.txt ├── ogm.txt ├── pot.pbf ├── simple.txt ├── tab.txt └── xml.xml ├── img └── pot.png ├── pyproject.toml ├── requirements.txt ├── setup.cfg └── setup.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/README.md -------------------------------------------------------------------------------- /chapter_converter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter_converter/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/chapter_converter/__main__.py -------------------------------------------------------------------------------- /chapter_converter/chapter_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/chapter_converter/chapter_converter.py -------------------------------------------------------------------------------- /chapter_converter/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/chapter_converter/gui.py -------------------------------------------------------------------------------- /examples/human.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/examples/human.txt -------------------------------------------------------------------------------- /examples/mediainfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/examples/mediainfo.txt -------------------------------------------------------------------------------- /examples/ogm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/examples/ogm.txt -------------------------------------------------------------------------------- /examples/pot.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/examples/pot.pbf -------------------------------------------------------------------------------- /examples/simple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/examples/simple.txt -------------------------------------------------------------------------------- /examples/tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/examples/tab.txt -------------------------------------------------------------------------------- /examples/xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/examples/xml.xml -------------------------------------------------------------------------------- /img/pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/img/pot.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireattack/chapter_converter/HEAD/setup.py --------------------------------------------------------------------------------