Libtorrent,Python,如何设置下载速度

时间:2014-04-30 13:24:31

标签: python libtorrent

有没有办法在libtorrent library表单Python中更改下载速度?

1 个答案:

答案 0 :(得分:1)

您无法“设置”下载速度,但可以限制它。这可以通过使用
来完成 torrent_handle :: set_download_limit(int limit)

在python中:

h = ses.add_torrent(info, "tmp")
h.set_download_limit(2048)

将下载速度限制为2kB / s