from aiogram import Bot, types
from aiogram.dispatcher import Dispatcher
from aiogram.utils import executor
from config import TOKEN
bot = Bot(token=TOKEN)
dp = Dispatcher(bot)
@dp.message_handler(commands=['start'])
async def process_start_command(message: types.Message):
await message.reply("Ответ на команду '/start'!")
if __name__ == '__main__':
executor.start_polling(dp)
def question3(message):
user_id = message.chat.id
question3 = message.text
if question3.startswith('#'):
sql.execute("")
msg = bot.send_message(user_id, 'Отлично! Следующий вопрос...')
bot.register_next_step_handler(msg, question4)
else:
bot.send_message(user_id, 'Ошибка! Введите ещё раз!')
bot.register_next_step_handler(msg, question3)
https://t.me/<юзернейм_бота>?start=12345
msg.text = 'start 12345'
send_document(user_id, file_id)