├── .gitignore ├── LICENSE ├── README.md ├── bin ├── chapters_info.json └── run.py ├── conf └── settings.py ├── expand ├── __init__.py ├── aaaac_qq_com.py ├── dashumanhua.py ├── mh1234.py ├── mhua5.py ├── qinqinmh.py ├── qq.py ├── tfvisa.py └── xianmanwang.py ├── images └── 18comic │ ├── 0.png │ ├── 18comic_l.png │ └── 18comic_r.png ├── js ├── _ac_qq.js ├── dashumanhua.js ├── package.json ├── xianmanwang.js └── zzzmh.js ├── requirements.txt ├── res ├── comic_info_status ├── comment.txt └── fake_useragent_0.1.11.json ├── templates └── reader.html └── utils ├── Re_splicing_img.py ├── Re_splicing_img_hz.py ├── Refactoring_html.py ├── __init__.py ├── base.py ├── comic_tools.py ├── cut_watermark.py ├── downloader.py ├── my_requests.py ├── transpose_img.py ├── try_to_fix.py └── 重构多图片合成pdf.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/README.md -------------------------------------------------------------------------------- /bin/chapters_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/bin/chapters_info.json -------------------------------------------------------------------------------- /bin/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/bin/run.py -------------------------------------------------------------------------------- /conf/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/conf/settings.py -------------------------------------------------------------------------------- /expand/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/expand/__init__.py -------------------------------------------------------------------------------- /expand/aaaac_qq_com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/expand/aaaac_qq_com.py -------------------------------------------------------------------------------- /expand/dashumanhua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/expand/dashumanhua.py -------------------------------------------------------------------------------- /expand/mh1234.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/expand/mh1234.py -------------------------------------------------------------------------------- /expand/mhua5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/expand/mhua5.py -------------------------------------------------------------------------------- /expand/qinqinmh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/expand/qinqinmh.py -------------------------------------------------------------------------------- /expand/qq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/expand/qq.py -------------------------------------------------------------------------------- /expand/tfvisa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/expand/tfvisa.py -------------------------------------------------------------------------------- /expand/xianmanwang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/expand/xianmanwang.py -------------------------------------------------------------------------------- /images/18comic/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/images/18comic/0.png -------------------------------------------------------------------------------- /images/18comic/18comic_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/images/18comic/18comic_l.png -------------------------------------------------------------------------------- /images/18comic/18comic_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/images/18comic/18comic_r.png -------------------------------------------------------------------------------- /js/_ac_qq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/js/_ac_qq.js -------------------------------------------------------------------------------- /js/dashumanhua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/js/dashumanhua.js -------------------------------------------------------------------------------- /js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/js/package.json -------------------------------------------------------------------------------- /js/xianmanwang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/js/xianmanwang.js -------------------------------------------------------------------------------- /js/zzzmh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/js/zzzmh.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/requirements.txt -------------------------------------------------------------------------------- /res/comic_info_status: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/comment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/res/comment.txt -------------------------------------------------------------------------------- /res/fake_useragent_0.1.11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/res/fake_useragent_0.1.11.json -------------------------------------------------------------------------------- /templates/reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/templates/reader.html -------------------------------------------------------------------------------- /utils/Re_splicing_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/utils/Re_splicing_img.py -------------------------------------------------------------------------------- /utils/Re_splicing_img_hz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/utils/Re_splicing_img_hz.py -------------------------------------------------------------------------------- /utils/Refactoring_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/utils/Refactoring_html.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/utils/base.py -------------------------------------------------------------------------------- /utils/comic_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/utils/comic_tools.py -------------------------------------------------------------------------------- /utils/cut_watermark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/utils/cut_watermark.py -------------------------------------------------------------------------------- /utils/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/utils/downloader.py -------------------------------------------------------------------------------- /utils/my_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/utils/my_requests.py -------------------------------------------------------------------------------- /utils/transpose_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/utils/transpose_img.py -------------------------------------------------------------------------------- /utils/try_to_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/utils/try_to_fix.py -------------------------------------------------------------------------------- /utils/重构多图片合成pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdragon/kanleying/HEAD/utils/重构多图片合成pdf.py --------------------------------------------------------------------------------