blob: 0decdc7178be38e747483318aff6521779f10681 [file] [log] [blame]
Guido van Rossum7a465642013-11-22 11:47:22 -08001:mod:`asyncio` -- Asynchronous I/O, event loop, coroutines and tasks
2====================================================================
3
4.. module:: asyncio
5 :synopsis: Asynchronous I/O, event loop, coroutines and tasks.
6
7.. versionadded:: 3.4
8
9
10Introduction
11------------
12
13This package includes a pluggable event loop, transport and protocol
14abstractions similar to those in Twisted, and a higher-level scheduler
15for coroutines and tasks based on ``yield from`` (:PEP:`380`).
16
17Full documentation is not yet ready; we hope to have it written
18before Python 3.4 leaves beta. Until then, the best reference is
19:PEP:`3156`. For a motivational primer on transports and protocols,
20see :PEP:`3153`.