Python如何从磁铁链接下载torrent内容?

时间:2019-07-08 21:39:51

标签: python file download torrent

我想下载torrent的内容,无论它是mp4文件夹,我如何通过python下载它?

我尝试过

from qbittorrent import Client
qb = Client('http://127.0.0.1:8080/')
qb.login('admin', 'adminadmin')
qb.download_from_link(magnet_link)

它可以工作,但是我希望能够更改从种子文件中提取的文件夹或mp4的名称

尝试做

r = requests.get(magnet_link, headers=headers)
with open("myTorrent.torrent") as f:
    f.write(r.text)

但是没有运气,我真的希望能够命名从种子文件中提取的主文件

0 个答案:

没有答案