selectors

Stdlib — ConcurrencyPython 2.0+Advanced

High-level I/O multiplexing (select/poll/epoll/kqueue)

Quick Info

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

Learn by Difficulty

Quick Example

python
import selectors

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

The selectors module is part of Python's standard library. High-level I/O multiplexing (select/poll/epoll/kqueue).

Try in Playground

Tags

stdlibconcurrencyparallelism