Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 730 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 730 Bytes

transmission-fluid

Travis-CI build status

A Python wrapper around the Transmission BitTorrent client's RPC interface.

>>> 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.