Ejemplo n.º 1
0
 def today(web):
     rtorrent = RTorrent()
     torrents, history = rtorrent.today()
     template(
         "index.tpl",
         torrents=torrents,
         queue=rtorrent.get_queue(),
         history=history,
         status=rtorrent.get_status(),
     )
Ejemplo n.º 2
0
 def json_today(web):
     rtorrent = RTorrent()
     torrents, history = rtorrent.today()
     return as_json({"torrents": torrents, "history": history})