librivox 0.0.2 copy "librivox: ^0.0.2" to clipboard
librivox: ^0.0.2 copied to clipboard

An easy to use SDK for interacting with the popular librivox Service. It provides a simple interface for fetching and parsing data from the service

example/main.dart

import 'package:librivox/librivox.dart';

void main() async {
  final List<LibrivoxItem> results = await LibrivoxApi().searchTitles(
    query: 'The Adventures of Sherlock Holmes (version 5)',
  );

  // for (final result in results) {
  //   print(result);
  // }

  final LibrivoxItem result = await LibrivoxApi().getInfo(results.first.id);
  print(result);
}
0
likes
150
points
21
downloads

Publisher

verified publishertribestick.com

Weekly Downloads

An easy to use SDK for interacting with the popular librivox Service. It provides a simple interface for fetching and parsing data from the service

Homepage

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

beautiful_soup_dart, book_scraper, compute, equatable, freezed_annotation, html, http, json_annotation

More

Packages that depend on librivox