├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── NotImplemented.txt ├── README.md ├── __init__.py ├── _config.yml ├── config.json ├── getify.py ├── novels.db ├── requirements.txt ├── start.bat └── wuxiaworld2ebook.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeYourLifeEasier/Wuxiaworld-2-eBook/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeYourLifeEasier/Wuxiaworld-2-eBook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeYourLifeEasier/Wuxiaworld-2-eBook/HEAD/LICENSE -------------------------------------------------------------------------------- /NotImplemented.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeYourLifeEasier/Wuxiaworld-2-eBook/HEAD/NotImplemented.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeYourLifeEasier/Wuxiaworld-2-eBook/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeYourLifeEasier/Wuxiaworld-2-eBook/HEAD/_config.yml -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "default_temporary_chapter_cleanup_behavior": true 3 | } 4 | -------------------------------------------------------------------------------- /getify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeYourLifeEasier/Wuxiaworld-2-eBook/HEAD/getify.py -------------------------------------------------------------------------------- /novels.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeYourLifeEasier/Wuxiaworld-2-eBook/HEAD/novels.db -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeYourLifeEasier/Wuxiaworld-2-eBook/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | start python wuxiaworld2ebook.py & 3 | -------------------------------------------------------------------------------- /wuxiaworld2ebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeYourLifeEasier/Wuxiaworld-2-eBook/HEAD/wuxiaworld2ebook.py --------------------------------------------------------------------------------