Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
@dp.message(Command('song')) async def send_songs(message): await message.answer("Hello!") await message.answer("World!") audio = open('audio.mp3', 'rb') await bot.send_audio(message.chat.id, audio)
from aiogram.types import FSInputFile @dp.message(Command('song')) async def send_songs(message): await message.answer("Hello!") await message.answer("World!") audio = FSInputFile('audio.mp3') # используй FSInputFile вместо open await bot.send_audio(message.chat.id, audio)