All Projects → phildier → Php Rtorrent Client

phildier / Php Rtorrent Client

Licence: other
PHP XMLRPC client for rtorrent

Labels

Projects that are alternatives of or similar to Php Rtorrent Client

Docker Rtorrent Rutorrent
rTorrent and ruTorrent Docker image based on Alpine Linux
Stars: ✭ 75 (+971.43%)
Mutual labels:  rtorrent
seedbox-from-scratch
The Dockered Seedbox From Scratch Mod 2 Script
Stars: ✭ 14 (+100%)
Mutual labels:  rtorrent
Flood
A modern web UI for various torrent clients with a Node.js backend and React frontend.
Stars: ✭ 282 (+3928.57%)
Mutual labels:  rtorrent
Flood
A web UI for rTorrent, qBittorrent and Transmission with a Node.js backend and React frontend. Migrate to v4: https://github.com/jesec/flood/wiki/Migrate-from-older-versions-of-Flood.
Stars: ✭ 1,795 (+25542.86%)
Mutual labels:  rtorrent
Pyrocore
🔧 A collection of tools for the BitTorrent protocol and especially the rTorrent client
Stars: ✭ 247 (+3428.57%)
Mutual labels:  rtorrent
alpine-rtorrent
Dockerized rTorrent based on Alpine Linux, with a better Docker integration.
Stars: ✭ 28 (+300%)
Mutual labels:  rtorrent
Rtinst
seedbox installation script for Ubuntu and Debian systems
Stars: ✭ 1,029 (+14600%)
Mutual labels:  rtorrent
Electorrent
A remote control client for µTorrent, qBittorrent, rTorrent, Transmission, Synology & Deluge
Stars: ✭ 582 (+8214.29%)
Mutual labels:  rtorrent
MySB
MySB (MySeedBox) is more than a simplified installation script of a multi-users Seedbox. There are many solutions to install a Seedbox, but we never talk about safety and regular operations. MySB could be renamed MySSB (MySecuredSeedBox).
Stars: ✭ 105 (+1400%)
Mutual labels:  rtorrent
Flood Mobile
GSoC 21' @CCExtractor. A modern mobile UI for various torrent clients with a Node.js backend and Flutter frontend.
Stars: ✭ 48 (+585.71%)
Mutual labels:  rtorrent
Rutorrent Bonobox
Auto install script for rTorrent with ruTorrent
Stars: ✭ 161 (+2200%)
Mutual labels:  rtorrent
Thoradia
Thoradia Add-ons Repository
Stars: ✭ 208 (+2871.43%)
Mutual labels:  rtorrent
rtelegram
Control rTorrent via a Telegram bot
Stars: ✭ 39 (+457.14%)
Mutual labels:  rtorrent
Pimp My Box
🌱 Automated seedbox install of rTorrent-PS and PyroScope CLI etc. via Ansible.
Stars: ✭ 127 (+1714.29%)
Mutual labels:  rtorrent
Rtorrent Ps
🎨 Extended rTorrent distribution with a fully customizable canvas and colors, other feature additions, and complete docs.
Stars: ✭ 359 (+5028.57%)
Mutual labels:  rtorrent
Dockerfiles
lots of dockerfiles, based on alpine
Stars: ✭ 69 (+885.71%)
Mutual labels:  rtorrent
tdpt
Torrent downloading progress on Telegram
Stars: ✭ 32 (+357.14%)
Mutual labels:  rtorrent
Swizzin
A simple, modular seedbox solution
Stars: ✭ 888 (+12585.71%)
Mutual labels:  rtorrent
Dockerfiles
Discontinued. Fork at your will.
Stars: ✭ 384 (+5385.71%)
Mutual labels:  rtorrent
swerpbox
SwerpBox, a seedbox and Media Center combined with the power of 🐳 Docker.
Stars: ✭ 57 (+714.29%)
Mutual labels:  rtorrent

PHP XMLRPC client for rtorrent

Provides a simple, composer-installable XMLRPC client for communicating with the rTorrent bittorrent client

Requirements

  • PHP 5.5.0
  • PHP curl extension
  • PHP xmlrpc extension

Installation

Installation through composer is recommended:

composer require phildier/php-rtorrent-client

Example usage

<?php

require_once("../vendor/autoload.php");

$client = new PHPRtorrentClient\Client(array('rpc_address'=>"http://localhost:8981/RPC2"));

$request = new PHPRtorrentClient\Request("system.listMethods");

$methods = $client->exec($request);

print_r($methods->getAll());

Resources

rTorrent XMLRPC references:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].