我在Debian服务器中安装了软件包 rclone ,并且可以正常工作。
rclone ls mygdrive:mypath
现在,我想在我的 python 脚本中使用 rclone ,所以我安装了 python-rclone
pip安装python-rclone
但是如何配置它以使用主配置文件 <div class="leftcolumn">
<div class="new_post_form">
<form METHOD="POST" class="new_post" id="new_post">
{% csrf_token %}
{{ newPostForm }}
<button type="submit">Publish</button>
</form>
</div>
<div id="posts">
{% for post in posts %}
<div class="container">
<a class="user" href="#">{{ post.author }}</a>, {{ post.date_posted }}
<img src="{{ post.author.profile.image.url }}" alt="{{ post.author }}" style="width:100%;">
<p>{{ post.content }}</p>
{% for comment in post.comments.all %}
<div class="comment">
<p>{{ comment.content }}</p>
<form METHOD="POST" class="new_comment" id="new_commentt">
{% csrf_token %}
{{ newCommentForm }}
</form>
</div>
{% endfor %}
</div>
{% endfor %}
</div>
</div>
或任何其他解决方案?
答案 0 :(得分:0)
尝试一下。
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
作为字符串。在这里查看示例-3v4l