dtorrent_parser 1.0.6 copy "dtorrent_parser: ^1.0.6" to clipboard
dtorrent_parser: ^1.0.6 copied to clipboard

A Dart library for parsing .torrent file to Torrent model/saving Torrent model to .torrent file.

example/dtorrent_parser_example.dart

import 'package:dtorrent_parser/dtorrent_parser.dart';

void main() async {
  readAndSave('example/test.torrent', 'example/test2.torrent');
  readAndSave('example/test3.torrent', 'example/test4.torrent');
}

void readAndSave(String path, String newPath) async {
  var result = await Torrent.parse(path);
  printModelInfo(result);
  var newFile = await result.saveAs(newPath, true);
  var result2 = await Torrent.parse(newFile.path);
  printModelInfo(result2);
}

void printModelInfo(Torrent model) {
  print('${model.filePath} Info Hash : ${model.infoHash}');
  print('${model.filePath} announces :');
  for (var announce in model.announces) {
    print('$announce');
  }
  print('DHT nodes:');
  for (var element in model.nodes) {
    print(element);
  }

  print('${model.filePath} files :');
  for (var file in model.files) {
    print('$file');
  }
}
1
likes
0
pub points
71%
popularity

Publisher

unverified uploader

A Dart library for parsing .torrent file to Torrent model/saving Torrent model to .torrent file.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

b_encode_decode, crypto

More

Packages that depend on dtorrent_parser