树莓派 python 如何将本地文件上传到指定的服务器页面上

2024-11-07 21:32:07
推荐回答(3个)
回答1:

以下是单个文件的,不确定你的文件夹是什么意思,可以压缩下再上传(方法一样,调用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

回答2:

曾经在RP2上安装过archlinux,直接使用archlinux的工具 pacman 就可以安装。 $pacman -Spython3

回答3:

没用过py,一直是java