Python Programming¶
Route by design pressure, not by favorite syntax.
This family collects long-form Python courses about semantics, architecture, and runtime power. The goal is not to sort by syntax feature. The goal is to help a reader choose the program that matches the design pressure they are actually under.
Family Map¶
graph LR
family["Python Programming"]
oop["Object-Oriented Programming"]
fp["Functional Programming"]
meta["Metaprogramming"]
family --> oop
family --> fp
family --> meta
flowchart LR
choose["Choose the design pressure"] --> objects["Object collaboration and invariants"]
choose --> functions["Purity, effects, and async flow"]
choose --> runtime["Introspection, decorators, descriptors, metaclasses"]
objects --> oop["Python Object-Oriented Programming"]
functions --> fp["Python Functional Programming"]
runtime --> meta["Python Metaprogramming"]
Read the first diagram as the family shape. Read the second diagram as the decision route: start from the pressure, not from a favorite abstraction style.
Choose a Program¶
| If your pressure is... | Start here | What this program sharpens |
|---|---|---|
| ownership, invariants, lifecycle, and mutation rules | Python Object-Oriented Programming | object semantics, aggregates, collaboration boundaries, API evolution |
| purity, typed pipelines, explicit effects, and async coordination | Python Functional Programming | dataflow discipline, effect isolation, compositional design, reviewable refactors |
| decorators, descriptors, metaclasses, and runtime hooks | Python Metaprogramming | runtime honesty, public-surface review, dynamic behavior with explicit contracts |
Python Object-Oriented Programming
Use this program when you need stable ownership, explicit invariants, collaboration boundaries, and long-lived object models.
Python Functional Programming
Use this program when you need explicit effects, compositional refactors, streaming control, and typed or reviewable dataflow.
Python Metaprogramming
Use this program when runtime customization, introspection, decorators, descriptors, or metaclasses are the real design pressure.
Stable Entry Routes¶
Python Object-Oriented Programming¶
- Learner entry: Start Here
- Program guide: Course Guide
- Pressure route: Pressure Routes
- Capstone guide: Capstone docs
Python Functional Programming¶
- Learner entry: Orientation
- Program guide: Course Guide
- Pressure route: Pressure Routes
- Capstone guide: Capstone docs
Python Metaprogramming¶
- Learner entry: Start Here
- Program guide: Course Guide
- Pressure route: Pressure Routes
- Capstone guide: Capstone docs
How to Use This Family¶
- Start with the program whose pressure description sounds most like your real problem.
- Move back to this page when you need to compare two programs before committing to one.
- Use the capstone guide only after the core idea of the current course is clear.
- Keep this page aligned with the real learner entry routes whenever programs grow or move.