blob-upload-1_4.py 266 B

12345678
  1. def upload(self):
  2. self.checks()
  3. logging.info(f"Uploading to container {self.destination} with method = '{self.method}'.")
  4. if self.method == "batch":
  5. return self.upload_batch()
  6. else:
  7. return self.upload_single()