config.py 857 B

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