Poodletooth-iLand/otp/chat/SequenceList.py

15 lines
430 B
Python
Raw Normal View History

2015-03-31 06:59:36 -05:00
class SequenceList:
def __init__(self, wordlist):
self.list = {}
for line in wordlist:
if line is '':
continue
split = line.split(':')
self.list[split[0].lower()] = [word.rstrip('\r\n').lower() for word in split[1].split(',')]
def getList(self, word):
if word in self.list:
return self.list[word]
else:
return []