(self)
| 138 | """Wrapper around Alibaba Cloud OSS for uploads with progress tracking.""" |
| 139 | |
| 140 | def __init__(self): |
| 141 | self.bucket = None |
| 142 | self.public_url = "" |
| 143 | self.images_dir = "" |
| 144 | self.releases_dir = "" |
| 145 | self._init_error = None |
| 146 | self._try_init() |
| 147 | |
| 148 | def _try_init(self): |
| 149 | if load_dotenv is None: |