我使用带有 Python 的 libtorrent 搜索以检索对等方的 torrent IP。我尝试使用代码:
import libtorrent as lt
import time
ses = lt.session()
ses.listen_on(6881, 6891)
info = lt.torrent_info('test.torrent')
h = ses.add_torrent({'ti': info, 'save_path': './'})
print 'starting', h.name()
while (not h.is_seed()):
s = h.status()
p = h.get_peer_info()
for i in p:
print i.ip
print "\n\n"
sys.stdout.flush()
time.sleep(1)
print h.name(), 'complete'
它或多或少有效,但我有两个问题:
- 洪流已下载。
- 在我收到一个对等列表之前,循环执行了数十次。
你能帮助我吗?
太感谢了。