from telethon import TelegramClient, events from telethon.sessions import StringSession from constants import API_ID, API_HASH, BOT_TOKEN, SESSION bot = TelegramClient(StringSession(SESSION), API_ID, API_HASH).start( bot_token=BOT_TOKEN ) @bot.on(events.NewMessage(pattern="/start")) async def start(event): await event.respond( "Hola, muy buenas. Gracias por ponerte en contacto con UGR Tracing Bot. Para poder continuar con el proceso por favor responda a este mensaje con un identificador Ășnico (DNI o correo institucional). Muchas gracias." ) raise events.StopPropagation def main(): bot.run_until_disconnected() if __name__ == "__main__": main()