Skip to main content

Simple workflows.

Project description

Hymir

Hymir is a python library for creating and running simple workflows by composing together Chains (which run sequentially) and Groups (which run in parallel) of jobs.

Hymir is built on top of redis for intermediate storage and tracking workflow state, and comes with an Executor for running the workflows using Celery.

Installation

pip install hymir

Usage

Using the @job decorator is the simplest way to define a job. The decorated function should return a Success, Failure, Retry, or CheckLater object. The only limitations are:

  • The decorated function must be importable from other files (from mymodule import myjob should work)
  • The outputs and inputs of a job must be JSON-safe.

When jobs depend on the output of other jobs, you can specify the inputs of the job using the inputs parameter of the @job decorator and the output of the job using the output parameter.

from hymir.job import Success
from hymir.config import Config, set_configuration
from hymir.executors.celery import CeleryExecutor
from hymir.workflow import (
    Workflow,
    job,
    Group,
    Chain,
)


@set_configuration
def set_config(config: Config):
    config.backend_url = "redis://localhost:6379/0"
    
    
@job(output="words")
def uppercase_word(word: str):
    return Success(word.upper())


@job(inputs=["words"], output="count")
def count_uppercase_words(words: list[str]):
    count = sum(1 for word in words if word.isupper())
    return Success(count)


workflow = Workflow(
    Chain(
        Group(
            uppercase_word("hello"),
            uppercase_word("world"),
        ),
        count_uppercase_words()
    )
)

# This assumes you've already setup & configured a celery app before you
# get here.
executor = CeleryExecutor()
workflow_id = executor.run(workflow)

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

hymir-0.1.1.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

hymir-0.1.1-py3-none-any.whl (13.5 kB view details)

Uploaded Python 3

File details

Details for the file hymir-0.1.1.tar.gz.

File metadata

  • Download URL: hymir-0.1.1.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.11.8 Linux/6.5.0-1016-azure

File hashes

Hashes for hymir-0.1.1.tar.gz
Algorithm Hash digest
SHA256 342760902324fdc2b157e962cb4eb1bcf90fa6520bde02dd0f4b142ff563c32a
MD5 aef49149eb25b2461c23c210a52ede2c
BLAKE2b-256 387c30bbccb999a1ac5483735ce8b10fedd50208e2cc76525b21df6989a585fe

See more details on using hashes here.

File details

Details for the file hymir-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: hymir-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 13.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.11.8 Linux/6.5.0-1016-azure

File hashes

Hashes for hymir-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 31f777df2adfd390dfa4bf8a7f60616158cd8315affcea926ec2579b4a2afd39
MD5 003f004d18bfd730747a85c95d3ba557
BLAKE2b-256 42b4dba2b394d45057d43a43a2637fc7b903ab94c23ddf5da17d64544d7581e6

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