p3-transmission
Control Transmission with this API.
Installation
$ gem install p3-transmission
Usage
transmission =
P3::Transmission::Client.new(
:username => "username",
:password => "password",
:host => "127.0.0.1",
:port => 9091
)
torrents = transmission.all
torrent = transmission.find(id)
torrent = transmission.create("http://torrent.com/nice_pic.torrent")
transmission.remove(id)
Transmission Api Doc
Supported Transmission Api Version: 2.40
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am "Added some feature"
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request