Skip to main content

Core functionality for Conductor's client tools

Project description

Install the job scripting DSL

Storm is a Python DSL to generate a graph of task dependencies. It consists of an API and a command-line interface. The API can be used by other tools to build a graphs of tasks. The command-line interface is convenient for validation, serialization, and more.

pip install cwstorm

Now run storm --version to test that it works.

Install for development

If you would like to contribute to the project, it's best to install in editable mode in a virtual environment.

> git clone git@github.com/ConductorTechnologies/cwstorm.git
> cd cwstorm

# Create a virtual environment
> python3 -m venv cwstorm.venv
> . cwstorm.venv/bin/activate

# Install in editable mode
> pip install -e .

> storm --version

Quick Start API

Create nodes link them together to create a graph of tasks.

You can add tasks to the job or to other tasks. The job is the root node of the graph.

from cwstorm.dsl.job import Job
from cwstorm.dsl.cmd import Cmd
from cwstorm.dsl.task import Task
from cwstorm.serializers import default

# Create a job node to hold data about the job
j = Job("Pitch Black")
j.metadata({"shot": "0130-28", "code": "PB", "producer": "Matthew Plumber"})
j.project("Pitch Black")
j.location("4A:1C:3F:7B:2E:9D")
j.comment('This is a comment about the job.')

# Add a task as a dependency of the job.
t = Task("Make Quicktime")
t.commands(Cmd( "ffmpeg", "-i", "foo.*.exr", "-c:v", "libx264", "-pix_fmt", "yuv420p", "./media/robots.mp4"))
t.hardware("cw-instance-1")
t.env({ "PATH": "/usr/local/sbin/ffmpeg" })
t.output_path("/media/")

serialized = default.serialize(self.job)
print(serialized)

Quick Start CLI

Serialize

Use the storm CLI command to serialize one of the example jobs. The pretty option generates human readable JSON output. The filename will be the same as the example but with a .json extension, and will be placed in the folder you specify.

> storm serialize -x simple_qt -f pretty ~/Desktop/graphs/
> cat ~/Desktop//graphs/simple_qt.json

Validate

Several properties of nodes have validators. The validate subcommand Validates a JSON file.

> storm validate /path/to/my_graph.json

You'll see a report in a browser window.

You can output the report to markdown if you prefer. Here's an example validation report

In order to validate a graph, the storm command uses the DSL to reconstruct the graph from JSON. See deserializer.py.

from cwstorm.deserializer import deserialize

with open("my_job.json", "r", encoding="utf-8") as fh:
    data = json.load(fh)
  
job = deserialize(data)

print("name", job.name())
print("comment", job.comment())
print("num_tasks", job.count_descendents())

Command-line interface

To see the full list of options, run:

storm serialize --help

Examples

Look through the examples folder to familiarize yourself with the API. All classes derive from Node.

For inherited nodes, see the current schema

Changelog

Version:0.6.1 -- 10 Jul 2024

  • Adds consistent docinfo options for cli and schema docs in JSON

Version:0.6.0 -- 09 Jul 2024

  • Cli can now output schema and docinfo as json - descriptions field added to facilitate this
  • Fix iter and dict so that defaulted attrs return default - with tests

Version:0.5.2 -- 03 Jul 2024

  • Remove integration ID from shotgrid

Version:0.5.0 -- 02 Jul 2024

Adds a shotgrid node.

Version:0.4.1 -- 30 Jun 2024

  • Remove validation for Cmd since it is too restrictive and just gets in the way for now
  • Adds a skulk pre_push script to update version strings, build examples, and generate schema doc
  • Improves the schema doc generation. Now includes base class info.

Version:0.4.0 -- 24 Jun 2024

  • Adds semanic coordinates (layout hints)

Version:0.3.0 -- 22 Jun 2024

  • Introduce work_node base_class for better inheritance.
  • Refactor to allow custom types to be more easily added.
  • Updates examples
  • Adds Slack and email nodes
  • Made the Cmd regex more permissive

Version:0.2.4 -- 15 Jun 2024

  • Fixes a bug where nodes with non-unique names could be created.

Version:0.2.3 -- 02 Jun 2024

  • Adds a script to automatically update the Basecamp Releases thread for this tool.
  • Auto populate the version and schema version as a temporary measure until we managew to lock down a versioning scheme.
  • Fix a regression where a conditional relied on the presence of the position property, which was removed as an optimization.

Version:0.2.2 -- 30 May 2024

  • Adds bool type to ensure preemptible has a valid value in the workflow API
  • Regenerate schema and validation examples.
  • Change the int validation mechanism to be more consistent with other types

Version:0.2.1 -- 29 May 2024

  • Remove unnecessary submission attrs.
  • Adds required field to the schema.
  • Regenerated validation example and schema html.

Version:0.2.0 -- 24 May 2024

  • Auto document validation and schema
  • Adds output_path, packages, and preemptible to Tasks
  • allow MD5s in the files dict for Uploads
  • Removes relative counts, since this should happen in the composer
  • CLI has a shortcut to output all examples to a folder
  • Remove unused serializers and commandline flag

Version:0.1.1 -- 23 Jan 2024

  • Schema tweaks
    • Remove environment from job
    • Remove cleanup from all nodes
    • Add upload node type
    • Add lifecycle property to tasks

Unreleased:

  • 0.0.1-beta.1
    • Initial CICD setup

--

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

cwstorm-0.6.1-py2.py3-none-any.whl (32.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file cwstorm-0.6.1-py2.py3-none-any.whl.

File metadata

  • Download URL: cwstorm-0.6.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 32.6 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.8.19

File hashes

Hashes for cwstorm-0.6.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 9edc33018a6533c3eda95a24f2bce5aef53751cd08885c6ad0dd1576c4eada96
MD5 f511e733e5fe5f51584c78b6c1174b92
BLAKE2b-256 7c6980911e0e906c68052298dab39e81bf237f575ff6cb36072d73037fbd5b93

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