In order to provide interface for upload, download, and exceptions for AWS S3 and GCS.
If you have use cases using both Cloud Storage in one project, You might want to try this package.
I'm also using this on production as well.
pip install cloud-storage
# For Google Cloud Storage
>>> from cloud_storage import GoogleCloudStorage
>>> storage = GoogleCloudStorage()
# For AWS S3
>>> storage = S3CloudStorageBoto3()
# using factory
>>> from cloud_storage import create_storage_client
>>> gcs_storage = create_storage_client('gcs')
>>> s3_storage = create_storage_client('s3')