Skip to content

Instantly share code, notes, and snippets.

View aathil-Mr-ITGuy's full-sized avatar
🎯
Focusing

Aathil Ahamed aathil-Mr-ITGuy

🎯
Focusing
  • D&B Properties
  • Dubai
  • 08:31 (UTC +04:00)
View GitHub Profile
@turbaszek
turbaszek / big_dag_example.py
Created November 18, 2020 17:24
Sample big dag
import random
from airflow.operators.dummy_operator import DummyOperator
from airflow.models import DAG
from airflow.utils.dates import days_ago
with DAG(
"big_dag",
start_date=days_ago(1),
schedule_interval=None,