Improved accuracy, abiliti to override accuracy, added time delays between

answers and auto commit after resolving.
This commit is contained in:
AB
2018-05-09 18:24:38 +03:00
parent 9e1af3e61b
commit 88747d502f
4 changed files with 88 additions and 12 deletions

View File

@@ -7,9 +7,7 @@ config = configparser.ConfigParser()
def input_line():
allah = [
'༼ つ ͠° ͟ ͟ʖ ͡° ༽つ', '(☄ฺ◣д◢)☄ฺ', '( >д<)', '(ꐦ ಠ皿ಠ )', ';≧皿≦)',
'((╬●∀●)', '(; ̄Д ̄)', '(;¬_¬)', '(ꐦ°᷄д°᷅)', '(*`益´*)', '(;¬_¬)',
'(メ゚皿゚)', '( ╬◣ 益◢)', '(ఠ్ఠ ˓̭ ఠ్ఠ)'
'>>>'
]
return allah[random.randint(0, len(allah)-1)]
@@ -77,6 +75,6 @@ Type h or help for help.
''')
while True:
q = input('%s >>> ' % input_line())
q = input('Command %s ' % input_line())
act(q)