DEV Community

Discussion on: Asynchronous HTTP requests in Python

Collapse
 
datamatin profile image
Martin Breuss • Edited

Wondering the same as Alexander. Is there a feasible way to do this without any external libraries (e.g. using urllib.request for the HTTP calls, but making it async with asyncio)?

Most of what I can find online uses aiohttp, or httpx, which are both external libraries.