python aiogram how to stop an asynchronous loop – Telegram API
Simple example import asyncio import logging from aiogram import Bot, Dispatcher, types logging.basicConfig(level=logging.INFO) token = 'token' bot = Bot(token=token) dp = Dispatcher(bot=bot) @dp.callback_query_handler(text='stoploop') async def stop_loop(query: types.CallbackQuery): # TODO how to stop test loop? await query.message.edit_text('stop') @dp.callback_query_handler(text='test') async def start_loop(query:…