torrento 0.1.6 copy "torrento: ^0.1.6" to clipboard
torrento: ^0.1.6 copied to clipboard

An API wrapper for multiple torrent clients to remotely control torrents

Torrento #

Torrento is an api wrapper for many popular torrent clients and helps in remotely controlling and managing torrent clients.

Features : #

  • Login to your torrent client remotely and control it.

  • Browse your active torrents.

  • Start , Stop , Pause and Resume your torrents.

  • Get information and Stats on all your torrents.

  • Add new torrents or Remove existing ones.

  • Get and Set individual torrent properties.

  • Setting upload and download speed limits.

  • Some torrent client specific features like :

    • Get and Set Save Path of torrents.

    • Shutdown application

    • Control torrent peers , trackers , transfer info

    • Control priority of torrents , individual files.

    • Create or Remove Tags and Categories

Supported Torrent Clients : #

  • μTorrent
  • BitTorrent
  • qBittorrent

Installation : #

Add the torrento package as dependency in your pubspec.yaml

dependencies:
  torrento:

Usage : #

Here's a sample of some of the methods that are available to use.

Small Example :

import 'package:torrento/torrento.dart';

QbitTorrentController obj = QbitTorrentController('192.168.0.101' , 8080) ; 
await obj.logIn('username' , 'password') ; 

await obj.addTorrent('magnet:?xt=urn:btih:0d18397945bcc9f495818aa2c823ab167dc8da5c&dn=The.Lion.King.2019.1080p.BluRay.H264.AAC-RARBG') ; 

var torrents = await obj.getTorrentsList(filter: TorrentFilter.paused) ; 

torrents.forEach((t)=>print('${t['name']} : ${t['hash']}')) ; 

print("Starting all torrents") ;
await obj.startAllTorrents() ; 

print(await obj.getVersion()) ; 

await obj.logOut() ; 

16
likes
40
pub points
0%
popularity

Publisher

unverified uploader

An API wrapper for multiple torrent clients to remotely control torrents

Repository (GitHub)
View/report issues

License

GPL-3.0 (LICENSE)

Dependencies

html, http, meta

More

Packages that depend on torrento