wp-mini-epub 0.9.0-alpha.2

Minimal async WP to EPUB downloader | Extremely minimal.
Documentation
1
2
3
4
5
6
7
8
9
pub use wp_mini::types::StoryResponse;
pub struct StoryDownload<T> {
    /// Sanitized Title ( Follow {id}-{title} )
    pub sanitized_title: String,
    /// The generated EPUB file, either as a PathBuf or Vec<u8>.
    pub epub_response: T,
    /// The full story metadata fetched from Wattpad.
    pub metadata: StoryResponse,
}