def __init__(self, server_instance, full_name):
super(Quotes, self).__init__(server_instance, full_name)
self.quotes_path = os.path.join(self.local_data_dir, 'quotes')
if not os.path.exists(self.quotes_path):
os.makedirs(self.quotes_path)
self.dictionaries = [
enchant.Dict('en_US'),
enchant.Dict('en_GB')
]
评论列表
文章目录