惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
V
Visual Studio Blog
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
博客园 - Franky
IT之家
IT之家
博客园 - 叶小钗
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
雷峰网
雷峰网
腾讯CDC
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
人人都是产品经理
人人都是产品经理
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
博客园_首页
G
Google Developers Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Python AsyncIO Explained: Coroutines, Tasks, Queues, Lock...
maryu0 · 2026-06-05 · via DEV Community

Asynchronous programming is one of those topics that feels confusing until it suddenly clicks.

When I first started learning Python's asyncio, I understood the syntax but struggled to understand why things behaved the way they did. Why does await sometimes run sequentially? Why do we need tasks? When should we use locks, queues, or semaphores?

To build a stronger intuition, I created a small repository of focused examples that explore the core concepts of asyncio step by step.

Repository: https://github.com/maryu0/python-asyncio


Why AsyncIO?

Traditional Python code executes one operation at a time.

For CPU-heavy work, this is often fine. However, many modern applications spend most of their time waiting for external resources:

  • API calls
  • Database queries
  • File operations
  • Network requests
  • Message queues

While the program is waiting, the CPU is mostly idle.

asyncio allows Python to switch to other work during these waiting periods, improving efficiency for I/O-bound applications.


Learning Path

The repository is organized from beginner-friendly concepts to more practical concurrency patterns.

1. Coroutines

File: coroutine.py

The starting point of asyncio.

You'll learn:

  • How to create async functions
  • What await does
  • How the event loop executes coroutines

Example:

async def greet():
    print("Hello")
    await asyncio.sleep(1)
    print("World")

Enter fullscreen mode Exit fullscreen mode

Understanding coroutines is the foundation for everything else.


2. Why Tasks Matter

File: Need_for_TASKS.py

One of the biggest beginner misconceptions is assuming that multiple await statements automatically run concurrently.

They don't.

Consider:

await task1()
await task2()
await task3()

Enter fullscreen mode Exit fullscreen mode

This executes sequentially.

This example demonstrates why asyncio.create_task() exists and how tasks enable concurrent execution.


3. Running Concurrent Work

File: tasks.py

Once tasks are introduced, we can run multiple coroutines at the same time.

Example:

t1 = asyncio.create_task(worker())
t2 = asyncio.create_task(worker())

await t1
await t2

Enter fullscreen mode Exit fullscreen mode

This significantly reduces waiting time for I/O-heavy operations.


4. gather() and TaskGroup

File: gather.py

When managing multiple concurrent operations, Python provides powerful abstractions.

asyncio.gather()

Run multiple coroutines together and collect their results.

results = await asyncio.gather(
    task1(),
    task2(),
    task3()
)

Enter fullscreen mode Exit fullscreen mode

TaskGroup

Introduced in newer Python versions, TaskGroup provides safer task management and structured concurrency.

This file compares both approaches and explains when each is useful.


5. Protecting Shared Resources

File: Lock.py

Concurrency introduces a new challenge: race conditions.

When multiple coroutines access shared data simultaneously, unexpected behavior can occur.

asyncio.Lock ensures only one coroutine modifies a shared resource at a time.

lock = asyncio.Lock()

async with lock:
    shared_counter += 1

Enter fullscreen mode Exit fullscreen mode

This pattern is essential whenever multiple tasks update shared state.


6. Practical AsyncIO Patterns

File: Practice.py

This file combines multiple concepts into realistic examples:

  • Concurrent execution with gather
  • Timeout handling using wait_for
  • Fallback strategies
  • Async generators
  • Streaming-style output

These patterns are commonly used in production systems interacting with APIs and external services.


7. Producer-Consumer Queues

File: queue.py

Real-world systems often produce work faster than it can be processed.

asyncio.Queue acts as a buffer between producers and consumers.

Common use cases include:

  • Job processing systems
  • Event pipelines
  • Background workers
  • Message handling

This example demonstrates how queues help smooth bursts of incoming work.


8. Limiting Concurrency with Semaphores

File: semaphore.py

Sometimes running everything concurrently is actually a bad idea.

Imagine sending 1,000 API requests simultaneously.

You might:

  • Hit rate limits
  • Overload a service
  • Consume excessive resources

asyncio.Semaphore limits how many tasks run at once.

semaphore = asyncio.Semaphore(3)

async with semaphore:
    await make_request()

Enter fullscreen mode Exit fullscreen mode

This pattern is extremely useful when working with external APIs.


Key Takeaways

After working through these examples, a few ideas became much clearer:

  1. Coroutines define asynchronous work.
  2. Tasks enable concurrent execution.
  3. gather() and TaskGroup help coordinate multiple tasks.
  4. Locks prevent race conditions.
  5. Queues provide buffering between producers and consumers.
  6. Semaphores prevent excessive concurrency.
  7. Async generators enable streaming-style workflows.

Most importantly, asyncio isn't about making code magically faster.

It's about making better use of waiting time.


Repository Structure

python-asyncio/
│
├── coroutine.py
├── Need_for_TASKS.py
├── tasks.py
├── gather.py
├── Lock.py
├── Practice.py
├── queue.py
├── semaphore.py
└── Concepts.md

Enter fullscreen mode Exit fullscreen mode


Recommended Learning Order

  1. coroutine.py
  2. Need_for_TASKS.py
  3. tasks.py
  4. gather.py
  5. Lock.py
  6. Practice.py
  7. queue.py
  8. semaphore.py
  9. Concepts.md

Following this order helps build intuition gradually, from basic coroutines to advanced concurrency control patterns.


Who Is This For?

This repository is intended for:

  • Python beginners learning asyncio
  • Students exploring concurrent programming
  • Developers preparing for backend engineering
  • Anyone who wants hands-on asyncio practice before using frameworks or production systems

The examples are intentionally small and educational, focusing on clarity rather than production architecture.


Explore the Repository

GitHub: https://github.com/maryu0/python-asyncio

If you're learning asyncio, I'd love to know:

Which asyncio concept was the hardest for you to understand when you first started?


Tags: #python #asyncio #beginners #programming