Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
トレント内のファイルの合計サイズを取得するにはどうすればよいですか?
トレント内のファイル数と各ファイルのサイズを取得する方法はありますか?
h = ses.add_torrent(params) s = h.status() while (not h.is_seed()): print s.total_wanted # prints total size wanted after meta data is obtained, before that 0 is printed.