Using the GAE search API is it possible to search for a partial match?
I\'m trying to create autocomplete functionality where the term would be a partial word. eg.>
My version optimized: not repeat tokens
def tokenization(text): a = [] min = 3 words = text.split() for word in words: if len(word) > min: for i in range(min, len(word)): token = word[0:i] if token not in a: a.append(token) return a