Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Prepare Azure environments for new workloads—subscriptions, networking, identity, and landing zones
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/services/functions/templates/base/eval/python.md
1# Base HTTP Template - Python Eval23## Test Summary45| Test | Status | Notes |6|------|--------|-------|7| Code Syntax | ✅ PASS | AST parse successful |8| Function Routes | ✅ PASS | /api/hello, /api/health defined |9| v2 Model | ✅ PASS | Uses `func.FunctionApp()` decorator model |10| Health Endpoint | ✅ PASS | Anonymous auth, JSON response |1112## Code Validation1314```python15# Validated syntax and structure16import ast17with open('function_app.py') as f:18ast.parse(f.read())19# ✅ Code syntax valid20```2122## Test Date23242025-02-182526## Template Source2728Generated from `functions_template_get(language: "python", template: "http-trigger-python-azd")` MCP tool output2930## Verdict3132**PASS** - Base HTTP template code validates correctly for Python v2 model.33