Skip to main content

Make computer lazy and build a dynamic task graph for your project!

Project description

Task-Graph

Build a dynamic task graph for your project with Task-Graph!

Introduction

When facing a complex task, it's often necessary to recalculate the entire task when user wants to get one of the intermediate results, or to adjust one of the parameters or methods, but once you have Task-Graph,

  1. If you need to get a result, Task-Graph will only compute all the upstream tasks of the result, and each task will cache for later use.

  2. If one of the task's parameters or method is adjusted, Task-Graph will automatically check all the downstream tasks and clear their cached results.

In short, Task-Graph will make the computer lazy and just fulfill your needs without doing repetitive tasks, no more or less.

Usage

No doc available now, here is an minimal example.

# import
from task_graph import TaskGraph

# init a TaskGraph
tg = TaskGraph()

# user task methods
def add(a, b):
    print("add", a, b)
    return a + b


def sub(a, b):
    print("sub", a, b)
    return a - b

# describe the task graph(much like dask.delayed)
ret1 = tg.add_task(add)(1, 2)
ret2 = tg.add_task(add)(3, ret1)
ret3 = tg.add_task(add)(4, ret2)
ret4 = tg.add_task(sub)(ret2, ret3)
final = tg.add_task('to_list')(ret1, ret2, ret3, ret4)

# trigger the computation and print
print(final.compute())

# when I want to update a task
tg.update_task(ret3)(add)(5, ret2)

# Because ret3 is change, rest3, rest4 and final will be recalculated
print(final.compute())

Or, a lazy way:

from task_graph import TaskGraph


tg = TaskGraph()

def add(a, b):
    print("add", a, b)
    return a + b


def sub(a, b):
    print("sub", a, b)
    return a - b

# omit add_task
ret1 = tg(add)(1, 2)
ret2 = tg(add)(3, ret1)
ret3 = tg(add)(4, ret2)
ret4 = tg(sub)(ret2, ret3)
final = tg('to_list')(ret1, ret2, ret3, ret4)

# auto compute and print
final.print()

# omit update_task
tg(ret3)(add)(5, ret2)

# auto compute and print
final.print()

TODO

Task-Graph is at the very beginning, so many todos in the codes. Here are a few general ones:

  • add parallel scheduler
  • add decorator that can auto transfer function to task
  • add graphviz-based visualization
  • add unit test
  • add doc
  • add examples

Zen

I am lazy, so I build this to let computer be also lazy.

One of the biggest differences in Python from other languages is that the methods (like all other objects) are mutable, Task-Graph is designed to accommodate that.

Task-Graph was designed to speed up python project, and want to make it the simplest solution to avoid any recalculation.

I have referred to the Dask.delayed API in many places. The difference between Task-Graph and Dask is to try to adapt to the dynamics of the python and python projects, and make computer not only delayed but also lazy.

Project details


Download files

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

Source Distribution

task-graph-0.0.1.tar.gz (5.9 kB view details)

Uploaded Source

Built Distribution

task_graph-0.0.1-py3-none-any.whl (7.8 kB view details)

Uploaded Python 3

File details

Details for the file task-graph-0.0.1.tar.gz.

File metadata

  • Download URL: task-graph-0.0.1.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8

File hashes

Hashes for task-graph-0.0.1.tar.gz
Algorithm Hash digest
SHA256 f1ca3404ff747e5804a75fbc9a17552ea5682b9c6f3ff5458ce25dddd31cf597
MD5 eda13e2168841430823e2e0cecd0dc3c
BLAKE2b-256 9075f01f57f5b97ec0f43978510139fb7ed1a2c1bc8c2ac45c32967abba437f4

See more details on using hashes here.

File details

Details for the file task_graph-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: task_graph-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 7.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8

File hashes

Hashes for task_graph-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 eb981f8d2ff90724e097b55dae83a64d55a0f34213734cdd8bf24373d24adda2
MD5 c871c10952b4b75b7388bc64ee6787d4
BLAKE2b-256 b4767d57a0b4a1ce83a0d4d30dd7faeddc6e25f3bc5b12b733c0443970a2c0e0

See more details on using hashes here.

Supported by

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