Skip to main content

Core functionality for Conductor's client tools

Project description

Storm

Storm is a Python DSL to generate a graph of task dependencies.

Install

For development, 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 .

# Optionally install the black formatter and some other dev tools
> pip install -r requirements.txt

Quick Start CLI

Use the storm CLI command to serialize one of the example jobs. The pretty option generates human readable JSON output.

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

If using the default serializer and you want JSON output, you can omit the --serializer and --format options.

> storm serialize -x simple_qt ~/Desktop/simple_qt.json

Visualize

You can visualize graphs on the web app. In the upper left, you'll see a menu containing some presets and an upload button. Upload the file you just made. ~/Desktop/simple_qt.json or make a new one.

Command-line interface

The command-line interface has one subcommand, serialize. It creates the argument parser dynamically based on the available examples and serializers.

storm serialize --help

Examples

The ass_comp_normal.py example is a more complex script. It builds a graph of tasks that uploads assets, generates ass files, renders them, adds optical motion blur, makes a quicktime, and notifies people.

DSL Structure

A graph consists of dag nodes with attributes. Look through the examples folder to familiarize yourself with the API.

Inheritance hierarchy is as follows:

Node

The base class. Responsible for generating getters and setters for different attributes. The idea is to have a consistent language to build the DAG, add options to nodes, and to quickly see how the graph will look. See the ATTRS lists in Job, Task, and Cmd. The types of attributes that can be added to nodes are:

  • int
  • str
  • dict
  • Cmd
  • list of int
  • list of str
  • list of Cmd

Setters return self, which allows for chaining.

Getters and setters are generated are as follows for Attribute name atr of Node n:

int

  • Setter: n.atr(value) -> self
  • Getter n.atr() -> int

str

  • Setter: n.atr(value) -> self
  • Getter n.atr() -> str

dict

  • Setter: n.atr({"key": "VAL", ...}) -> self
  • Updater n.update_atr({"key2": "VAL2", ...}) -> self
  • Getter n.atr() -> dict

Cmd

  • Setter: n.atr(Cmd(*args)) -> self
  • Getter n.atr() -> Cmd

list:int

  • Setter: n.atr(*args) -> self
  • Extender n.push_atr(*args) -> self
  • Getter n.atr() -> list of int

list:str

  • Setter: n.atr(*args) -> self
  • Extender n.push_atr(*args) -> self
  • Getter n.atr() -> list of str

list:Cmd

  • Setter: n.atr(Cmd(*args), Cmd(*args), ...) -> self
  • Extender n.push_atr(Cmd(*args), Cmd(*args), ...) -> self
  • Getter n.atr() -> list of Cmd

list:dict

  • Setter: n.atr({"key": "VAL", ...}, {"key": "VAL", ...}, ...) -> self
  • Extender n.push_atr({"key": "VAL", ...}, {"key": "VAL", ...}, ...) -> self
  • Getter n.atr() -> list of dict

DagNode(Node)

Any node used for building the DAG - Currently Job, Task, and Upload. DagNode has methods to add children and to manage serialization of the hierarchy.

Task(DagNode)

Tasks contain commands. They may be added to other Tasks as children or to the Job. A task may be the child of many parents.

Upload(DagNode)

Uploads contain lists of filepaths. They can be added anywhere a Task can be added. The only difference is their set of properties.

Job(DagNode)

A job is like a Task, but there can be only one and it cannot have parents. Think of it as a container for all other tasks and uploads.

Cmd(Node)

Commands currently exist in the "commands" or "cleanup" attributes of tasks. Lists of commands in a task run in serial.

Changelog

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

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

cwstorm-0.1.1-py2.py3-none-any.whl (22.1 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

  • Download URL: cwstorm-0.1.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 22.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for cwstorm-0.1.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 9ec7a03db1fe23db7ea4f27de60112fdf89b0e1c506dcc9c0aa1fc45902cf253
MD5 752245b288e690459d854acd7b53bd60
BLAKE2b-256 099ed138370b5a3e6ecb7223873a547b9a5081e9fb305ba10f0672c962057a94

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