First test bot

This commit is contained in:
Klaus-Uwe Mitterer 2017-02-07 22:54:22 +01:00
parent 46449d800a
commit 33ade5451a

9
bot.py Normal file → Executable file
View file

@ -1,3 +1,12 @@
#!/usr/bin/env python3
import logging, telegram.ext
updater = telegram.ext.Updater(token=setuptools.token)
def start(bot, update):
bot.sendMessage(chat_id=update.message.chat_id, text="Heeeeeeey! :3")
updater.dispatch.add_handler(telegram.ext.CommandHandler("start", start)
updater.start_polling()