Skip to content

Instantly share code, notes, and snippets.

View dongyuzheng's full-sized avatar

Gary dongyuzheng

  • 12:25 (UTC -04:00)
View GitHub Profile
@dongyuzheng
dongyuzheng / benchmark_requests.py
Last active October 6, 2022 15:35
Benchmark of serial `requests` vs. `aiohttp` vs. `ThreadPoolExecutor` vs. `ProcessPoolExecutor`
#!/usr/bin/env python3
import asyncio
import time
from concurrent.futures import ProcessPoolExecutor, ThreadPoolExecutor
from contextlib import contextmanager
import aiohttp
import requests