1.安装对应的库 minio
pip install minio
2.上传文件
我的文件路径是:E:\\11aisource\\168.mp4
需要上传的路径是 air-video 这个bucket下的shuping文件夹
from minio import Minio# 本地搭建的地址,web端口默认9001,api端口默认9000endpoint = "192.168.3.9000"# access_key需要自己创建access_key = "xxxxxxx"# secret_key需要自己创建 secret_key = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"# 桶名,需要自己创建桶bucket_name = 'air-video'# 本地文件路径file = 'E:\\11aisource\\168.mp4'# 桶内存放路径,文件名可自定义防止重复object_name = 'shuping/168.mp4'# 创建minio对象client = Minio(endpoint, access_key=access_key, secret_key=secret_key, secure=False)# 上传文件with open(file, 'rb') as f:client.put_object(bucket_name, object_name, f, os.path.getsize(file))# 获取七天有效的文件链接res = client.get_presigned_url("GET", bucket_name, object_name, expires=timedelta(days=7))# res就是获取文件的urlprint(res)