Retrieves one or more entities from the datastore.
google.appengine.api.datastore.Get(keys,**kwargs)
Retrieves the entity or entities with the given key(s) from the datastore
and returns them as fully populated Entity objects, as defined below. If
there is an error, raises a subclass of datastore_errors.Error.
If keys is a single key or string, an Entity will be returned, or
EntityNotFoundError will be raised if no existing entity matches the key.
However, if keys is a list or tuple, a list of entities will be returned
that corresponds to the sequence of keys. It will include entities for keys
that were found and None placeholders for keys that were not found.
Args
keys
Key or string or list of Keys or strings
config
Optional Configuration to use for this request, must be specified
as a keyword argument.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-09-30 UTC."],[[["This function, `google.appengine.api.datastore.Get`, retrieves entities from the datastore using provided keys."],["If a single key is provided, it returns a single `Entity` or raises an `EntityNotFoundError` if the entity does not exist."],["If a list of keys is given, a list of `Entity` objects is returned, including `None` for keys that do not correspond to an existing entity."],["The function accepts an optional configuration `config` parameter, that must be passed as a keyword argument."],["The `keys` argument can be a single key or a list of keys, represented as either keys or strings."]]],[]]