├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── manga109api ├── __init__.py └── manga109api.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── data_dummy ├── annotations │ ├── TitleA.xml │ ├── TitleB.xml │ └── TitleC_with_custom_tag.xml └── books.txt ├── test_data_type.py └── test_func.py /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manga109/manga109api/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manga109/manga109api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manga109/manga109api/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manga109/manga109api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manga109/manga109api/HEAD/README.md -------------------------------------------------------------------------------- /manga109api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manga109/manga109api/HEAD/manga109api/__init__.py -------------------------------------------------------------------------------- /manga109api/manga109api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manga109/manga109api/HEAD/manga109api/manga109api.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manga109/manga109api/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data_dummy/annotations/TitleA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manga109/manga109api/HEAD/tests/data_dummy/annotations/TitleA.xml -------------------------------------------------------------------------------- /tests/data_dummy/annotations/TitleB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manga109/manga109api/HEAD/tests/data_dummy/annotations/TitleB.xml -------------------------------------------------------------------------------- /tests/data_dummy/annotations/TitleC_with_custom_tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manga109/manga109api/HEAD/tests/data_dummy/annotations/TitleC_with_custom_tag.xml -------------------------------------------------------------------------------- /tests/data_dummy/books.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manga109/manga109api/HEAD/tests/data_dummy/books.txt -------------------------------------------------------------------------------- /tests/test_data_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manga109/manga109api/HEAD/tests/test_data_type.py -------------------------------------------------------------------------------- /tests/test_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manga109/manga109api/HEAD/tests/test_func.py --------------------------------------------------------------------------------