config.py 861 B

12345678910111213141516171819202122232425262728293031
  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):
  19. for bucket_name in self.__config['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")