3
我曾嘗試這樣的代碼:如何使用python-libtorrent獲取torrent的對等列表?
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()
print lt.peer_info().ip
sys.stdout.flush()
time.sleep(15)
print h.name(), 'complete'
,它打印此:
starting test.avi
('0.0.0.0', 0)
('0.0.0.0', 0)
.
.
.
因此而不是給它給了我一個同行列表zeros.Am我做錯了什麼?
謝謝你。這就是我想要的。 – vkefallinos