azure-function-app

Function App custom dependencies, how to install and reference python packages locally?

Function App custom dependencies, how to install and reference python packages locally? Question: I am attempting to deploy a python Function App on Azure, however, due to the required configuration, all the outbound traffic must route internally. This means pip fails during the build as it cannot reach PyPI. Locally I use our own artifactory …

Total answers: 1

"ModuleNotFoundError" with Azure function Apps using Python

"ModuleNotFoundError" with Azure function Apps using Python Question: I keep getting the error ModuleNotFoundError: No module named ‘azure’ for line 4 where I import azure.functions as func Below is the code for my init file that has been designed using this tutorial import logging import azure.functions as func def main(req: func.HttpRequest) -> func.HttpResponse: logging.info(‘Python HTTP …

Total answers: 2