From e4fd35991ef15c03f51ffad7deb58e87fed209c6 Mon Sep 17 00:00:00 2001 From: Administrator Date: Tue, 28 Apr 2020 12:05:20 +0200 Subject: [PATCH] =?UTF-8?q?Transf=C3=A9rer=20les=20fichiers=20vers=20''?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notification.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 notification.py diff --git a/notification.py b/notification.py new file mode 100644 index 0000000..0684636 --- /dev/null +++ b/notification.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# This program is dedicated to the public domain under the CC0 license. +# Telegram - Betaseries +import logging +import requests +import json +from bot import login_beta, user_id, token_bot +from telegram.ext import Updater, CommandHandler + + +def main(): + print("Votre ID Telegram : ", user_id) + print("Token du bot Telegram : ", token_bot) + token = login_beta() + print("Token betaseries : ", token) + print("Pour arreter le script : CTRL+Z") + # while 1 : + # print("Salut!") + + + + +if __name__ == '__main__': + main() \ No newline at end of file