Translate

Dienstag, 2. Oktober 2018

Using the Telegram API in Python

pip install python-telegram-bot

and use it like this:


import telegram

def main():
    "Sends an example message"
    bot = telegram.Bot('YourBotToken')
    bot.sendMessage("YourChatId", "Test")
   
main()

Keine Kommentare:

Kommentar veröffentlichen