1

您好,我是云计算和 python 的绝对初学者。我想开始使用 Python 为 Azure 开发一个密码管理器应用程序。请你能给我一些工具来开始我的项目吗?(哪些应用程序 - 要使用的框架)

4

1 回答 1

2

Python 应用程序通常在 Windows Azure 中运行,因为它们可以在其他任何地方运行,因为它们将在 Web 或 Worker 角色(基本上是 Windows Server 2008 R2 或 SP2 VM)或虚拟机(Windows Server 或 Linux)中运行您管理的图像)。您只需要为您的应用程序提供 python sdk 和支持库。

话虽如此:Windows Azure 有一个 python sdk 来与 Windows Azure 的服务交互(今天这包括服务总线和存储,Windows Azure 服务的一个子集)。安装 Windows Azure sdk 时,您还将安装 python 2.7。您可以在 Python 的 Python 开发门户中获取安装程序,此处为。在此门户中,您还可以找到一些在 Windows Azure 中使用 python 的教程。

如果您想查看适用于 Python 的 Windows Azure SDK 的源代码,可以在 github 上找到它,这里是。

于 2012-07-02T11:31:32.423 回答