├── .dockerignore ├── .github └── workflows │ └── docker-image.yml ├── .gitignore ├── Dockerfile ├── README.md ├── arm64.Dockerfile ├── console_handler.dll ├── console_handler ├── console_handler.cpp └── console_handler.dll ├── exit ├── head ├── __init__.py ├── aes.py ├── backup.py ├── func.py ├── server.py ├── templates │ ├── book_groups.html │ ├── book_information.html │ ├── bookshelf_category.html │ ├── bookviewer_chapters.html │ ├── bookviewer_lr.html │ ├── bookviewer_roll.html │ ├── cookie.html │ ├── getBookSources_get.html │ ├── getBookSources_group.html │ ├── getBookSources_id.html │ ├── getBookSources_list.html │ ├── multi_search.html │ ├── multi_search_book.html │ ├── save_book_choose_book_groups.html │ ├── single_search.html │ └── single_search_book.html └── thread.py ├── main.py ├── nginx ├── conf │ ├── all_proxy_conf(unable) │ │ ├── 127.0.0.1_1000(unable).conf │ │ └── 127.0.0.1_80(unable).conf │ ├── fastcgi.conf │ ├── fastcgi_params │ ├── koi-utf │ ├── koi-win │ ├── mime.types │ ├── nginx.conf │ ├── proxy │ │ ├── 127.0.0.1_1000.conf │ │ └── 127.0.0.1_80.conf │ ├── scgi_params │ ├── uwsgi_params │ └── win-utf ├── contrib │ ├── README │ ├── geo2nginx.pl │ └── unicode2nginx │ │ ├── koi-utf │ │ ├── unicode-to-nginx.pl │ │ └── win-utf ├── nginx.exe └── temp │ ├── client_body_temp │ └── unkownfile │ ├── fastcgi_temp │ └── unkownfile │ ├── proxy_temp │ └── unkownfile │ ├── scgi_temp │ └── unkownfile │ └── uwsgi_temp │ └── unkownfile ├── reader-pro.jar ├── requirements.txt ├── start.bat ├── start.sh ├── storage └── assets │ ├── css │ └── layout.css │ ├── img │ └── noCover.jpeg │ └── js │ ├── base16.js │ ├── book.js │ ├── booklist.js │ ├── hpage.js │ ├── layout.js │ ├── myJQuery.js │ └── title.js └── update.bat /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/README.md -------------------------------------------------------------------------------- /arm64.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/arm64.Dockerfile -------------------------------------------------------------------------------- /console_handler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/console_handler.dll -------------------------------------------------------------------------------- /console_handler/console_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/console_handler/console_handler.cpp -------------------------------------------------------------------------------- /console_handler/console_handler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/console_handler/console_handler.dll -------------------------------------------------------------------------------- /exit: -------------------------------------------------------------------------------- 1 | 114514 -------------------------------------------------------------------------------- /head/__init__.py: -------------------------------------------------------------------------------- 1 | # Hello?This is the v2.0 2 | -------------------------------------------------------------------------------- /head/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/aes.py -------------------------------------------------------------------------------- /head/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/backup.py -------------------------------------------------------------------------------- /head/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/func.py -------------------------------------------------------------------------------- /head/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/server.py -------------------------------------------------------------------------------- /head/templates/book_groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/book_groups.html -------------------------------------------------------------------------------- /head/templates/book_information.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/book_information.html -------------------------------------------------------------------------------- /head/templates/bookshelf_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/bookshelf_category.html -------------------------------------------------------------------------------- /head/templates/bookviewer_chapters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/bookviewer_chapters.html -------------------------------------------------------------------------------- /head/templates/bookviewer_lr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/bookviewer_lr.html -------------------------------------------------------------------------------- /head/templates/bookviewer_roll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/bookviewer_roll.html -------------------------------------------------------------------------------- /head/templates/cookie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/cookie.html -------------------------------------------------------------------------------- /head/templates/getBookSources_get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/getBookSources_get.html -------------------------------------------------------------------------------- /head/templates/getBookSources_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/getBookSources_group.html -------------------------------------------------------------------------------- /head/templates/getBookSources_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/getBookSources_id.html -------------------------------------------------------------------------------- /head/templates/getBookSources_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/getBookSources_list.html -------------------------------------------------------------------------------- /head/templates/multi_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/multi_search.html -------------------------------------------------------------------------------- /head/templates/multi_search_book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/multi_search_book.html -------------------------------------------------------------------------------- /head/templates/save_book_choose_book_groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/save_book_choose_book_groups.html -------------------------------------------------------------------------------- /head/templates/single_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/single_search.html -------------------------------------------------------------------------------- /head/templates/single_search_book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/templates/single_search_book.html -------------------------------------------------------------------------------- /head/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/head/thread.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/main.py -------------------------------------------------------------------------------- /nginx/conf/all_proxy_conf(unable)/127.0.0.1_1000(unable).conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/conf/all_proxy_conf(unable)/127.0.0.1_1000(unable).conf -------------------------------------------------------------------------------- /nginx/conf/all_proxy_conf(unable)/127.0.0.1_80(unable).conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/conf/all_proxy_conf(unable)/127.0.0.1_80(unable).conf -------------------------------------------------------------------------------- /nginx/conf/fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/conf/fastcgi.conf -------------------------------------------------------------------------------- /nginx/conf/fastcgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/conf/fastcgi_params -------------------------------------------------------------------------------- /nginx/conf/koi-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/conf/koi-utf -------------------------------------------------------------------------------- /nginx/conf/koi-win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/conf/koi-win -------------------------------------------------------------------------------- /nginx/conf/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/conf/mime.types -------------------------------------------------------------------------------- /nginx/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/conf/nginx.conf -------------------------------------------------------------------------------- /nginx/conf/proxy/127.0.0.1_1000.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/conf/proxy/127.0.0.1_1000.conf -------------------------------------------------------------------------------- /nginx/conf/proxy/127.0.0.1_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/conf/proxy/127.0.0.1_80.conf -------------------------------------------------------------------------------- /nginx/conf/scgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/conf/scgi_params -------------------------------------------------------------------------------- /nginx/conf/uwsgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/conf/uwsgi_params -------------------------------------------------------------------------------- /nginx/conf/win-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/conf/win-utf -------------------------------------------------------------------------------- /nginx/contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/contrib/README -------------------------------------------------------------------------------- /nginx/contrib/geo2nginx.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/contrib/geo2nginx.pl -------------------------------------------------------------------------------- /nginx/contrib/unicode2nginx/koi-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/contrib/unicode2nginx/koi-utf -------------------------------------------------------------------------------- /nginx/contrib/unicode2nginx/unicode-to-nginx.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/contrib/unicode2nginx/unicode-to-nginx.pl -------------------------------------------------------------------------------- /nginx/contrib/unicode2nginx/win-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/contrib/unicode2nginx/win-utf -------------------------------------------------------------------------------- /nginx/nginx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/nginx/nginx.exe -------------------------------------------------------------------------------- /nginx/temp/client_body_temp/unkownfile: -------------------------------------------------------------------------------- 1 | keep in git repo -------------------------------------------------------------------------------- /nginx/temp/fastcgi_temp/unkownfile: -------------------------------------------------------------------------------- 1 | keep in git repo -------------------------------------------------------------------------------- /nginx/temp/proxy_temp/unkownfile: -------------------------------------------------------------------------------- 1 | keep in git repo -------------------------------------------------------------------------------- /nginx/temp/scgi_temp/unkownfile: -------------------------------------------------------------------------------- 1 | keep in git repo -------------------------------------------------------------------------------- /nginx/temp/uwsgi_temp/unkownfile: -------------------------------------------------------------------------------- 1 | keep in git repo -------------------------------------------------------------------------------- /reader-pro.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/reader-pro.jar -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/start.bat -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/start.sh -------------------------------------------------------------------------------- /storage/assets/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/storage/assets/css/layout.css -------------------------------------------------------------------------------- /storage/assets/img/noCover.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/storage/assets/img/noCover.jpeg -------------------------------------------------------------------------------- /storage/assets/js/base16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/storage/assets/js/base16.js -------------------------------------------------------------------------------- /storage/assets/js/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/storage/assets/js/book.js -------------------------------------------------------------------------------- /storage/assets/js/booklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/storage/assets/js/booklist.js -------------------------------------------------------------------------------- /storage/assets/js/hpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/storage/assets/js/hpage.js -------------------------------------------------------------------------------- /storage/assets/js/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/storage/assets/js/layout.js -------------------------------------------------------------------------------- /storage/assets/js/myJQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/storage/assets/js/myJQuery.js -------------------------------------------------------------------------------- /storage/assets/js/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/storage/assets/js/title.js -------------------------------------------------------------------------------- /update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/Kindle-Reader-Web-CLI/HEAD/update.bat --------------------------------------------------------------------------------