Skip to content

owenvoke/VuzeClient

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

vuze-client

PHP class for control Vuze torrent-client.
Require installed XML over Http plugin for Vuze.

Class is based on a class of application Azureus PHP Control Layer.
The code has been rewritten, optimized and prepared for use in third-party projects.

Examples of use

Get a list of all torrents:

$client = new VuzeClient('127.0.0.1', 6884);
print_r($client->getDownloads());

Add torrent from data:

$client = new VuzeClient('127.0.0.1', 6884);
$client->addTorrent(file_get_contents('/home/cosmologist/Downloads/some.torrent'));

Add torrent from url:

$client = new VuzeClient('127.0.0.1', 6884);
$client->addTorrentUrl('http://localhost/some.torrent');

About

PHP library for control Vuze torrent-client

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%