用户向机器人发送照片。如何
使用 aiogram 库将其保存到计算机
@dp.message_handler(content_types=['photo'])
async def handle_docs_photo(message):
raw = await message.photo[0].download()
b = BytesIO()
b.write(raw.raw)
with open('testfile.jpg', 'wb') as f:
f.write(b.getvalue())
1 个回答