Spaces:
Sleeping
Sleeping
File size: 2,615 Bytes
31a591d 4118ff1 31a591d 4754033 b000a03 31a591d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# import telebot
# from telebot import types
import asyncio
import os
from telebot.async_telebot import AsyncTeleBot
from Warning import *
#### Julian neu #####
#with open("token.txt") as file:
# token = file.read()
bot = AsyncTeleBot(os.environ['BotToken'])
print("Bot geladen")
# Handle '/start' and '/help'
@bot.message_handler(commands=['help', 'start'])
async def send_welcome(message):
await bot.reply_to(message, """\
Hi there, I am EchoBot.
I am here to echo your kind words back to you. Just say anything nice and I'll say the exact same thing to you!\
""")
@bot.message_handler(func=lambda message: True)
async def get_Message(message):
frage = message.text
print(frage)
# GetLocation von Nutzereingabe
plz = Warning(frage)
plz2 = plz.compare()
plz2 = plz2.iloc[0]['name']
print(plz2)
data = plz.cleanWarnings()
print(data)
gesuchte_zeile = data.loc[data['Plz'] == plz2]
await bot.reply_to(message, gesuchte_zeile)
asyncio.run(bot.polling())
# ### Paul alt ####
# with open("token.txt") as file:
# token = file.read()
# bot = telebot.TeleBot(token)
# frage = ""
# # Startnachricht
# startnachricht = "Disclaimer zu unserem Chatbot: ..."
# markup = types.InlineKeyboardMarkup()
# button = types.InlineKeyboardButton('Aktuelle Informationen zu Warnungen', callback_data='api_warnung')
# button = types.InlineKeyboardButton('Allgemeine Informationen zu Katastrophen', callback_data='allg_infos')
# markup.add(button)
# bot.send_message(chat_id='6475480143',text=startnachricht, reply_markup=markup)
# # Command Handler
# @bot.message_handler(commands=['start'])
# def start(message):
# markup = types.InlineKeyboardMarkup()
# button = types.InlineKeyboardButton('Aktuelle Informationen zu Warnungen', callback_data='api_warnung')
# markup.add(button)
# bot.send_message(message.chat.id, 'Hallo! Klicke auf den Button:', reply_markup=markup)
# # Nachricht erkennen
# @bot.callback_query_handler(func=lambda call: True)
# def callback_handler(call):
# # Antworten wenn API Infos gefordert
# if call.data == 'api_warnung':
# bot.send_message(call.message.chat.id, 'Antworten zu aktuellen Informationen:')
# if call.data == 'allg_infos':
# bot.send_message(call.message.chat.id, 'Antworten zu allgemeinen Informationen:')
# # Get_Message
# @bot.message_handler(func=lambda message: True)
# def get_Message(message):
# #bot.reply_to(message, message.text)
# frage = message.text
# print(frage)
# # Bot starten
# bot.infinity_polling() |