云函数python访问数据存储区

时间:2018-08-29 12:58:10

标签: google-cloud-datastore google-cloud-functions

我正在寻找有关如何使用云功能(python)访问数据存储的教程或文档。

但是,似乎只有nodejs教程。 https://github.com/GoogleCloudPlatform/nodejs-docs-samples/tree/master/functions/datastore 有人可以帮我吗? 谢谢

1 个答案:

答案 0 :(得分:0)

无需特殊设置即可从python中的云功能访问数据存储。

您只需要将google-cloud-datastore添加到requirements.txt中,并照常使用数据存储区客户端。

requirements.txt

# Function dependencies, for example:
# package>=version
google-cloud-datastore==1.8.0

main.py

from google.cloud import datastore
datastore_client = datastore.Client()

def foo(request):
    """Responds to any HTTP request.
    Args:
        request (flask.Request): HTTP request object.
    Returns:
        The response text or any set of values...
    """
    query = datastore_client.query(kind=<KindName>)
    data = query.fetch()

    for e in data:
        print(e)

了解更多: