如何使用 libtorrent rasterbar python 绑定删除完成的 torrent?
How to remove completed torrent using libtorrent rasterbar python binding?
我有一个 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)
谢谢。
您在会话对象上调用 remove_torrent()
,传入要删除的 torrent_handle。
http://libtorrent.org/reference-Core.html#remove_torrent()
在您的脚本中:
ses.remove_torrent(handle)
我有一个 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)
谢谢。
您在会话对象上调用 remove_torrent()
,传入要删除的 torrent_handle。
http://libtorrent.org/reference-Core.html#remove_torrent()
在您的脚本中:
ses.remove_torrent(handle)