Google "officially" 支持哪个 Python 云存储 lib/API?

Which Python Cloud Storage lib/API is "officially" supported by Google?

我正在将 Python 服务从 Google App Engine 迁移到 GCE/GKE 并且可以使用一些帮助来识别当前的 production-grade、SLA 方法用于在 Google 云存储中管理 objects。

大多数 Google's storage docs 引用的库是 google.cloud.storage 库。这看起来很简单。然而,截至目前——2017 年 1 月——顶部有一个很大的 header,将库标识为 Beta,并且没有 SLA 或弃用政策。我更愿意使用 SLA 服务。

经过大量搜索,我找到了这个替代方案 JSON API 示例: https://github.com/GoogleCloudPlatform/storage-file-transfer-json-python 但它更麻烦并且不清楚它是否得到更好的支持。

有什么关于 API 使用的建议吗?
或者更好的引导示例?
提前致谢

Google Cloud Storage 服务未处于测试阶段。它有 SLA 和弃用政策。您找到的客户端库 Google Cloud Client Library for Python (google-cloud) 处于测试阶段,这意味着它的未来版本可能会在某些情况下进行 backwards-incompatible 更改。但是,它也是 easiest-to-use 客户端库的当前黄金标准。

我推荐你使用那个。另一个选择是 Google Python API Client Library, which is not in beta, but I found the Google Cloud Client Library for Python 更易于使用,这很重要。