Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

25 řádky
605 B

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. # This program is dedicated to the public domain under the CC0 license.
  4. # Telegram - Betaseries
  5. import logging
  6. import requests
  7. import json
  8. from bot import login_beta, user_id, token_bot
  9. from telegram.ext import Updater, CommandHandler
  10. def main():
  11. print("Votre ID Telegram : ", user_id)
  12. print("Token du bot Telegram : ", token_bot)
  13. token = login_beta()
  14. print("Token betaseries : ", token)
  15. print("Pour arreter le script : CTRL+Z")
  16. # while 1 :
  17. # print("Salut!")
  18. if __name__ == '__main__':
  19. main()