gpt4 book ai didi

python - 创建新的种子和种子

转载 作者:太空狗 更新时间:2023-10-30 01:01:14 25 4
gpt4 key购买 nike

我正在使用以下代码创建一个新的 torret 并进行分享,但出现了错误,因为我从未播种。

import sys
import time
import libtorrent as lt

#Create torrent
fs = lt.file_storage()
lt.add_files(fs, "./test.txt")
t = lt.create_torrent(fs)
t.add_tracker("udp://tracker.openbittorrent.com:80/announce", 0)
t.set_creator('libtorrent %s' % lt.version)
t.set_comment("Test")
lt.set_piece_hashes(t, ".")
torrent = t.generate()
f = open("mytorrent.torrent", "wb")
f.write(lt.bencode(torrent))
f.close()

#Seed torrent
ses = lt.session()
ses.listen_on(6881, 6891)
h = ses.add_torrent({'ti': lt.torrent_info('mytorrent.torrent'), 'save_path': '.', 'seed_mode': True})
print "Total size: " + str(h.status().total_wanted)
print "Name: " + h.name()
while True:
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)

按顺序测试:

  • 我运行脚本
  • mytorrent.torrent 已正确创建
  • 打印“Total size:”并打印“Name:”即可
  • 按顺序循环打印:

100.00% 完成(向下:0.0 kb/s 向上:0.0 kB/s 对等点:0)播种(8 次)

100.00% 完成(向下:0.0 kb/s 向上:0.0 kB/s 同级:1)播种(11 次)(这种情况总是发生,即使没有运行 torrent 客户端。)

100.00% 完成(向下:0.0 kb/s 向上:0.0 kB/s 对等点:0)播种(无限次)

  • 我用 torrent 客户端运行 torrent 文件,但没有任何反应。

enter image description here

  • 除了尝试使用商业软件下载 torrent如上所述,我也尝试过使用 libtorrent 库下载。始终显示 0 个同行。

具有相同结果的测试变体:

  • 我尝试使用不同的跟踪器:

           trackerList = ['udp://tracker.istole.it:80/announce',
    'udp://tracker.ccc.de:80/announce',
    'http://tracker.torrentbay.to:6969/announce',
    'udp://fr33domtracker.h33t.com:3310/announce',
    'udp://tracker.publicbt.com:80/announce',
    'udp://tracker.openbittorrent.com:80/announce',
    'udp://11.rarbg.com/announce'
    'udp://tracker.istole.it:80/announce']

    for tracker in trackerList:
    t.add_tracker(tracker, 0)
  • 我在执行脚本后立即在客户端中运行了 torrent 文件,之后也运行过。

  • lt.torrent_info('mytorrent.torrent') 替换为 lt.torrent_info(torrent)

附加信息:

  • 为了测试,我使用了两台 Windows 计算机,每台都连接到不同的网络。在每个网络中,所需的端口都是开放的。
  • 运行每个测试的时间至少为 1:20。

其他测试:

  • 在我用来分享的电脑上,我尝试分享一个别人创建的种子文件。我已经运行了标有“#Seed torrent”的代码,它有效:

    100.00% 完成(向下:2.0 kb/s 向上:45.0 kB/s 对等点:13)播种

  • 在我用来下载 torrent 的计算机上,我下载了一个已经由其他人创建的 torrent(带有 libtorrent),它运行正常。

因此我只能认为“#create torrent”这段代码有问题。好像跟踪器不会保存信息集。

最佳答案

问题已通过使用不同的跟踪器而不是列在“trackerList”中得到解决。代码是正确的。

关于python - 创建新的种子和种子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28041730/

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