Skip to main content

directed acyclic gather

Project description

Dagather

dagather (directed acyclic gather) is a new way to plan out and schedule asynchronous tasks. The tasks are organized, with each task specifying the tasks that come before it. The tasks are then run in topological order, ensuring that each operation will start as soon as it is able to without waiting for routines it does not need.

from asyncio import sleep
from dagather import Dagather

foo = Dagather()

@foo.register
# add a new task to the task list
async def a():
    await sleep(1)
    return 12

@foo.register
async def b(a):
    # we now specify that a is a requirement for this task,
    # meaning that b will not be called until a has finished.
    # during runtime, a's value will be the return value of the
    # a task
    assert a == 12
    await sleep(2)

@foo.register
async def c(a):
    await sleep(1)
    return 'testing'

@foo.register
async def d():
    await sleep(1)

@foo.register
async def e(d, c):
    await sleep(1)

result = await foo()
# when foo is called, it runs each of its registered tasks 
# as soon as all its dependencies are finished.
# once all the tasks are finished, it will return a dict
# mapping each task to its return value.
assert result == {
    a: 12,
    b: None,
    c: 'testing',
    d: None,
    e: None
}

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

dagather-0.1.0.tar.gz (7.8 kB view details)

Uploaded Source

Built Distribution

dagather-0.1.0-py3-none-any.whl (9.2 kB view details)

Uploaded Python 3

File details

Details for the file dagather-0.1.0.tar.gz.

File metadata

  • Download URL: dagather-0.1.0.tar.gz
  • Upload date:
  • Size: 7.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.8.7 Linux/5.4.0-1036-azure

File hashes

Hashes for dagather-0.1.0.tar.gz
Algorithm Hash digest
SHA256 9b986a9b35f24887abdbd572b664107a5f778c70e46c7f23019196b3a50397f4
MD5 c3813d95a5cb50301d963528a88ba3f0
BLAKE2b-256 c7eef62a9e6ff8056c3fe8282c6ca9b2cc08a03f536ef9760460a9d9e07166b4

See more details on using hashes here.

File details

Details for the file dagather-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: dagather-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 9.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.8.7 Linux/5.4.0-1036-azure

File hashes

Hashes for dagather-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4327820bec2286108be4caa9e6fa44404ed97fff55ca6281d5219287fab1b015
MD5 1bc104d0c6cfc81c77c48ca6c9bbc9ff
BLAKE2b-256 ea3b09d0a7514791c6851ee8181da353ec72fae23b2be2f366865df8c592d8bc

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