有没有办法拉取python libtorrent模块的完整下载路径?

Is there a way to pull the complete download path of the python libtorrent module?

我试过使用

myvar = handle.save_path

但是当我尝试调用变量时,我得到 <bound method save_path of <libtorrent.torrent_handle object at 0x7f906d3e38d0>> 怎么调用torrent的完整保存路径?

假设当你说“拉”和“调用”时你的意思是“获取”(即你有一个 torrent_handle 并且你想知道它的保存路径是什么);您可以通过调用 handle.status() 请求 torrent_status 并且种子状态对象有一个 save_path 成员。

已记录 here and here