← All terms
Airflow

Plugins

The plugins folder (plugins/) is where Airflow looks for custom extensions — drop a Python file defining a custom Operator, Hook, Sensor, or UI view there, and Airflow registers it automatically on startup.

Common uses:

Keeps shared logic out of individual DAG files, so multiple DAGs can reuse the same tested building blocks.

See also: Requirements Folder