Skip to main content

dags

PyPI PyPI - Python Version Conda Version Conda Platform PyPI - License Documentation Status GitHub Workflow Status codecov pre-commit.ci status

About

dags provides tools to combine several interrelated functions into one function. The order in which the functions are called is determined by a topological sort on a dag that is constructed from the function signatures. You can specify which of the function results will be returned in the combined function.

dags is a tiny library, all the hard work is done by the great NetworkX.

Example

To understand what dags does, let's look at a very simple example of a few functions that do simple calculations.

def f(x, y):
    return x**2 + y**2


def g(y, z):
    return 0.5 * y * z


def h(f, g):
    return g / f

Assume that we are interested in a function that calculates h, given x, y and z.

We could hardcode this function as:

def hardcoded_combined(x, y, z):
    _f = f(x, y)
    _g = g(y, z)
    return h(_f, _g)


hardcoded_combined(x=1, y=2, z=3)
0.6

Instead, we can use dags to construct the same function:

from dags import concatenate_functions

combined = concatenate_functions([h, f, g], targets="h")

combined(x=1, y=2, z=3)
0.6

More examples can be found in the documentation

Notable features

  • The dag is constructed while the combined function is created and does not cause too much overhead when the function is called.
  • If all individual functions are jax compatible, the combined function is jax compatible.
  • When jitted or vmapped with jax, we have not seen any performance loss compared to hard coding the combined function.
  • When there is more than one target, you can determine whether the result is returned as tuple, list or dict or pass in an aggregator to combine the multiple outputs.
  • Since the relationships are discoverd from function signatures, dags provides decorators to rename arguments in order to make it easy to wrap functions you do not control yourself.

Installation

dags is available on PyPI and conda-forge. Install it with

$ pip install dags

# or

$ pixi add dags

# or

$ conda install -c conda-forge dags

Documentation

The documentation is hosted on Read the Docs.

Release files for dags 0.6.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for dags 0.6.0
File Size Uploaded
dags-0.6.0.tar.gz 23.1 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for dags 0.6.0
File Interpreter ABI Platform
dags-0.6.0-py3-none-any.whl Python 3 none any Details

Total release size: 50.1 kB

Release files / dags-0.6.0.tar.gz

Download URL dags-0.6.0.tar.gz
Size 23.1 kB
Tags Source
SHA-256 checksum
How to use checksums
7fe8be3bca2aea6ad85937f1b21ac3629e4d2300237b99c6e057bb78a0f5f997
BLAKE2b-256 checksum
How to use checksums
1ba79e10cb7aa9b5db0f4df106516004f58732338e48e3c960ec9f704898cb93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.12

Release files / dags-0.6.0-py3-none-any.whl

Download URL dags-0.6.0-py3-none-any.whl
Size 27.0 kB
Tags Python 3
SHA-256 checksum
How to use checksums
701ddeb2155a0898a14317ccb1f6680397f732f9a632e48c3718aee953ce9e57
BLAKE2b-256 checksum
How to use checksums
9eddb04e4a733637d370831e328a356254cfc9c875195269b234cc8ca31ff674
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.12

Release history Release notifications | RSS feed

This release

0.6.0 This release

2 release files

0.5.1

2 release files

0.4.3

2 release files

0.4.2

2 release files

0.4.1

2 release files

0.4.0

2 release files

0.3.0

2 release files

0.2.3

2 release files

0.2.2

2 release files

0.2.1

2 release files

0.2.0

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page