An open API service indexing awesome lists of open source software.

https://github.com/edavis/transmission-fluid

A Python wrapper around Transmission's RPC interface
https://github.com/edavis/transmission-fluid

python rpc transmission

Last synced: 3 months ago
JSON representation

A Python wrapper around Transmission's RPC interface

Awesome Lists containing this project

README

          

transmission-fluid
==================

Travis-CI build status

A Python wrapper around the [Transmission][transmission] BitTorrent client's [RPC interface][rpc].

```python
>>> from transmission import Transmission
>>> client = Transmission()
>>> response = client('torrent-get', ids=1, fields=['name'])
>>> response['torrents']
[{u'name': u'torrent 1'}]
```

Complete documentation available on [ReadTheDocs][].

[transmission]: http://transmissionbt.com/
[rpc]: https://trac.transmissionbt.com/browser/trunk/extras/rpc-spec.txt
[ReadTheDocs]: http://transmission-fluid.readthedocs.org/