diff --git a/bot.py b/bot.py old mode 100644 new mode 100755 index 066c83e..8ae7f4b --- a/bot.py +++ b/bot.py @@ -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()