libtorrent,如何在Python中下载.torrent

时间:2014-04-29 21:01:49

标签: python

我需要使用Python中的这个库,但我没有找到好的文档。

如果我有.torrent文件,如何使用此库下载torrent?

Here是使用磁力链接的示例,但我需要一个带有.torrent文件。

感谢。

1 个答案:

答案 0 :(得分:1)

ses = lt.session() 

ses.listen_on(6881, 6891) 

info = lt.torrent_info('ubuntu.torrent')

h = ses.add_torrent({'ti': info, 'save_path': './'}