rtorrent-xmlrpc

Library for direct communication with rtorrent's xmlrpc via scgi


Keywords
rtorrent, xmlrpc, scgi
License
Other
Install
pip install rtorrent-xmlrpc==0.0.3

Documentation

rtorrent xmlrpc over SCGI

A library providing the ability to communicate with rtorrent directly over SCGI using xmlrpc.client from the standard library.

Originally written by Roger Que (query on github), this is a port to Python 3.

Usage

Basic usage:

from rtorrent_xmlrpc import SCGIServerProxy

server = SCGIServerProxy('scgi:///var/run/rtorrent.sock')
print('Download rate:', server.get_down_rate())

See the examples/ directory for more examples.