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
print(results.total_results) # Total results available for searching within TozStore. If this exceeds 10k narrow your search, as we do not return results past than 10k.
if results.total_results > 0:
# Print the the first set of search results
for r in results:
print(r.to_json())
while results.next_token != 0: # If there are more results to page through grab the next page