我在 Debian 服务器中安装了软件包rclone并且它工作正常。
rclone ls mygdrive:mypath
现在,我想在我的python脚本中使用rclone ,所以我安装了python-rclone
pip install python-rclone
但是如何配置它以使用主配置文件/root/.rclone.conf
或任何其他解决方案?
尝试这个。
import rclone
cfg_path = r'/root/.rclone.conf'
with open(cfg_path) as f:
cfg = f.read()
result = rclone.with_config(cfg).listremotes()
with_config
期望cfg
为字符串。看看这里的例子 - https://github.com/ddragosd/python-rclone#usage