print("Download finished")
import libtorrent as lt
while (not handle.is_seed()): s = handle.status() state_str = ['queued', 'checking', 'downloading metadata', \ 'downloading', 'finished', 'seeding', 'allocating', 'checking fastresume'] print(f"Download progress: {s.progress*100:.2f}%") time.sleep(1)
print("Download finished")
import libtorrent as lt
while (not handle.is_seed()): s = handle.status() state_str = ['queued', 'checking', 'downloading metadata', \ 'downloading', 'finished', 'seeding', 'allocating', 'checking fastresume'] print(f"Download progress: {s.progress*100:.2f}%") time.sleep(1)