瀏覽代碼

Transférer les fichiers vers ''

master
TheBidouilleur 8 月之前
父節點
當前提交
e4fd35991e
共有 1 個檔案被更改,包括 25 行新增0 行删除
  1. +25
    -0
      notification.py

+ 25
- 0
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()

Loading…
取消
儲存