Skip to main content

aiohttp Client Basics

Introduction to aiohttp

0:00
LearnStep 1/4

Why aiohttp?

aiohttp: Async HTTP for Python

The popular requests library is synchronous - it blocks while waiting for responses. For async code, use aiohttp:

python

Installation

bash

aiohttp vs requests

Featurerequestsaiohttp
Async support❌ No✅ Yes
Connection poolingManualBuilt-in (Session)
WebSocket support❌ No✅ Yes
Server support❌ No✅ Yes
Concurrent requestsThreads neededNative async