0

我在 Debian 服务器中安装了软件包rclone并且它工作正常。

rclone ls mygdrive:mypath

现在,我想在我的python脚本中使用rclone ,所以我安装了python-rclone

pip install python-rclone

但是如何配置它以使用主配置文件/root/.rclone.conf或任何其他解决方案?

4

1 回答 1

3

尝试这个。

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

于 2019-09-08T14:40:38.530 回答