Skip to main content

WoSIT is an automation tool made to replace make in many instances.

Project description

WoSIT (Workflow Script Interpreter Tool)

WoSIT is an automation tool made to replace make in many instances. It is written in pure Python and is built to ease integration of other Python scripts in automation workflows.

Using WoSIT

Similarly to Makefiles, WoSIT's way of describing automation workflows is through buildconfig.py files. Those are Python files, and as such allow for the use of the full scripting capabilities offered by Python and its packages. This fact makes it closer to generating automation workflows based on the given script, compared to make which uses workflows descriptions.

Basic Usage

Executing a WoSIT workflow is as simple as typing wosit in a directory where a buildconfig.py file is present. By default, WoSIT will execute the all rule.

Similarly to Make, parallel execution can be achieved with the -j flag followed by the maximum number of processes to use.

Basic Example

The following script defines a Python function named genMyRules() to generate a number of rules. Each rule depends on the previous one, and will use the shell echo command to print its own id in the terminal. The script then generates those rules by calling the function.

The rule with target all is added with its source set to the last generated rule. This target is special as it is executed by default when no other target is specified.

from wosit.builder import *

def genMyRules(nbrules):
    addRule(
        target = f"rule_0",
        command = f"echo This is a rule with id 0"
    )
    for i in range(1, nbrules):
        addRule(
            target = f"rule_{i}",
            source = f"rule_{i-1}",
            command = f"echo This is a rule with id {i}"
        )

nb_rules = 10
genMyRules(nb_rules)

addRule(
    target = "all",
    source = f"rule_{nb_rules-1}"
)

addRule(
    target="clean",
    command=f"""
    echo Clean commands should go here.
    """
)

Python Functions Example

WoSIT is capable of executing Python functions. The syntax is the same as defining any other rule, with the exception that the function must be passed to the command argument through WoSIT's Function() object.

from wosit.builder import *

addRule(
    target = "rule_0",
    command = Function(print, args=("This is rule 0.",))
)

addRule(
    target = "rule_1",
    command = Function(print, args=("This is rule 1.",))
)


addRule(
    target = "all",
    source = ["rule_0", "rule_1"]
)

More Examples

More examples are available in the examples folder of this repository.

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

wosit-1.1.0.tar.gz (10.6 kB view details)

Uploaded Source

Built Distribution

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

wosit-1.1.0-py3-none-any.whl (11.6 kB view details)

Uploaded Python 3

File details

Details for the file wosit-1.1.0.tar.gz.

File metadata

  • Download URL: wosit-1.1.0.tar.gz
  • Upload date:
  • Size: 10.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for wosit-1.1.0.tar.gz
Algorithm Hash digest
SHA256 47d77ee4666e5e6510713df598f8242143b0bbc96f4988c230da0c6279d6304c
MD5 1e5239b7d29b1e38bbd6663e06135e24
BLAKE2b-256 a47a3ec0a612f7d5475f9aaff99c479056941677e4c09820ad9921afe4d993b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wosit-1.1.0.tar.gz:

Publisher: python-publish.yml on mgraschevalier/WoSIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wosit-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: wosit-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for wosit-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 95f77bdb173d953bd5d90d877a8a361675734e8c7801200a385aefa82ada23db
MD5 736f3d769acb734cfd415637b6e702d6
BLAKE2b-256 1ff675ba0ac3bef763b23d0c2f0bfac3ddb6b07f30c2b036d604aa55389d5891

See more details on using hashes here.

Provenance

The following attestation bundles were made for wosit-1.1.0-py3-none-any.whl:

Publisher: python-publish.yml on mgraschevalier/WoSIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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