0

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

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()

如何仅通过使用磁力链接(如代码中所述)来创建看起来像实际种子的种子?
(我正在使用带有 libtorrent 0.16.18-1 的 Ubuntu 15.04 x64)

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

4

1 回答 1

1

您没有设置片段散列和(file_storage对象的)片段大小。请参阅文档

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

torfile = lt.create_torrent(h.get_torrent_info())
f = open("torrentfile.torrent", "wb")
f.write(lt.bencode(torfile.generate()))
f.close()
于 2015-11-28T01:39:53.873 回答