使用 python 将种子添加到 deluge 时出错:用户不存在

使用 python 将种子添加到 deluge 时出错:用户不存在

我正在尝试编写一个 Python 脚本,以便在电视节目上线后立即自动下载。我完成了基本工作。但我无法通过 deluge-console 将 torrent 添加到 deluge。

执行添加操作的行是:

os.system("deluge-console add -p /media/hdd/Diziler/"+apiInput["title"].replace(" ", "")+" "+i["torrents"]["480p"]["url"])

它只是以“deluge-console add -p path magnet”格式创建一个字符串并将其推送到系统。但我收到 BadLoginError:用户名不存在。

我事先没有进行任何系统调用,这是一个干净的 deluge 安装。我可以通过 Web UI 添加种子。

提前感谢大家。

编辑:完全错误

[ERROR   ] 13:58:32 client:391 RPCError Message Received!
--------------------------------------------------------------------------------
RPCRequest: daemon.login(, )
--------------------------------------------------------------------------------    
File "/usr/lib/python2.7/dist-packages/deluge/core/rpcserver.py", line 260, in dispatch
ret = component.get("AuthManager").authorize(*args, **kwargs)
File "/usr/lib/python2.7/dist-packages/deluge/core/authmanager.py", line 87, in         authorize
raise BadLoginError("Username does not exist")
BadLoginError: Username does not exist
--------------------------------------------------------------------------------
Failed to connect to localhost:58846 with reason: Username does not exist

答案1

我不确定这里的具体问题,但你可能需要按照以下方式设置用户瘦客户端指南然后使用控制台connect命令:

deluge-console "connect 127.0.0.1:58846 user pass; add -p ..."

相关内容