NDB Search APIを使用するためのものであるため、使用しているかどうかはわかりません。ドキュメントを読みましたが、何かが足りないか、Pythonのスキルが足りないと思います。誰かが検索の使用のこの進歩を確認/改善できますか?
# build the query object
query_options = search.QueryOptions(limit=results_per_page, offset=number_to_offset)
query_object = search.Query(query_string=escaped_param, options=query_options)
# searchResults object
video_search_results = videos.INDEX.search(query_object)
# ScoredDocuments list
video_search_docs = video_search_results.results
# doc_ids
video_ids = [x.doc_id for x in video_search_docs]
# entities
video_entities = [Video.GetById(x) for x in video_ids]