ebook 0.1.2

A CLI tool for reading, writing, and operating on various ebook formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod epub;
pub mod mobi;
pub mod fb2;
pub mod cbz;
pub mod txt;
pub mod pdf;
pub mod azw;

pub use epub::{EpubHandler, EpubVersion};
pub use mobi::MobiHandler;
pub use fb2::Fb2Handler;
pub use cbz::CbzHandler;
pub use txt::TxtHandler;
pub use pdf::PdfHandler;
pub use azw::AzwHandler;