libtorrent + python基本功能

时间:2013-08-04 15:05:03

标签: python libtorrent

我正在使用libtorrent构建一个python应用程序,但很难找到它的好文档。

如何:

  • 获取总大小或简单的计算方法吗?
  • 获取文件数

我发现了一个

的错误
s = h.status()
s.progress*100

完成时永远不会返回100,而是返回99.87954613 ......

之类的东西

1 个答案:

答案 0 :(得分:1)

要检查你是否已经完成,你可以调用h.is_seed()方法,如果你只是播种,它将返回true。

类似

while not h.is_seed():
   //Keep on downloading

print "all done"