Registry /
workflow / apache-airflow-providers-segment
Install & Compatibility
Where this runs
tested against v3.9.5 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 251.2MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 23.2s · import 0.000s · 249MB
251MB installed
● package 251MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
SegmentTrackEventOperator
✓ from airflow.providers.segment.operators.segment import SegmentTrackEventOperator
✗ from airflow.providers.segment.operators.segment import SegmentTrackEventOperator
Minimal DAG using SegmentTrackEventOperator. Replace 'YOUR_WRITE_KEY' with actual key.
from datetime import datetime
from airflow import DAG
from airflow.providers.segment.operators.segment import SegmentTrackEventOperator
with DAG(dag_id='segment_example', start_date=datetime(2021,1,1), schedule_interval=None) as dag:
track_event = SegmentTrackEventOperator(
task_id='track_event',
write_key='YOUR_WRITE_KEY',
user_id='test_user',
event='Test Event',
properties={'key': 'value'}
)
Upgrade
Version history
3.9.5latest on PyPI · released Jun 7, 2026
Audit
Dependencies
apache-airflowrequiredRequired runtime dependency for Airflow providers.