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.redis_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.6.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

hymir-0.1.6-py3-none-any.whl (14.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: hymir-0.1.6.tar.gz
  • Upload date:
  • Size: 12.3 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.6.tar.gz
Algorithm Hash digest
SHA256 13fffd6e8b3bdcd09166a250557e98d0cf212f38df099eaf2fbe09c9a7d2f922
MD5 b46d200e5eb953cbcd37c77be2c26f87
BLAKE2b-256 72a3cad7a054a18391fbd304ad4f94742b7aa42cff2a880f8a17434ef266c98e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hymir-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 14.9 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.6-py3-none-any.whl
Algorithm Hash digest
SHA256 3afe66908c43161d261d1557120740807e1b112b35fb69edd826fe7ab53c84fd
MD5 a29e79c402dbf335d0bc9872458a6ea2
BLAKE2b-256 e415cbb7a927fbe90d467d0640c11d05fd7635f4f70ebcb89a55b65d8f0fb468

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