asyncio

Stdlib — ConcurrencyPython 3.4+Advanced

Async I/O: event loop, coroutines, tasks, streams, queues

Quick Info

Documentation
Official Docs
Python Version
3.4+
Dependencies
None — Python Standard Library
Install
Included with Python

Learn by Difficulty

Quick Example

python
import asyncio

print(f"Module: asyncio")
print(f"Contents: {dir(asyncio)[:10]}")

The asyncio module is part of Python's standard library. Async I/O: event loop, coroutines, tasks, streams, queues.

Try in Playground

Tags

stdlibasyncconcurrencyevent-loopnetworking

Related Items