Python libtorrent 使用磁铁创建空 torrent link

Python libtorrent creates empty torrent with magnet link

我试图下载一个 torrent(特定的 .torrent 文件)给定 只有 一个 info_hash。我知道之前在这里讨论过这个问题,我什至相应地搜索并修改了我的代码。结果如下:

import libtorrent as lt
import time
import sys
import bencode

ses = lt.session()
ses.listen_on(6881, 6891)
params = {
    'save_path': '.',
    'storage_mode': lt.storage_mode_t(2),
    'paused': False,
    'auto_managed': True,
    'duplicate_is_error': True
    }

info_hash = "2B3AF3B4977EB5485D39F96FE414729530F48386"
link = "magnet:?xt=urn:btih:" + info_hash

h = lt.add_magnet_uri(ses, link, params)

ses.add_dht_router("router.utorrent.com", 6881)
ses.add_dht_router("router.bittorrent.com", 6881)
ses.add_dht_router("dht.transmissionbt.com", 6881)
ses.start_dht()

while (not h.has_metadata()):
    time.sleep(1)

torinfo = h.get_torrent_info()

fs = lt.file_storage()
for f in torinfo.files():
  fs.add_file(f)
torfile = lt.create_torrent(fs)
torfile.set_comment(torinfo.comment())
torfile.set_creator(torinfo.creator())

f = open("torrentfile.torrent", "wb")
f.write(lt.bencode(torfile.generate()))
f.close()

这会生成一个无法通过传输加载的 torrent 文件。它缺少跟踪器和真实片段(创建 \x00 而不是实际片段)。
以下行 保存碎片,但仍然缺少跟踪器并且无法通过传输打开:

f = open("torrentfile.torrent", "wb")
f.write(lt.bencode(torinfo.metadata()))
f.close()

如何仅使用磁铁 link(如代码中所述)创建一个看起来像实际 torrent 的 torrent?
(我正在使用 Ubuntu 15.04 x64 和 libtorrent 0.16.18-1)

我没有非法下载 torrent 后面的文件 - 但是,我有 torrent 可以与我的脚本下载的 torrent 进行比较。

您没有设置片段哈希和片段大小(file_storage 对象)。见 documentation.

但是,创建 .torrent 文件的更简单、更可靠的方法是使用直接采用 torrent_info 对象的 create_torrent 构造函数。即:

torfile = lt.create_torrent(h.get_torrent_info())
f = open("torrentfile.torrent", "wb")
f.write(lt.bencode(torfile.generate()))
f.close()