Closed
Description
The docs say that you should be able to access the search object in the response, but after inspecting the code and trying in code, I get an attribute error. I believe it's only available at ._search
. Would be nice if this was a public method so we can correlate the response with the query.
responses = ms.execute()
for response in responses:
print("Results for query %r." % response.search.query)
for hit in response:
print(hit.title)