I want to deploy python app to an existing azure app service from bitbucket pipeline using azure cli, but I found only single way to deploy python app to azure app service (docs)
az webapp up --name <app_name>
This seems not to work for already created azure app service. Also I found that it cannot be used for deployment in to the existing apps in this comment
Since I want to run it from bitbucket local git is not an option to me. I also don't want direct integration with bitbucket via deployment center because I want to trigger the deployment on demand from bitbucket.
For example you can easily deploy .net app with zip deployment by running the following:
az webapp deployment source config-zip --resource-group <resource_group> --name <app_name> --src <zip_name>
Can you do something similar for python?