skip to Main Content

Azure – How to download all blobfiles with a sas url?

Showing all blobs in a (foreign) container is possible with the code below, so I know the provide SAS-url is valid from azure.storage.blob import ContainerClient, BlobServiceClient sas_url = r'[the sas_token]' container = ContainerClient.from_container_url(sas_url) blob_list = container.list_blobs() for blob in blob_list:…

VIEW QUESTION
Back To Top
Search