I have a synchronous function and in it I need to implement sending messages using a bot in python aiogram. I found that you can send a message not using bot.send_message (...), but requests.get (...). But this way you cannot specify parse_mode and attach an inline button. Are there any other ways to implement this? For some reason, this option does not work.:
requests.get(f"https://api.telegram.org/bot{BOT_TOKEN}/sendMessage?chat_id={chat_id}&text={parse_message}&reply_markup={open_tp}&parse_mode=HTML")