Skip to main content

Executes (long) actions in parallel, respecting dependencies between those actions

Project description

ActionTree is a Python (3.5+) library to execute (long) actions in parallel, respecting dependencies between those actions. You create a dependency graph of actions to be executed and then call the execute function on its root.

It’s licensed under the MIT license. It’s available on the Python package index. Its documentation and its source code are on GitHub.

Questions? Remarks? Bugs? Want to contribute? Open an issue!

https://img.shields.io/github/workflow/status/jacquev6/ActionTree/Continuous%20Integration?label=CI&logo=github PyPI PyPI

Quick start

Install from PyPI:

$ pip install ActionTree

With dependencies to create Gantt charts and dependency graphs:

$ pip install 'ActionTree[dependency_graphs,gantt]'

Import:

>>> from ActionTree import execute
>>> from ActionTree.stock import CallSubprocess

Execute some action:

>>> link = CallSubprocess(["g++", "a.o", "b.o", "-o", "test"])
>>> link.add_dependency(CallSubprocess(["g++", "-c", "a.cpp", "-o", "a.o"]))
>>> link.add_dependency(CallSubprocess(["g++", "-c", "b.cpp", "-o", "b.o"]))
>>> report = execute(link)

And verify everything went well:

>>> report.is_success
True
>>> os.path.isfile("test")
True

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

ActionTree-0.13.2.tar.gz (19.6 kB view details)

Uploaded Source

File details

Details for the file ActionTree-0.13.2.tar.gz.

File metadata

  • Download URL: ActionTree-0.13.2.tar.gz
  • Upload date:
  • Size: 19.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for ActionTree-0.13.2.tar.gz
Algorithm Hash digest
SHA256 803dd52c365de24513c4665a855c4702d2069b8a38c9f812bd034f71ebc9f5a5
MD5 1fd240d08507e238eca0c892fe1b83db
BLAKE2b-256 545fc1ed6be040a71071104c58f3fe388b0d72b360c3422c673ee6a6358930e1

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