We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't download torrents with many large files, also is there a way to run locally so that I'm not bound by colab's restrictions?
IndexError Traceback (most recent call last) in () 64 'storage_mode': lt.storage_mode_t(2), 65 } ---> 66 download_torrent() 67 68 print('\nALL DONE!')
in download_torrent() 29 state_str = ['queued', 'checking', 'downloading metadata', 30 'downloading', 'finished', 'seeding', 'allocating'] ---> 31 print('%.2f%% complete (down: %.1f kb/s up: %.1f kB/s peers: %d) %s ' % (s.progress * 100, s.download_rate / 1000, s.upload_rate / 1000, s.num_peers, state_str[s.state])) 32 time.sleep(5) 33
IndexError: list index out of range
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Can't download torrents with many large files, also is there a way to run locally so that I'm not bound by colab's restrictions?
IndexError Traceback (most recent call last)
in ()
64 'storage_mode': lt.storage_mode_t(2),
65 }
---> 66 download_torrent()
67
68 print('\nALL DONE!')
in download_torrent()
29 state_str = ['queued', 'checking', 'downloading metadata',
30 'downloading', 'finished', 'seeding', 'allocating']
---> 31 print('%.2f%% complete (down: %.1f kb/s up: %.1f kB/s peers: %d) %s ' % (s.progress * 100, s.download_rate / 1000, s.upload_rate / 1000, s.num_peers, state_str[s.state]))
32 time.sleep(5)
33
IndexError: list index out of range
The text was updated successfully, but these errors were encountered: