An Azure service that provides an event-driven serverless compute platform.
@N K B Thanks for reaching here! If understood right you have deployed Python function app and facing module-related errors. These errors typically result in the following Azure Functions error message:
"Exception: ModuleNotFoundError: No module named 'module_name'."
This error occurs when a Python function app fails to load a Python module. The root cause for this error is one of the following issues:
- The package can't be found
- The package isn't resolved with proper Linux wheel
- The package is incompatible with the Python interpreter version
- The package conflicts with other packages
- The package supports only Windows and macOS platforms
Please let us know if further query or issue remains.