使用 libtorrent-python 下载 Torrent

Posted

技术标签:

【中文标题】使用 libtorrent-python 下载 Torrent【英文标题】:Downloading a Torrent with libtorrent-python 【发布时间】:2011-07-02 11:11:10 【问题描述】:

我有以下 python 代码:

import libtorrent as lt
import time

ses = lt.session()
ses.listen_on(6881, 6891)
params = 
    'save_path': '/home/downloads/',
    'storage_mode': lt.storage_mode_t(2),
    'paused': False,
    'auto_managed': True,
    'duplicate_is_error': True
link = "magnet:?xt=urn:btih:4MR6HU7SIHXAXQQFXFJTNLTYSREDR5EI&tr=http://tracker.vodo.net:6970/announce"
handle = lt.add_magnet_uri(ses, link, params)
ses.start_dht()

print 'downloading metadata...'
while (not handle.has_metadata()):
    time.sleep(1)
print 'got metadata, starting torrent download...'
while (handle.status().state != lt.torrent_status.seeding):
    s = handle.status()
    state_str = ['queued', 'checking', 'downloading metadata', \
                'downloading', 'finished', 'seeding', 'allocating']
    print '%.2f%% complete (down: %.1f kb/s up: %.1f kB/s peers: %d) %s %.3' % \
                (s.progress * 100, s.download_rate / 1000, s.upload_rate / 1000, \
                s.num_peers, state_str[s.state], s.total_download/1000000)
    time.sleep(5)

这似乎工作正常,但随后减慢到不到一个字节/秒:

$ python test.py 
downloading metadata...
got metadata, starting torrent download...
0.00% complete (down: 195.0 kb/s up: 8.0 kB/s peers: 28) checking 3.069
0.00% complete (down: 133.0 kb/s up: 5.0 kB/s peers: 28) checking 3.342
0.00% complete (down: 29.0 kb/s up: 1.0 kB/s peers: 28) checking 3.359
0.00% complete (down: 5.0 kb/s up: 0.0 kB/s peers: 28) checking 3.398
0.00% complete (down: 4.0 kb/s up: 0.0 kB/s peers: 28) checking 3.401
0.00% complete (down: 0.0 kb/s up: 0.0 kB/s peers: 28) checking 3.405
0.00% complete (down: 0.0 kb/s up: 0.0 kB/s peers: 28) checking 3.408
0.00% complete (down: 0.0 kb/s up: 0.0 kB/s peers: 28) checking 3.412

它会变慢并且永远不会完成。知道为什么会这样吗?

【问题讨论】:

您选择的 torrent 客户端可以很好地与这个特定的 torrent 配合使用吗? 我尝试了几个磁力 URI,这只是在 ***.com/questions/6051877/… 中找到的那个,我尝试的所有种子都有足够多的对等点,并且使用另一个客户端以 200+ kb/s 的速度下载。 你能帮帮我吗?我使用与您相同的代码,但在我的情况下它卡在循环while (not h.has_metadata()): 中。有吗? 怎么设置,ses.listen_on(6881, 6891),6881和6891是怎么得到的 【参考方案1】:

这个问题原来是微不足道的。 save_path 不存在,因此 libtorrent 库只要不必刷新缓存就可以下载,但是一旦尝试写入文件,它就会失败并且无法继续下载,因此速度变慢并最终停止。添加现有路径后,它就可以正常工作了。

【讨论】:

【参考方案2】:

您看到的下载速率很可能来自实际的元数据下载(即从您的同行下载的 .torrent 文件)。下载 .torrent 文件后,它就会启动。在这种情况下。

您似乎已经拥有一些属于此种子的文件,因此下载已停止并正在检查这些文件。即该片段被读入、散列并与 .torrent 文件中的片段散列进行比较。

最后一列显示在与哈希匹配的文件中找到的兆字节数,最后一列显示种子的状态,即检查。

如果您等到检查完成,下载应该会继续。

更好的是,如果您在退出时保存简历数据,并在启动时重新加载,您不必每次都重新检查。

【讨论】:

以上是关于使用 libtorrent-python 下载 Torrent的主要内容,如果未能解决你的问题,请参考以下文章

我无法通过 libtorrent-python 接收磁链接元数据,而无需指定跟踪器的 udp 协议

Libtorrent python SSL 绑定

Autodesk T-Splines 4.0 For Rhino下载

[python爬虫实例]批量下载荣耀皮肤

[python爬虫实例]批量下载荣耀皮肤

联想笋尖S90(S90-t S90-u)解锁BootLoader