本文整理汇总了Python中database.DataBase.addPattern方法的典型用法代码示例。如果您正苦于以下问题:Python DataBase.addPattern方法的具体用法?Python DataBase.addPattern怎么用?Python DataBase.addPattern使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类database.DataBase
的用法示例。
在下文中一共展示了DataBase.addPattern方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from database import DataBase [as 别名]
# 或者: from database.DataBase import addPattern [as 别名]
class Unscrambler:
def __init__(self, options):
self.database = None
if options.first_run:
self.database = DataBase(options.database_dir, new=True)
else:
self.database = DataBase(options.database_dir)
if options.add_wordlist is not None:
with open(options.add_wordlist, 'r') as file:
count = 0
for word in file:
word = word.lower()
word = word.replace("\n", "")
#Checks if word is legal
valid = True
for char in word:
if char not in ALPHABET:
valid = False
print("\"%s\" contains invalid characters" % word)
break
if not valid:
continue
if not self.database.hasWord(word):
self.database.addWord(word)
count += 1
print("Added %s valid words to database" % count)
self.database.close()
sys.exit(0)
if options.add_pattern is not None:
#print(options.add_pattern)
self.database.addPattern(options.add_pattern)
self.database.close()