1

我正在尝试生成一个 torrent 并使用 python libtorrent 播种它,它会生成 torrent,但不会播种它。

我在 Ubuntu 14.04 上使用 libtorrent-0.16.18 和 Python3.4

import sys
import time
import libtorrent as lt

fs = lt.file_storage()
lt.add_files(fs, "./test.txt")
t = lt.create_torrent(fs)
t.add_tracker("udp://tracker.publicbt.com:80")
t.set_creator("My Torrent")
t.set_comment("Test")
lt.set_piece_hashes(t, ".")
torrent = t.generate()

f = open("mytorrent.torrent", "wb")
f.write(lt.bencode(torrent))
f.close()

ses = lt.session()
ses.listen_on(6881, 6891)
h = ses.add_torrent({'ti': lt.torrent_info(torrent), 'save_path': '/tmp', 'seed_mode': True})

while h.is_seed():
    s = h.status()
    state_str = ['queued', 'checking', 'downloading metadata', \
      'downloading', 'finished', 'seeding', 'allocating', 'checking fastresume']

    print('\r%.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]))
    sys.stdout.flush()

    time.sleep(1)
4

1 回答 1

1

可能是因为您从当前工作目录 (".") 中的文件创建 torrent,但是当您将 torrent 添加到会话时,您指定/tmp为下载目录。估计test.txt是不存在的/tmp。如果将 save_path 设置为“.” 相反,它可能会播种。

于 2014-11-24T07:48:00.560 回答