flutter_anime_bittorrent_search 0.0.1 copy "flutter_anime_bittorrent_search: ^0.0.1" to clipboard
flutter_anime_bittorrent_search: ^0.0.1 copied to clipboard

A more convenient way to search anime/manga torrent magnet in Flutter/Dart

A more convenient way to search anime/manga torrent magnet in Flutter/Dart

Quick Start #

It's quite easy to start a search by using this package

import 'package:flutter_anime_bittorrent_search/flutter_anime_bittorrent_search.dart';

void main() async {
  try {
    TorrentSearchResult result = await searchDMHY(animeName: 'Bocchi the rock');
    print('SearchTimeStamp: ${result.searchTime}');
    for (TorrentSearchResultItem item in result.results) {
      print(item.title ?? 'No title');
      print(item.magnet ?? 'No magnet');
    }
  } on TorrentSearchInputException {
    print('Invalid Input');
  } catch (e) {
    print(e);
  }
}

For more info, you can read the Full API Reference

Other Info #

SourcePlatform #

Until now, this package only support searching magnet on DMHY, we will consider adding more availble source platform in the future.

0
likes
120
points
24
downloads

Publisher

unverified uploader

Weekly Downloads

A more convenient way to search anime/manga torrent magnet in Flutter/Dart

Homepage

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter, html, http

More

Packages that depend on flutter_anime_bittorrent_search