从磁铁uri仅下载.torrent文件。不确定我实际下载了什么

时间:2019-03-17 22:13:12

标签: python python-2.7 bittorrent libtorrent

给出一个磁性文件,我试图使用libtorrent的Python绑定获取一个.torrent文件。

#!/usr/bin/env python
import libtorrent as lt
import time
import sys
import random

ses = lt.session()
r = random.randrange(10000, 49000)
ses.listen_on(r, r+50)
print("Listening on ports %s - %s." % (r, r+50))
params = {
    'save_path': '.',
    'storage_mode': lt.storage_mode_t(2),
    'paused': False,
    'auto_managed': True,
    'duplicate_is_error': True,
    'file_priorities': [0]*5
    }

link = "magnet:?xt=urn:btih:209c8226b299b308beaf2b9cd3fb49212dbd13ec&dn=Tears+of+Steel&tr=udp%3A%2F%2Fexplodie.org%3A6969&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Ftracker.empire-js.us%3A1337&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337&tr=wss%3A%2F%2Ftracker.btorrent.xyz&tr=wss%3A%2F%2Ftracker.fastcast.nz&tr=wss%3A%2F%2Ftracker.openwebtorrent.com&ws=https%3A%2F%2Fwebtorrent.io%2Ftorrents%2F&xs=https%3A%2F%2Fwebtorrent.io%2Ftorrents%2Ftears-of-steel.torrent"

h = lt.add_magnet_uri(ses, link, params)
ses.add_extension('ut_metadata')
ses.add_extension('ut_pex')
ses.add_extension('metadata_transfer')
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.add_dht_router("dht.aelitis.com", 6881)
ses.start_dht()
ses.start_lsd()
ses.start_upnp()
ses.start_natpmp()

while (not h.has_metadata()):
    time.sleep(1)
    status = ses.status()
    print("Seeking metadata for torrent (%s DHT nodes online)." %  status.dht_nodes)

torinfo = h.get_torrent_info()

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

几分钟后,传输完成,我cat进行了结果:

[me@localhost torrent]$ cat torrentfile.torrent 
d8:announce23:udp://explodie.org:696913:announce-listll23:udp://explodie.org:696934:udp://tracker.coppersurfer.tk:696931:udp://tracker.empire-js.us:133740:udp://tracker.leechers-paradise.org:696933:udp://tracker.opentrackr.org:133726:wss://tracker.btorrent.xyz25:wss://tracker.fastcast.nz32:wss://tracker.openwebtorrent.comee13:creation datei1552857262e4:info0:e[me@localhost torrent]$ 

预期输出是一个二进制.torrent文件,其中包含所有文件部分和哈希等。一些(可能)相关的系统信息:

[me@localhost torrent]$ python --version
Python 2.7.14
[me@localhost torrent]$ python -c "import libtorrent; print libtorrent.version"
1.0.10.0
[me@localhost torrent]$ uname -a
Linux ip-172-31-53-167.ec2.internal 4.14.104-95.84.amzn2.x86_64 #1 SMP Sat Mar 2 00:40:20 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux

任何建议将不胜感激。我使用的示例代码实际上与声称适用于其他代码段的代码段相同。谢谢。

1 个答案:

答案 0 :(得分:1)

这看起来像是1.0.10中引入的ABI问题。

如果您查看1.0.10的changelog,它将引入一种新类型的编码条目(preformatted)。这是为了在种子文件中保留无效的密钥顺序(以便对其进行重新编码并产生相同的信息哈希)。

不幸的是,这破坏了先前的1.0.x版本的ABI。我在RC_1_0分支中fixed,在1.0.12中发布,但显然从未发布过。

简而言之,看起来您的python绑定库是使用1.0.10之前的版本构建的,但是您的libtorrent库是1.0.10或更高版本。

只要python绑定和主库来自同一版本的libtorrent,就应该不错。