using azure python function, I am able to read the full file at once. (Read data from Azure blob storage in Azure Function in python)
blob_client = BlobClient.from_blob_url("your Blob SAS URL here")
download_stream = blob_client.download_blob()
logging.info('=========below is content of test1')
logging.info(download_stream.readall())
logging.info('=========above is content of test1')
Is there a way you can read the blob file line by line? Thank you!