Skip to content

Instantly share code, notes, and snippets.

View andreostrovsky's full-sized avatar

andreostrovsky

View GitHub Profile
@andreostrovsky
andreostrovsky / rtorrent_xmlrpc.py
Last active June 11, 2020 11:23 — forked from query/rtorrent_xmlrpc.py
Python module for interacting with rtorrent's XML-RPC interface directly over SCGI. [Updated to Python 3]
#!/usr/bin/python
# rtorrent_xmlrpc
# (c) 2011 Roger Que <[email protected]>
#
# Python module for interacting with rtorrent's XML-RPC interface
# directly over SCGI, instead of through an HTTP server intermediary.
# Inspired by Glenn Washburn's xmlrpc2scgi.py [1], but subclasses the
# built-in xmlrpc.client classes so that it is compatible with features
# such as MultiCall objects.