This is a basic Azure Function App for Python with a "Hello World" HTTP trigger.
requirements.txt- Python dependencieshost.json- Global configuration optionslocal.settings.json- Local development settingsHelloWorldFunction/- Contains the HTTP trigger function
- Install the Azure Functions Core Tools and Python dependencies:
pip install -r requirements.txt
- Start the function app:
func start
- Test the endpoint:
uv venv .venv
source .venv/bin/activate
uv pip install -r requirements.txt
nvm use --lts
npm install -g azure-functions-core-tools@4 --unsafe-perm true
func start
- Make sure you have the Azure Functions Core Tools installed.
- This project uses the v2 runtime and Python worker.