ModuleNotFoundError Exception in Azure Function App using UI Portal
I am using Azure Function and i have created a Function(Blob Storage Trigger
) and write a code to save the output response on Blob Storage itself. But, I am facing ModuleNotFoundError
Exception even I have already uploaded the requirements.txt file on the Azure's Function App Portal. I have also tried to resolve the error by Restarting and Disabling/Enabling the functions app, but still facing the same issue. I think it is not taking or using the requirements.txt
file to install the packages. I am using those libraries in __init__.py
file which are mentioned in requirements.txt
file. In this __init__.py
file, I am sending the uploaded data as input when calling an API and then saving the response of the API on blob storage in a CSV file.
Exception/Error:-
Please help me to resolve this issue.
Thanks and Regards