def search_autocomplete(text): index = get_data.loadIndexRsrKeyws(path) res = get_data.searchIndexRsrKeywsAutocomplete(index, text) return json.dumps(res)
def search_rsrkeyws(text): index = get_data.loadIndexRsrKeyws(path) res = get_data.searchIndexRsrKeyws(index, text) return json.dumps(res)