Closed priyaananthasankar closed 6 years ago
Please refer to the documentation on how to generate a blob URL.
and what about in v12?
Answer:
url = BlobClient().url
How to get there from a container:
dicty = {}
container_client = self.container_client
for blob_properties in container_client.walk_blobs():
blob_client = container_client.get_blob_client(blob_properties)
dicty[blob_client.blob_name] = blob_client.url
return dicty
Can url be constructed within the BlobProperties of the Azure Blob object?