How can i reads a text blob in Azure without downloading it? I am able to download the file and then read it but, i prefer it to be read without downloading.
print("\nList blobs in the container")
generator = block_blob_service.list_blobs(container_name)
for blob1 in generator:
print("\t Blob name: " + blob.name)
Is there any operation in 'blob1' object, which would allow me to read the text file directly.(like blob1.read or blob1.text or something like this)?