yaepub 1.0.2 copy "yaepub: ^1.0.2" to clipboard
yaepub: ^1.0.2 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
70
points
194
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

MIT (license)

Dependencies

archive, collection, crypto, mime_type, path, xml

More

Packages that depend on yaepub