从 Android 客户端调用 Azure VM 中的 python 函数 运行
Calling a python function running in Azure VM from an Android Client
我在 Azure VM 中有一个 python 程序 运行,我需要在 android APK(android客户端),这有办法做到这一点,如果是请帮助
你要找的可能是Azure Functions。您可以在 python 上的 azure 中创建一个 HTTP 触发函数,调用它并完成工作。它将在消费计划中,付费使用部分免费(执行次数,预计执行时间(ms),内存大小)。
在这里查看官方文档:Azure Functions documentation
我在 Azure VM 中有一个 python 程序 运行,我需要在 android APK(android客户端),这有办法做到这一点,如果是请帮助
你要找的可能是Azure Functions。您可以在 python 上的 azure 中创建一个 HTTP 触发函数,调用它并完成工作。它将在消费计划中,付费使用部分免费(执行次数,预计执行时间(ms),内存大小)。
在这里查看官方文档:Azure Functions documentation