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