Azure blog storage is an equivalent of S3 but on the Azure cloud: https://learn.microsoft.com/en-us/azure/storage/blobs/storage-quickstart-blobs-python?tabs=managed-identity%2Croles-azure-portal%2Csign-in-azure-cli&pivots=blob-storage-quickstart-scratch
Their documentation suggests using their own SDK, for example:
from azure.storage.blob import BlobServiceClient, BlobClient, ContainerClient
So to add support for Azure blob storage in jupyter-drives, it looks like the current use of boto3 may need to be refactored. That would mean using a more specific SDK depending on the provider to use.
Azure blog storage is an equivalent of S3 but on the Azure cloud: https://learn.microsoft.com/en-us/azure/storage/blobs/storage-quickstart-blobs-python?tabs=managed-identity%2Croles-azure-portal%2Csign-in-azure-cli&pivots=blob-storage-quickstart-scratch
Their documentation suggests using their own SDK, for example:
So to add support for Azure blob storage in
jupyter-drives, it looks like the current use ofboto3may need to be refactored. That would mean using a more specific SDK depending on the provider to use.