gpt4 book ai didi

Python Libtorrent 没有种子

转载 作者:太空宇宙 更新时间:2023-11-03 18:04:41 28 4
gpt4 key购买 nike

我正在尝试生成一个 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)

最佳答案

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

关于Python Libtorrent 没有种子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27090466/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com