sched

Stdlib — ConcurrencyPython 2.0+Advanced

General-purpose event scheduler for timed callbacks

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 sched

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

The sched module is part of Python's standard library. General-purpose event scheduler for timed callbacks.

Try in Playground

Tags

stdlibconcurrencyparallelism