Does Python asyncio use threads?

Mar 24, 2024 ยท 2 min read

Python's asyncio module is a popular way to write concurrent and asynchronous code in Python. But it can be confusing to understand how asyncio relates to threads and concurrency concepts.

At its core, asyncio provides infrastructure to write single-threaded concurrent code. It allows you to execute code out of order without using multiple OS threads. This is done through the use of coroutines and an event loop.

import asyncio

async def my_coro():
    print("Hello from a coroutine!")

asyncio.run(my_coro())

So asyncio code runs in a single thread, but allows concurrency by suspending and resuming coroutines to execute them out of order. This avoids overhead from thread context switching.

However, asyncio can utilize threads in some cases:

  • Blocking IO operations - Performing synchronous, blocking IO in an asyncio coroutine will block the event loop thread. To avoid this, asyncio runs blocking code in a thread pool to avoid blocking.
  • CPU-bound tasks - Since asyncio uses a single thread, CPU-bound work can block the event loop. For this, you can use asyncio.to_thread to run CPU intensive work in a thread pool.
  • So while asyncio itself provides single-threaded concurrency, it integrates with threads to avoid issues around blocking operations.

    The key takeaways are:

  • asyncio allows concurrency in Python without threads via coroutines and an event loop
  • Coroutines run on a single thread, avoiding overhead from thread switching
  • Blocking IO and CPU intensive work can be offloaded to thread pools to avoid blocking the event loop
  • By understanding this relationship, you can leverage asyncio for high performance concurrency while avoiding threading issues like deadlocks and race conditions. The event loop model fits many IO bound workloads like web servers very well.

    Browse by tags:

    Browse by language:

    The easiest way to do Web Scraping

    Get HTML from any page with a simple API call. We handle proxy rotation, browser identities, automatic retries, CAPTCHAs, JavaScript rendering, etc automatically for you


    Try ProxiesAPI for free

    curl "http://api.proxiesapi.com/?key=API_KEY&url=https://example.com"

    <!doctype html>
    <html>
    <head>
        <title>Example Domain</title>
        <meta charset="utf-8" />
        <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
    ...

    X

    Don't leave just yet!

    Enter your email below to claim your free API key: