From e8833d8165288e0c5147d33ec9651502772108da Mon Sep 17 00:00:00 2001 From: Administrator Date: Wed, 29 Apr 2020 10:08:41 +0200 Subject: [PATCH] Fichier pour stocker les informations --- config.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 config.py diff --git a/config.py b/config.py new file mode 100644 index 0000000..26cbc66 --- /dev/null +++ b/config.py @@ -0,0 +1,26 @@ + +# client_id : Votre client_ID de l'application que vous avez créé sur Betaseries. Sinon voir ici : https://www.betaseries.com/api/ +# login : Votre utilisateur betaseries +# password : Votre mot de passe betaseries en md5. https://www.md5hashgenerator.com/ +# Votre user_id sur telegram : https://bigone.zendesk.com/hc/en-us/articles/360008014894-How-to-get-the-Telegram-user-ID- +# token_bot : le token du bot que vous avez créé sur telegram. Contactez Botfather pour le créer + + + +config = { + "client_id" : '', + "login" : '', + "password" : '', + "user_id" : '', + "token_bot" : '' + } + + +def main(): + print(config) + + + + +if __name__ == '__main__': + main() \ No newline at end of file