yaepub 1.0.4 copy "yaepub: ^1.0.4" to clipboard
yaepub: ^1.0.4 copied to clipboard

A simple, lightweight and robust Dart package for parsing EPUB files, extracting metadata, chapters, and content to build e-book readers.

example/yaepub_example.dart

import 'dart:io';
import 'package:yaepub/yaepub.dart';

Future<void> main() async {
  final f = File('example/vulkan-cookbook.epub');
  final bytes = await f.readAsBytes();
  final book = Book.from(bytes: bytes);
  print('book: $book');
}
0
likes
0
points
97
downloads

Publisher

verified publisheraestesis.org

Weekly Downloads

A simple, lightweight and robust Dart package for parsing EPUB files, extracting metadata, chapters, and content to build e-book readers.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

archive, collection, crypto, mime_type, path, xml

More

Packages that depend on yaepub