# Python HTTP clients Results: ``` ➤ uv run with_httpx.py time taken to make 10000 requests: 20.2337 seconds Counter({200: 10000}) ➤ uv run with_thread_pool.py time taken to make 10000 requests: 6.9722 seconds Counter({200: 10000}) ➤ uv run with_aiohttp.py time taken to make 10000 requests: 4.0490 seconds Counter({200: 10000}) ```