├── .gitignore ├── NOTICE ├── README.md ├── __main__.py ├── gui.pyw └── lib ├── __init__.py ├── apnx.py ├── dualmetafix.py ├── extract_cover_thumbs.py ├── get_real_pages.py ├── header.py ├── kfxmeta.py ├── kindle_unpack.py ├── pages.py └── win_utf8_console.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quiris11/ExtractCoverThumbs/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quiris11/ExtractCoverThumbs/HEAD/README.md -------------------------------------------------------------------------------- /__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quiris11/ExtractCoverThumbs/HEAD/__main__.py -------------------------------------------------------------------------------- /gui.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quiris11/ExtractCoverThumbs/HEAD/gui.pyw -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/apnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quiris11/ExtractCoverThumbs/HEAD/lib/apnx.py -------------------------------------------------------------------------------- /lib/dualmetafix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quiris11/ExtractCoverThumbs/HEAD/lib/dualmetafix.py -------------------------------------------------------------------------------- /lib/extract_cover_thumbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quiris11/ExtractCoverThumbs/HEAD/lib/extract_cover_thumbs.py -------------------------------------------------------------------------------- /lib/get_real_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quiris11/ExtractCoverThumbs/HEAD/lib/get_real_pages.py -------------------------------------------------------------------------------- /lib/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quiris11/ExtractCoverThumbs/HEAD/lib/header.py -------------------------------------------------------------------------------- /lib/kfxmeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quiris11/ExtractCoverThumbs/HEAD/lib/kfxmeta.py -------------------------------------------------------------------------------- /lib/kindle_unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quiris11/ExtractCoverThumbs/HEAD/lib/kindle_unpack.py -------------------------------------------------------------------------------- /lib/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quiris11/ExtractCoverThumbs/HEAD/lib/pages.py -------------------------------------------------------------------------------- /lib/win_utf8_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quiris11/ExtractCoverThumbs/HEAD/lib/win_utf8_console.py --------------------------------------------------------------------------------