TorrentRequester

TorrentRequester

The TorrentRequester is a class created to quickly and efficiently query all the torrents in a view. It only uses one XMLRPC request. All the methods you can perform on TorrentRequester are identical to the methods on Torrent. (Although set* methods have not been implemented)

Example usage:

t = TorrentRequester('hostname')
t.get_name().get_hash() # Chaining commands is possible
t.get_upload_throttle() # As well as calling another method on it.
print t.all()
class torrentrequester.TorrentRequester(target, *first_args)[source]

Table Of Contents

Previous topic

BaseRequester

Next topic

PeerRequester

This Page