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
- Host: GitHub
- URL: https://github.com/edavis/transmission-fluid
- Owner: edavis
- Created: 2012-05-01T04:54:47.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2016-04-17T22:14:54.000Z (almost 10 years ago)
- Last Synced: 2025-08-17T21:30:09.580Z (8 months ago)
- Topics: python, rpc, transmission
- Language: Python
- Homepage:
- Size: 119 KB
- Stars: 37
- Watchers: 8
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
transmission-fluid
==================
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/
