Skip to main content

Create AWS Step Functions asl.json with Python

Project description

pystepfunctions

Create AWS Stepfunction asl.json files (state machine definition files) using python.
Pre-made tasks that are easy to use.
Test dataflow through the stepfunction using the same python code.
Visualise the stepfunction using pyvis for easier dubugging without the use of the AWS console.

Docs

https://mrhopko.github.io/pystepfunction/pystepfunction/

Installation

pip3 install pystepfunctions

Complete example

from logging import getLogger
from pystepfunction.tasks import (
    LambdaTask,
    GlueTask,
    PassTask,
    SucceedTask,
    FailTask,
)
from pystepfunction.branch import Branch
from pystepfunction.viz import BranchViz
from pystepfunction.state import StateMachine
from pystepfunction.errors import ERROR_STATE_ALL

logger = getLogger(__name__)

# create a lambda task
lambda_task = (
    LambdaTask("lambda_task", function_arn="aws::my-lambda-arn")
    .with_retry(error_equals=[ERROR_STATE_ALL], interval_seconds=1, max_attempts=3)
    .with_catcher(
        error=[ERROR_STATE_ALL],
        task=FailTask(
            "lambda_task_fail", cause="lambda task failed", error="MyLambdaError"
        ),
    )
    .with_resource_result({"Payload": {"Result": "LambdaResult"}})
    .with_output(
        result_path="$.LambdaTaskResult",
        result_selector={"SelectThis.$": "$.Payload.Result"},
    )
)

# create a glue task
glue_task = (
    GlueTask(
        "glue_task",
        job_name="my-glue-job-name",
        job_args={"job_input_arg.$": "$.LambdaTaskResult.SelectThis"},
    )
    .with_catcher(
        error=[ERROR_STATE_ALL],
        task=FailTask(
            "glue_task_fail", cause="glue task failed", error="MyGlueError"
        ),
    )
    .with_resource_result({"JobResult": "GlueResult"})
    .with_output(result_path="$.GlueTaskResult")
)

# chain them together and create a branch
lambda_task = lambda_task >> glue_task >> SucceedTask("succeeded")
branch = Branch(comment="Lambda and Glue", start_task=lambda_task)

# view the asl
print(branch)

# asl as a dict
asl = branch.to_asl()

# write the asl to a file
branch.write_asl("my_asl_file.asl.json")

# visualise the asl
BranchViz(branch).show()

# create a state machine
sm = StateMachine(state={"Input1": "Input1Value"}, logger=logger)
sm.apply_branch(branch)
sm.show_logs()

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

pystepfunction-1.1.117.tar.gz (20.6 kB view details)

Uploaded Source

Built Distribution

pystepfunction-1.1.117-py3-none-any.whl (20.1 kB view details)

Uploaded Python 3

File details

Details for the file pystepfunction-1.1.117.tar.gz.

File metadata

  • Download URL: pystepfunction-1.1.117.tar.gz
  • Upload date:
  • Size: 20.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for pystepfunction-1.1.117.tar.gz
Algorithm Hash digest
SHA256 f6702cb1c2e01f2055ed39fd9d960b3b281ca5083fbcc204a610cf5152724433
MD5 10fc53c157c8e91c56429ac196b3f3a0
BLAKE2b-256 4d5f10472ba8657d413efa3e6661ddd21651fecf8fbf466b3b61216a7a70e536

See more details on using hashes here.

File details

Details for the file pystepfunction-1.1.117-py3-none-any.whl.

File metadata

File hashes

Hashes for pystepfunction-1.1.117-py3-none-any.whl
Algorithm Hash digest
SHA256 165163fc1ecc7ed56af587a4bf9185883d992637007eba804ab3c8938e401051
MD5 974caf94d2eee24dff5e245a7f1d7fcf
BLAKE2b-256 5cbdf8cc72990b7e617be8eadffb3323b4aae4dd19c4bac98acea7597a0bd3ba

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