better looking code
This commit is contained in:
parent
5f060f9e24
commit
c406d1c1d1
1 changed files with 9 additions and 7 deletions
14
main.py
14
main.py
|
@ -130,17 +130,13 @@ if __name__ == '__main__':
|
|||
"""
|
||||
errorMessage = "Une erreur survient !" # error message
|
||||
|
||||
# words to detect
|
||||
# words to detect in lowercase
|
||||
base = {
|
||||
"quoi": ["quoi", "koi", "quoient", "q u o i"],
|
||||
"quoi": ["quoi", "koi", "quoient"],
|
||||
"oui": ["oui", "ui"],
|
||||
"non": ["non", "nn"],
|
||||
"nan": ["nan"]
|
||||
}
|
||||
universalBase = createBaseTrigger(list(base.values()))
|
||||
|
||||
# creation of the list with all alternatives (upper/lower case)
|
||||
triggerWords = permute(universalBase)
|
||||
|
||||
# creation of answers
|
||||
answers = {
|
||||
|
@ -154,6 +150,12 @@ if __name__ == '__main__':
|
|||
"nan": createBaseAnswers("cy")
|
||||
}
|
||||
|
||||
# creation of a list of all the words (only lowercase)
|
||||
universalBase = createBaseTrigger(list(base.values()))
|
||||
|
||||
# creation of a list of all the words (upper and lower case)
|
||||
triggerWords = permute(universalBase)
|
||||
|
||||
# loading environment variables and launching the bot
|
||||
keys = load(["TOKEN", "TOKEN_SECRET", "CONSUMER_KEY", "CONSUMER_SECRET", "PSEUDOS"])
|
||||
main(keys["TOKEN"], keys["TOKEN_SECRET"], keys["CONSUMER_KEY"], keys["CONSUMER_SECRET"], keys["PSEUDOS"])
|
||||
|
|
Reference in a new issue