ToonTownRewritten/otp/chat/SequenceList.py
2014-08-29 11:43:59 -07:00

15 lines
No EOL
430 B
Python

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 []