On this page
article
threading — Thread-Based Parallelism
Threads for I/O-bound concurrency.
Overview
Threads for I/O-bound concurrency.
Quick Example
t = threading.Thread(target=work); t.start()
When to Use
Use this module when you need built-in support without adding third-party dependencies.
Common Tasks
- Read the official docs: docs.python.org/3/library/threading.html
- Combine with related modules in the Cookbook
- Prefer stdlib before reaching for PyPI packages