Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cbguder/rutorrent
Ruby library for the remote management of uTorrent clients.
https://github.com/cbguder/rutorrent
Last synced: 3 months ago
JSON representation
Ruby library for the remote management of uTorrent clients.
- Host: GitHub
- URL: https://github.com/cbguder/rutorrent
- Owner: cbguder
- License: mit
- Archived: true
- Created: 2011-03-30T20:11:26.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-11-14T07:21:43.000Z (almost 11 years ago)
- Last Synced: 2024-07-17T07:26:11.349Z (4 months ago)
- Language: Ruby
- Homepage:
- Size: 275 KB
- Stars: 3
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
- License: LICENSE
Awesome Lists containing this project
README
= RUTorrent
RUTorrent is a Ruby library for the remote management of µTorrent clients via
the Web UI API.== Installation
gem install rutorrent
== Synopsis
require 'rutorrent'
s = RUTorrent::Server.new('127.0.0.1', 6881, 'username', 'password')
t = s.torrents[0]
puts t.nameProduces:
ubuntu-10.10-desktop-i386.iso
== Documentation
http://rdoc.info/github/cbguder/rutorrent/master/frames
== Caveat emptor
As the version number implies, RUTorrent is undocumented and untested.
Specifically, only read-only methods have been tested with µTorrent 2.2.1. Use
it at your own risk.