Metadata-Version: 2.1
Name: epub2html
Version: 2.2.11
Summary: this is a description
Home-page: https://github.com/zk4/epub2html
Author: zk
Author-email: liuzq7@gmail.com
License: BSD
Download-URL: https://github.com/zk4/epub2html/archive/master.zip
Keywords: best practice for python project
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Requires-Python: >3.0.0
Description-Content-Type: text/markdown

# why 
Read epub in PC is pain as hell. I have tried a lot tool for better view experience. No luck.
- Loading is slow because of the splitted file.
- No smooth scrolling.
- pdf generating is so ugly 

BUT! we have chrome! Why dont we take advantage of it.
So, the basic idea is converting epub to a static html. That's it.

![](https://github.com/zk4/epub2html/blob/master/demo.gif?raw=true)

# usage 
``` bash
pip install epub2html
epub2html abc.epub  

```
will open your converted epub html file in browser .


# open with double click like normal file (mac)

use automator, generate the app, create a `Run shell script` module
``` 
source ~/.bash_profile
epub2html "$1"
```
save it, 
link the file with this app, You are good to go.


# todo 
- read as epub standard
- show/hide button does not locate in the middle of sidebar if menu too long
- repair ref link

