Skip to main content

Python DAG Runner

Python Python Style License: MIT

Python DAG Runner is a Python library for running Directed Acyclic Graphs (DAGs) efficiently. It provides a simple and intuitive interface for defining and executing complex workflows. It uses networkx library to generate directed acyclic graph from the tasks and it's dependencies.

Installation

You can install python-dag-runner library easily using pip:

pip install python-dag-runner

Usage

You can easily define a dag in python-dag-runner using Dag class. Furthermore, task can be defined using Task class. You can easily define dependencies of tasks using the "|=" operator.

from python_dag_runner import Dag, Task

# Create an executable function
def print_task_1():
    """A sample function"""
    print("Task 1 called")

def print_task_1():
    """A sample function"""
    print("Task 2 called")

# Create Task objects
task_1 = Task(name="task one", executable=print_task_1)
task_2 = Task(name="task two", executable=print_task_2)

# Set dependencies of task using bitwise or operator
task_2 |= {task_1}

# Create a DAG by providing name and sequence of tasks
dag = Dag("My first DAG", tasks=[task_1, task_2])

# Initiate execution of Dag using initialize method
dag.initiate()

Example of complex dependencies

Multiple internal dependencies can be defined using dependency operator.

task_2 |= {task_1}
task_3 |= {task_2}
task_4 |= {task_2}
task_5 |= {task_2}
task_6 |= {task_3, task_4, task_5}
task_7 |= {task_6}
task_8 |= {task_7}
task_9 |= {task_7}

The above steps result in the dependency graph as shown below

%%{init: {'theme': 'neutral'}}%%
stateDiagram
direction LR
    task_one --> task_two
    task_two --> task_three
    task_two --> task_four
    task_two --> task_five
    task_three --> task_six
    task_four --> task_six
    task_five --> task_six
    task_six --> task_seven
    task_seven --> task_eight
    task_seven --> task_nine

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-dag-runner-0.0.4.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python_dag_runner-0.0.4-py3-none-any.whl (6.8 kB view details)

Uploaded Python 3

File details

Details for the file python-dag-runner-0.0.4.tar.gz.

File metadata

  • Download URL: python-dag-runner-0.0.4.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for python-dag-runner-0.0.4.tar.gz
Algorithm Hash digest
SHA256 2bbfe940cfdb92745285a6675c98cae3eb821f62edffe6b09083fabd1b57a021
MD5 ea6cdf5733194c377cffac261618fa69
BLAKE2b-256 3f9e90823b430603f9968bb227eeeb916035776c4470dedb243c05183e0dde64

See more details on using hashes here.

File details

Details for the file python_dag_runner-0.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for python_dag_runner-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 6eaccfe28ab5145032b44fe863e3471e9522845f1646da0f99c29d0d5dab2bc2
MD5 ba37c63671eef38bf58248b7ad479fca
BLAKE2b-256 7056147ffd2c8f65a014f7868de1379aac45305c8bc8dcb53e2d8cee94e49b4c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page