Poodletooth-iLand/otp/chat/SequenceList.py
2015-03-31 07:59:36 -04: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 []