I have a azure function created in Python 3.9
and I will be executing the function using Http Trigger
via Azure data factory
.
Now, in my python azure function, I want to access storage container from my storage account and read the files from the same container, in order to perform few data manipulations on the file data.
How can I achieve this ?
I found one similar kind of question here : Read data from Azure blob storage in Azure Function in python
But, in the solution of this question author have explicitly accessed a specific file but in my case I want to access all the files of container one by one and read their data.
This would work just like accessing the files from a directory of local machine and one by one reading contents of each accessed files.