2023-11-08 04:15:58 +08:00

8 lines
194 B
Python

import aiohttp
async def download_image(url: str):
async with aiohttp.ClientSession() as session:
async with session.get(url) as response:
return await response.read()