如何从Azure python SDK创建Azure函数?

时间:2018-06-21 15:11:43

标签: azure azure-web-sites azure-functions azure-sdk-python

关于如何使用Azure Python SDK创建Azure函数的任何示例吗?

https://docs.microsoft.com/en-us/python/api/azure.mgmt.web.models.Site?view=azure-python是正确的参考吗?

1 个答案:

答案 0 :(得分:1)

明确的例子,据我所知没有。但这绝对是您使用的azure-mgmt-web软件包。您需要创建一个AppPlan(或serverfarm),然后创建一个类型为“ functionapp”的webapp。

最接近示例的可能是看Azure CLI(用Python编写)在做什么: https://github.com/Azure/azure-cli/blob/e0c49d6fd4778b8e0c8884a54bca1716a916763e/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/custom.py#L1613-L1684