标签: python libtorrent
有没有办法在libtorrent library表单Python中更改下载速度?
答案 0 :(得分:1)
您无法“设置”下载速度,但可以限制它。这可以通过使用来完成 torrent_handle :: set_download_limit(int limit)
在python中:
h = ses.add_torrent(info, "tmp") h.set_download_limit(2048)
将下载速度限制为2kB / s