├── .gitignore ├── .travis.yml ├── README.md ├── __init__.py ├── appveyor.yml ├── convertEbook.py ├── lib ├── __init__.py ├── compatibility_utils.py ├── kindlegen │ ├── kindlegen-linux │ ├── kindlegen-macos │ └── kindlegen.exe ├── kindleunpack.py ├── mobi_cover.py ├── mobi_dict.py ├── mobi_header.py ├── mobi_html.py ├── mobi_index.py ├── mobi_k8proc.py ├── mobi_k8resc.py ├── mobi_nav.py ├── mobi_ncx.py ├── mobi_opf.py ├── mobi_pagemap.py ├── mobi_sectioner.py ├── mobi_split.py ├── mobi_uncompress.py ├── mobi_utils.py ├── mobiml2xhtml.py ├── unipath.py └── unpack_structure.py ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/__init__.py -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/appveyor.yml -------------------------------------------------------------------------------- /convertEbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/convertEbook.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/compatibility_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/compatibility_utils.py -------------------------------------------------------------------------------- /lib/kindlegen/kindlegen-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/kindlegen/kindlegen-linux -------------------------------------------------------------------------------- /lib/kindlegen/kindlegen-macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/kindlegen/kindlegen-macos -------------------------------------------------------------------------------- /lib/kindlegen/kindlegen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/kindlegen/kindlegen.exe -------------------------------------------------------------------------------- /lib/kindleunpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/kindleunpack.py -------------------------------------------------------------------------------- /lib/mobi_cover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_cover.py -------------------------------------------------------------------------------- /lib/mobi_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_dict.py -------------------------------------------------------------------------------- /lib/mobi_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_header.py -------------------------------------------------------------------------------- /lib/mobi_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_html.py -------------------------------------------------------------------------------- /lib/mobi_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_index.py -------------------------------------------------------------------------------- /lib/mobi_k8proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_k8proc.py -------------------------------------------------------------------------------- /lib/mobi_k8resc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_k8resc.py -------------------------------------------------------------------------------- /lib/mobi_nav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_nav.py -------------------------------------------------------------------------------- /lib/mobi_ncx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_ncx.py -------------------------------------------------------------------------------- /lib/mobi_opf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_opf.py -------------------------------------------------------------------------------- /lib/mobi_pagemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_pagemap.py -------------------------------------------------------------------------------- /lib/mobi_sectioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_sectioner.py -------------------------------------------------------------------------------- /lib/mobi_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_split.py -------------------------------------------------------------------------------- /lib/mobi_uncompress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_uncompress.py -------------------------------------------------------------------------------- /lib/mobi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobi_utils.py -------------------------------------------------------------------------------- /lib/mobiml2xhtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/mobiml2xhtml.py -------------------------------------------------------------------------------- /lib/unipath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/unipath.py -------------------------------------------------------------------------------- /lib/unpack_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/lib/unpack_structure.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | threadpool==1.3.2 -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianyun8023/convert-ebook/HEAD/utils.py --------------------------------------------------------------------------------