Skip to content

Instantly share code, notes, and snippets.

@jeffmylife
jeffmylife / async_download_images.py
Last active May 12, 2023 19:28
Async GET request for images using aiohttp
import re
import asyncio
from io import BytesIO
import time
from pathlib import Path
from PIL import Image
import aiohttp
import requests