Any practical examples of using d.multicall.filtered
on the command line?
#1275
-
rtorrent 0.9.8 Title says it all. Trying to find a practical example that works with base rtorrent to return a set of data specific to a single torrent. I can issue multiple calls for this data (currently doing so in my scripts). I know Unfortunately, the examples to filter all rely on rtorrent-PS rather than base rtorrent. Any guidance out there on how to use this other than what is in the docs? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
The usage between rtorrent-PS and base rtorrent is the same. I highly recommend using # xmlrpc-c
xmlrpc https://rtorrent-hostname/RPC2 d.multicall.filtered s/'' default 'equal=d.hash=\,cat=1078A67BBAA9184466BD551BB4460A1D9062A0AA' d.hash= d.name=
# rtxmlrpc
rtxmlrpc -U https://rtorrent-hostname/RPC2 d.multicall.filtered '' default 'equal=d.hash=,cat=1078A67BBAA9184466BD551BB4460A1D9062A0AA' d.hash= d.name= Note that you can also do something similar with the built-in |
Beta Was this translation helpful? Give feedback.
Aha, I'd have to figure out exactly why, but it turns out vanilla rtorrent requires an extra command that -PS and other forks don't. This works for me:
Also, if you don't want to go through the whole pyrocore setup, I made an fork that works on python 3 and only uses pip for installation of a single package: https://kannibalox.github.io/pyrosimple/