Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nateshmbhat/torrento
A Dart package that wraps various Web Apis for controlling and managing torrent clients.
https://github.com/nateshmbhat/torrento
api-wrapper bittorrent-client dart dart-package qbittorrent torrent-api
Last synced: 20 days ago
JSON representation
A Dart package that wraps various Web Apis for controlling and managing torrent clients.
- Host: GitHub
- URL: https://github.com/nateshmbhat/torrento
- Owner: nateshmbhat
- License: gpl-3.0
- Created: 2019-08-05T14:27:10.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-26T16:16:27.000Z (over 4 years ago)
- Last Synced: 2024-10-11T12:55:17.203Z (about 1 month ago)
- Topics: api-wrapper, bittorrent-client, dart, dart-package, qbittorrent, torrent-api
- Language: Dart
- Homepage:
- Size: 222 KB
- Stars: 15
- Watchers: 3
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# 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````dart
dependencies:
torrento:
```## Usage :
Here's a sample of some of the methods that are available to use.
#### Small Example :
```dart
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() ;
```
## Links :
+ [Torrento Docs](https://pub.dev/documentation/torrento/latest/torrento/torrento-library.html)
+ [Pub Dev Site](https://pub.dev/packages/torrento)
+ [Home Page](https://github.com/nateshmbhat/torrento)