Bibliotecas de Aplicativos Web do Azure para PythonAzure Web Apps libraries for Python
Visão geralOverview
Implantar e dimensionar sites, aplicativos Web, serviços e APIs REST com o Serviço de Aplicativo do Azure.Deploy and scale websites, web applications, services, and REST APIs with Azure App Service.
Para começar a usar o Serviço de Aplicativo do Azure, consulte Criar um aplicativo Web Python no Azure.To get started with Azure App Service, see Create a Python web app in Azure.
API de gerenciamentoManagement API
Implantar, gerenciar e dimensionar elementos hospedados no Serviço de Aplicativo do Azure com a API de gerenciamento.Deploy, manage, and scale elements hosted in the Azure App Service with the management API.
Instalar a biblioteca por meio de PIP.Install the library via pip.
pip install azure-mgmt-web
ExemploExample
Implantar um aplicativo Web de um repositório GitHub no Aplicativo Web do Azure.Deploy a webapp from a GitHub repository into Azure Web App.
siteConfiguration = SiteConfig(
python_version='3.4'
)
# create a web app
web_client.web_apps.create_or_update(
RESOURCE_GROUP_NAME,
WEB_APP_NAME,
Site(
location='eastus',
server_farm_id=SERVICE_PLAN_ID,
site_config=siteConfiguration
)
)
# continuous deployment with GitHub
source_control_async_operation = web_client.web_apps.create_or_update_source_control(
RESOURCE_GROUP_NAME,
WEB_APP_NAME,
SiteSourceControl(
location='GitHub',
repo_url='https://github.com/lisawong19/python-docs-hello-world',
branch='master'
)
)
ExemplosSamples
- Gerenciar sites do Azure com PythonManage Azure websites with python
- Criar um fluxo de trabalho do Aplicativo LógicoCreate a Logic App workflow
Veja a lista completa de exemplos de aplicativos Web.View the complete list of web application samples.