如何设置" keys_only"使用googledatastore包

时间:2018-02-26 05:03:34

标签: python google-cloud-datastore google-cloud-dataflow

我想在GoogleCloudDataFlow上使用googledatastore包从数据存储中读取。

但是,我找不到" keys_only"查询googledatastore文档。 http://googledatastore.readthedocs.io/en/latest/googledatastore.html

如何设置" keys_only"在googledatastore上?

1 个答案:

答案 0 :(得分:2)

使用投影查询

  from googledatastore import helper
  helper.add_projection(
    query,
    '__key__')