You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.9 KiB
99 lines
2.9 KiB
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""Simple Bot to reply to Telegram messages.
|
|
|
|
This program is dedicated to the public domain under the CC0 license.
|
|
|
|
This Bot uses the Updater class to handle the bot.
|
|
|
|
First, a few handler functions are defined. Then, those functions are passed to
|
|
the Dispatcher and registered at their respective places.
|
|
Then, the bot is started and runs until we press Ctrl-C on the command line.
|
|
|
|
Usage:
|
|
Basic Echobot example, repeats messages.
|
|
Press Ctrl-C on the command line or send a signal to the process to stop the
|
|
bot.
|
|
"""
|
|
|
|
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters
|
|
import logging
|
|
import random
|
|
|
|
# Enable logging
|
|
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
|
|
level=logging.INFO)
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
with open("stoll.txt", "r") as tmp_file:
|
|
STOLL = tmp_file.readlines()
|
|
|
|
with open("manta.txt", "r") as tmp_file:
|
|
MANTA = tmp_file.readlines()
|
|
|
|
# Define a few command handlers. These usually take the two arguments bot and
|
|
# update. Error handlers also receive the raised TelegramError object in error.
|
|
def start(bot, update):
|
|
"""Was ist das hier für eins Bot?"""
|
|
update.message.reply_text("""Hallo, ich bin ein Bot.
|
|
Ich liefere tolle Informationen über die Mensa. Die Infos kommen von
|
|
https://mensa.schneider-hosting.de
|
|
Mhmm, lecker. Guten Appetit!""")
|
|
|
|
def help(bot, update):
|
|
"""Send a message when the command /help is issued."""
|
|
update.message.reply_text('Help!')
|
|
|
|
def magie(bot, update):
|
|
"""MAGIEEEEEE"""
|
|
rand = random.SystemRandom()
|
|
update.message.reply_text(STOLL[rand.randrange(0, len(STOLL), 1)])
|
|
|
|
def manta(bot, update):
|
|
"""Boah ey, geile Karre!"""
|
|
rand = random.SystemRandom()
|
|
update.message.reply_text(MANTA[rand.randrange(0, len(MANTA), 1)])
|
|
|
|
def echo(bot, update):
|
|
"""Echo the user message."""
|
|
update.message.reply_text(update.message.text)
|
|
|
|
|
|
def error(bot, update, error):
|
|
"""Log Errors caused by Updates."""
|
|
logger.warning('Update "%s" caused error "%s"', update, error)
|
|
|
|
|
|
def main():
|
|
"""Start the bot."""
|
|
# Create the EventHandler and pass it your bot's token.
|
|
token = open("token").read()
|
|
updater = Updater(token.strip())
|
|
|
|
# Get the dispatcher to register handlers
|
|
dp = updater.dispatcher
|
|
|
|
# on different commands - answer in Telegram
|
|
dp.add_handler(CommandHandler("start", start))
|
|
dp.add_handler(CommandHandler("help", help))
|
|
dp.add_handler(CommandHandler("magie", magie))
|
|
dp.add_handler(CommandHandler("manta", manta))
|
|
|
|
|
|
# log all errors
|
|
dp.add_error_handler(error)
|
|
|
|
# Start the Bot
|
|
updater.start_polling()
|
|
|
|
# Run the bot until you press Ctrl-C or the process receives SIGINT,
|
|
# SIGTERM or SIGABRT. This should be used most of the time, since
|
|
# start_polling() is non-blocking and will stop the bot gracefully.
|
|
updater.idle()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|