我有一个功能:
def latest_file_to_backup():
# returns latest file from a directory
# called variable $latest_file
我有另一个函数,我试图使它执行一个API调用上传文件:
def auth_to_pcloud(latest_file):
from pcloud import PyCloud
# auth details here - properly working
#pc.uploadfile(files=['/home/pi/<<USE:$latest_file here>>'], path='/a/remote/path/here')
我无法找到一种简单的方法将$latest_file
的值传递给auth_to_pcloud()
。
3条答案
按热度按时间bvk5enib1#
你为什么不试试简单的方法?将第一个方法中的值放入变量中,并将其传递给upload方法。
o2rvlv0m2#
你可以使用f字符串:
lokaqttq3#
也许这能解决你的问题
1.返回你的文件作为二进制
1.将二进制数据写入临时文件
1.将临时文件传递给第二个函数