以下是单个文件的,不确定你的文件夹是什么意思,可以压缩下再上传(方法一样,调用zip命令)
我的实现方法:调用终端的curl,以下为代码平片段,实现的功能是上传log文件到服务器,供参考:
def post_log(self, post_url, del_source_file=True):
'''
post log to log server
'''
if self.log_path:
command = "curl -s -F log=@{0} {1}".format(self.log_path, post_url)
return_str = os.popen(command).read()
logging.debug(return_str)
# print return_str
if return_str == "success":
if del_source_file:
del_command = "sudo rm {0}".format(self.log_path)
os.system(del_command)
return True
else:
return False
return False
曾经在RP2上安装过archlinux,直接使用archlinux的工具 pacman 就可以安装。 $pacman -Spython3
没用过py,一直是java