e_livre 1.0.0 copy "e_livre: ^1.0.0" to clipboard
e_livre: ^1.0.0 copied to clipboard

Provides a simple way to extract information for ebook files such as epub 2.0 and epub 3.0

eLivre #

This is a Dart package for handling ebook files in EPUB 2.0 and 3.0 formats.

Features #

  • Read EPUB 2.0 and EPUB 3.0 files
  • Navigate through the book structure
  • Extract book metadata
  • Extract book files

Getting Started #

To use this package, add e_livre as a dependency in your pubspec.yaml file.

dependencies:
  e_livre: ^1.0.0

Then, run flutter pub get in your terminal.

Usage #

Here's a basic example of how to use the package:

import 'package:e_livre/e_livre.dart' as livre;

void main() async {
  final book = await livre.readBook('test/resources/linear-algebra.epub');

  print(book.package.metadata.title);
  print(book.package.metadata.creator);
  print(book.package.metadata.language);
}
3
likes
0
pub points
32%
popularity

Publisher

unverified uploader

Provides a simple way to extract information for ebook files such as epub 2.0 and epub 3.0

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

archive, collection, path, xml

More

Packages that depend on e_livre