async-python-patterns

Originally fromwshobson/agents
Installation
SKILL.md

Async Python Patterns

Implement asynchronous Python applications using asyncio, concurrent programming patterns, and async/await for building high-performance, non-blocking systems.

When to Invoke

  • Building async web APIs (FastAPI, aiohttp, Sanic)
  • Implementing concurrent I/O operations (database, file, network)
  • Creating web scrapers with concurrent requests
  • Developing real-time applications (WebSocket servers, chat systems)
  • Processing multiple independent tasks simultaneously
  • Building microservices with async communication
  • Optimizing I/O-bound workloads
  • Implementing async background tasks and queues
  • Deciding between threading, multiprocessing, and asyncio

Core Concepts

Event Loop

Related skills
Installs
31
GitHub Stars
2
First Seen
Feb 4, 2026