> **python-appservice-deploy** — chapter 37 of 37 in [microsoft/azure-skills](https://skillsdocs.com/microsoft/azure-skills).
>
> Book (all chapters, one file): https://skillsdocs.com/microsoft/azure-skills.md
> Machine manifest: https://skillsdocs.com/microsoft/azure-skills/.well-known/agent-skills/index.json
> Install the book: `npx skills add microsoft/azure-skills`
> Upstream: https://github.com/microsoft/azure-skills/blob/main/skills/python-appservice-deploy/SKILL.md @ `main`
> Raw bytes, no header: https://raw.githubusercontent.com/microsoft/azure-skills/main/skills/python-appservice-deploy/SKILL.md
> Base for relative paths: https://raw.githubusercontent.com/microsoft/azure-skills/main/skills/python-appservice-deploy/
> Licence: MIT — https://spdx.org/licenses/MIT.html
>
> Bundled files (12), referenced from this skill's directory:
>   - `references/create-app.md` — https://raw.githubusercontent.com/microsoft/azure-skills/main/skills/python-appservice-deploy/references/create-app.md
>   - `references/deploy-azcli.md` — https://raw.githubusercontent.com/microsoft/azure-skills/main/skills/python-appservice-deploy/references/deploy-azcli.md
>   - `references/deploy-azd.md` — https://raw.githubusercontent.com/microsoft/azure-skills/main/skills/python-appservice-deploy/references/deploy-azd.md
>   - `references/detect.md` — https://raw.githubusercontent.com/microsoft/azure-skills/main/skills/python-appservice-deploy/references/detect.md
>   - `references/errors.md` — https://raw.githubusercontent.com/microsoft/azure-skills/main/skills/python-appservice-deploy/references/errors.md
>   - `references/post-deploy-message.md` — https://raw.githubusercontent.com/microsoft/azure-skills/main/skills/python-appservice-deploy/references/post-deploy-message.md
>   - `references/startup-commands.md` — https://raw.githubusercontent.com/microsoft/azure-skills/main/skills/python-appservice-deploy/references/startup-commands.md
>   - `references/transient-retry.md` — https://raw.githubusercontent.com/microsoft/azure-skills/main/skills/python-appservice-deploy/references/transient-retry.md
>   - `scripts/generate-app-name.ps1` — https://raw.githubusercontent.com/microsoft/azure-skills/main/skills/python-appservice-deploy/scripts/generate-app-name.ps1
>   - `scripts/generate-app-name.sh` — https://raw.githubusercontent.com/microsoft/azure-skills/main/skills/python-appservice-deploy/scripts/generate-app-name.sh
>   - `scripts/retry-az-create.ps1` — https://raw.githubusercontent.com/microsoft/azure-skills/main/skills/python-appservice-deploy/scripts/retry-az-create.ps1
>   - `scripts/retry-az-create.sh` — https://raw.githubusercontent.com/microsoft/azure-skills/main/skills/python-appservice-deploy/scripts/retry-az-create.sh
>
> Content © its authors, served unmodified. Takedown: https://github.com/kyleledbetter/skillsdocs/issues/new?labels=takedown&title=Takedown+request

<!-- Verbatim upstream SKILL.md follows, YAML frontmatter included. -->

---
name: python-appservice-deploy
description: "Deploy Python (Flask/Django/FastAPI) code to Azure App Service Linux. WHEN: \"Flask App Service\", \"Django App Service\", \"FastAPI App Service\", \"deploy Python to App Service\". DO NOT USE FOR: Container Apps, Functions, non-Python, Terraform/Bicep/IaC, full infra — use azure-prepare."
license: MIT
metadata:
  author: Microsoft
  version: "1.1.1"
---

# Python on Azure App Service — Code Deploy

Deploys Python (Flask, Django, FastAPI, generic) code to Azure App Service Linux (P0v3, Python 3.14). Creates RG + Plan + Web App if missing. Hand off to `azure-prepare` for VNet, Key Vault, databases, or IaC.

**MCP tools used**: `mcp_azure_mcp_subscription_list`, `mcp_azure_mcp_group_list`, `mcp_azure_mcp_appservice`, `mcp_azure_mcp_azd` (when `azure.yaml` is present).

## Workflow

1. **Resolve context — smart defaults, minimal prompts.** Only the app name is interactive; RG (`<app>-rg`), Plan (`<app>-plan`), region (current `az` default or `eastus2`), subscription are derived. [create-app.md](references/create-app.md) §1.
2. **Detect framework** (advisory, never blocks). [detect.md](references/detect.md).
3. **Choose path** — `azure.yaml` host: appservice → [deploy-azd.md](references/deploy-azd.md); else [deploy-azcli.md](references/deploy-azcli.md).
4. **Ensure RG → Plan (`P0v3 --is-linux`) → Web App (`--runtime "PYTHON:3.14"`)** exist. On transient ARM errors, follow [transient-retry.md](references/transient-retry.md). [create-app.md](references/create-app.md).
5. **Set startup** — Flask/Django: none (Oryx auto-detects). FastAPI: always `python -m uvicorn main:app --host 0.0.0.0`. Other: warn. [startup-commands.md](references/startup-commands.md).
6. **Set `SCM_DO_BUILD_DURING_DEPLOYMENT=true`**.
7. **Deploy** — `azd deploy` or `az webapp deploy --type zip --track-status false`.
8. **STOP. Print the post-deploy message** ([post-deploy-message.md](references/post-deploy-message.md)) and end the turn.

### Hard rules

- ⛔ **NO POST-DEPLOY VERIFICATION** — after deploy returns, do not run `az webapp log tail`, `curl`, `Invoke-WebRequest`, or any health probe. App Service needs 2–3 min to warm; a quiet log or early 5xx is not failure.
- ⛔ **SHELL SAFETY** — for `--runtime` always use `"PYTHON:3.14"` (colon). Never `"PYTHON|3.14"` (pipe is a shell operator).
- ⛔ **NEVER `az webapp up`** — deprecated. Use Step 7 commands.
- ✅ **URL FORMAT** — present endpoints as `https://...` URLs.

## Error Handling

See [errors.md](references/errors.md) for the full symptom → cause → fix matrix. Quick triage: missing plan/app → re-run Step 4; container ping timeout on 8000 → fix startup (Step 5); `ModuleNotFoundError` after deploy → ensure Step 6 ran, redeploy.
