def show_search_term_dialog(self):
"""
Asks the user for a term to query the netflix search for
:returns: str - Term to search for
"""
dlg = xbmcgui.Dialog()
term = dlg.input(
heading=self.get_local_string(string_id=30003),
type=xbmcgui.INPUT_ALPHANUM)
if len(term) == 0:
term = None
return term
评论列表
文章目录