You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)