![]() |
App Engine Python SDK
v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
|
Public Member Functions | |
def | __init__ |
def | __iter__ |
def | results |
def | __repr__ |
Represents the result of executing a get request. For example, the following code shows how a response could be used to determine which documents were successfully removed or not. response = index.get_range() for document in response: print "document ", document
def google.appengine.api.search.search.GetResponse.__init__ | ( | self, | |
results = None |
|||
) |
Initializer. Args: results: The results returned from an index ordered by Id. Raises: TypeError: If any of the parameters have an invalid type, or an unknown attribute is passed. ValueError: If any of the parameters have an invalid value.
def google.appengine.api.search.search.GetResponse.results | ( | self | ) |
Returns a list of results ordered by Id from the index.