Skip to main content

Run lightweight local workflows

Project description

Dyngle

Run lightweight local workflows

Dyngle is a simple workflow runner that executes sequences of commands defined in configuration files. It's like a lightweight combination of Make and a task runner, designed for automating common development and operational tasks.

Basic usage

Create a configuration file (e.g., .dyngle.yml) with your workflows:

dyngle:
  operations:
    build:
      - python -m pip install -e .
      - python -m pytest
    deploy:
      - docker build -t myapp .
      - docker push myapp
    clean:
      - rm -rf __pycache__
      - rm -rf .pytest_cache

Run an operation:

dyngle run build

Configuration

Dyngle reads configuration from YAML files. You can specify the config file location using:

  • --config command line option
  • DYNGLE_CONFIG environment variable
  • .dyngle.yml in current directory
  • ~/.dyngle.yml in home directory

The configuration has 2 parts: operations: and expressions.

Data

Dyngle maintains a block of data throughout operations, which is parsed from YAML in stdin.

Operations

Operations contain steps as a YAML array. The lifecycle of an operation is:

  1. Load input data if it exists from YAML on stdin (if no tty)
  2. Perform template rendering on a step, using data and expressions (see below)
  3. Execute the step in a subprocess
  4. Continue with the next step

Note that operations in the config are not full shell lines. They are passed directly to the system.

Templates

Prior to running commands, the line containing that command is processed as a template. Entries from the data set can be substituted into the command line using Jinja-like expressions in double-curly brackets ({{ and }}).

For example, if stdin contains the following data:

name: Francis

And the command looks like:

- echo "Hello {{name}}!"

Then the command will output "Hello Francis!".

Expressions

Configs can also contain expressions, written in Python, that can also be referenced in operation steps.

dyngle:
  expressions:
    say-hello: >-
        'Hello ' + name + '!'
  operations:
    say-hello: echo {{say-hello}}

Expressions can use a controlled subset of the Python standard library, including:

  • Built-in data types such as str()
  • Essential built-in functions such as len()
  • The core modules from the datetime package (but some methods such as strftime() will fail)
  • A specialized function called formatted() to perform string formatting operations on a datetime object
  • A restricted version of Path() that only operates within the current working directory
  • Various other useful utilities, mostly read-only, such as the math module

Security

Commands are executed using Python's subprocess.run() with arguments split in a shell-like fashion. The shell is not used, which reduces the likelihood of shell injection attacks. However, note that Dyngle is not robust to malicious configuration. Use with caution.

Quick installation (MacOS)

brew install python@3.11
python3.11 -m pip install pipx
pipx install dyngle

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

dyngle-0.4.2.tar.gz (5.2 kB view details)

Uploaded Source

Built Distribution

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

dyngle-0.4.2-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

Details for the file dyngle-0.4.2.tar.gz.

File metadata

  • Download URL: dyngle-0.4.2.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for dyngle-0.4.2.tar.gz
Algorithm Hash digest
SHA256 e6eae9c14399d76e5c0c0c67152fd8f775b16e3f6952c050d398c206ff94a4bd
MD5 45e971bb76cc4e51af08278fed1f10af
BLAKE2b-256 138ec79209ce0a09029e284bbf098ec1928c8aeceef9fbba42f2080dcdddb6f2

See more details on using hashes here.

File details

Details for the file dyngle-0.4.2-py3-none-any.whl.

File metadata

  • Download URL: dyngle-0.4.2-py3-none-any.whl
  • Upload date:
  • Size: 7.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for dyngle-0.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 29a432ecae2cef69fc35d849c883fbe731b67ddfd9dd5b2300f31d8a64f0351a
MD5 dff15653c8083761321b519b8a545d8c
BLAKE2b-256 c18fb460bf897937738b5d62fd0148198c3fec212fc7bd618ceca501e8127379

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