0

我有一个 python 脚本,它使用 libtorrent python 绑定下载文件。我只想知道下载完成后如何删除种子。

我在这里发布了我用来制作我的示例脚本(我没有发布我的,因为它太大了,它有数据库部分)。

import libtorrent as lt
import time

ses = lt.session()
params = { 'save_path': '/home/downloads/'}
link = "magnet:?xt=urn:btih:4MR6HU7SIHXAXQQFXFJTNLTYSREDR5EI&tr=http://tracker.vodo.net:6970/announce"
handle = lt.add_magnet_uri(ses, link, params)

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):
    print '%d %% done' % (handle.status().progress*100)
    time.sleep(1)

谢谢。

4

1 回答 1

1

您调用remove_torrent()会话对象,传入 torrent_handle 以删除。

http://libtorrent.org/reference-Core.html#remove_torrent()

在您的脚本中:

ses.remove_torrent(handle)

于 2017-02-07T12:53:12.360 回答