From 4c3e7e227d64b9fb829ccad379c23f87ae0de8b0 Mon Sep 17 00:00:00 2001 From: Jeffrey Serio Date: Fri, 8 Nov 2024 08:18:39 -0600 Subject: [PATCH] Add header --- list_torrents.py | 1 + 1 file changed, 1 insertion(+) diff --git a/list_torrents.py b/list_torrents.py index 179ecd6..c607806 100755 --- a/list_torrents.py +++ b/list_torrents.py @@ -59,6 +59,7 @@ def print_ssv(): sorted_torrents = sorted( qbt_client.torrents_info(), key=lambda d: d.ratio, reverse=True ) + print("Name Size # of Trackers Ratio Uploaded") for torrent in sorted_torrents: name = torrent.name size = human_bytes(torrent.total_size)