I need to query a kind K in my project P in python where the kinds can be seen on https://ah-builtin-python-bundle-dot-P.appspot.com/
from google.cloud import datastore
client = datastore.client.Client(project='P')
query = client.query(kind='K')
print list(query.fetch(1))
running this does not return anything, it just gets stuck on the last line
fetchislimit? I have the exact same code and it works properly... (except I'm using Flask so I'm not printing but returning a response)