config.py 768 B

12345678910111213141516171819202122232425
  1. import json
  2. from minio import Minio
  3. # 从配置文件读取设置
  4. class MinioOperate:
  5. def __init__(self):
  6. with open(r"config/config.json", "r") as f:
  7. self.__config = json.load(f)
  8. self.minio_client = None
  9. def link_minio(self):
  10. self.minio_client = Minio(**self.__config["minio"])
  11. return self.minio_client
  12. def create_bucket(self):
  13. for bucket_name in self.__config['buckets']:
  14. if not self.minio_client.bucket_exists(bucket_name):
  15. try:
  16. self.minio_client.make_bucket(bucket_name)
  17. except Exception as e:
  18. print(f"Bucket creation failed: {e}")
  19. else:
  20. print(f"Bucket {bucket_name} already exists")