minio 是 [[MinIO]] 的 [[Python]] 客户端库, 安装 Terminal window1pip3 install minio 使用 1from minio import Minio2 3# 创建 Minio 客户端4 5client = Minio("play.min.io",6 access_key="Q3AM3UQ867SPQQA43P2F",7 secret_key="zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG",8) 按目录删除 1from minio import Minio2from minio.deleteobjects import DeleteObject3 4delete_object_list = map(5 lambda x: DeleteObject(x.object_name),6 client.list_objects("my-bucket", "my/prefix/", recursive=True),7)8errors = client.remove_objects("my-bucket", delete_object_list)9for error in errors:10 print("error occured when deleting object", error) 最后循环的时候才会实际执行删除操作。 参考 minio/minio-py MinIO | Python Client API Reference Python Client API Reference — MinIO Baremetal Documentation python 操作 Minio - 是阿凯啊 - 博客园 Python 利用 Minio API 实现文件上传下载、删除等操作_Steven 灬的博客-CSDN 博客_minio python