Skip to main content

HTTP workflow orchestration engine.

Project description

httporchestrator

httporchestrator is a small library for explicit multi-step HTTP flows with a single shared state.

Public API

  • Flow defines a flow.
  • RequestStep defines one HTTP request step.
  • ConditionalStep conditionally runs a step.
  • RepeatableStep repeats a step run_while a predicate stays true.
  • CallFlow runs another flow and exports selected state back to the parent.
  • Flow.run() returns a WorkflowRun.

Quick Start

from httporchestrator import Flow, RequestStep

flow = Flow(
    name="echo test",
    base_url="https://postman-echo.com",
    steps=(
        RequestStep("load token")
        .get("/get")
        .params(foo="bar")
        .capture("saved_foo", lambda response, state: response.json()["args"]["foo"])
        .check(lambda response, state: response.status_code == 200, "request should succeed"),
        RequestStep("post extracted value")
        .post("/post")
        .json(lambda state: {"foo": state["saved_foo"]})
        .check(
            lambda response, state: response.json()["json"]["foo"] == "bar",
            "posted payload should contain the captured value",
        ),
    ),
).export(["saved_foo"])

run = flow.run()
assert run.success
assert run.exported["saved_foo"] == "bar"

Step Phases

RequestStep steps execute in a fixed order:

  1. Step-local .state(...) values are resolved against the current flow state.
  2. .before(fn) callbacks can update request-time state.
  3. RequestStep URL, headers, params, body, and JSON are resolved.
  4. The HTTP request is sent.
  5. .capture(...), .after(fn), and .check(...) run in order.
  6. The produced state updates are merged back into the flow state.

Callback contracts:

  • .before(fn) takes state and must return a mapping or None.
  • .after(fn) takes response, state and must return a mapping or None.
  • .capture(name, fn) saves one named value into state.
  • .check(fn, message="") raises ValidationFailure when the assertion returns False or throws.

Nested and Conditional Flows

from httporchestrator import CallFlow, Flow, RequestStep, ConditionalStep

child = Flow(
    name="health check",
    base_url="https://postman-echo.com",
    steps=(
        RequestStep("ping")
        .get("/get")
        .capture("ok", lambda response, state: response.status_code == 200)
        .check(lambda response, state: response.status_code == 200, "health check failed"),
    ),
).export(["ok"])

parent = Flow(
    name="parent",
    steps=(
        CallFlow("run health check").use(child, flow_name="nested health check").export("ok"),
        ConditionalStep(RequestStep("optional ping").get("https://postman-echo.com/get")).run_when(lambda state: state["ok"] is True),
    ),
).export(["ok"])

Runtime Model

  • WorkflowRun.summary contains the overall result.
  • WorkflowRun.session_variables contains the final flow state.
  • WorkflowRun.exported contains only the configured exported values.
  • StepResult.state_updates contains the state written by that step.

Fetchers

Use create_fetcher() for provider auto-detection:

from fetchers.fetcher_registry import create_fetcher
from fetchers.utils import Mode

fetcher = create_fetcher(
    "https://wetransfer.com/downloads/TRANSFER_ID/SECURITY_HASH",
    mode=Mode.INFO,
    save_path="downloads",
)
run = fetcher.run()
print(run.summary.success)

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

httporchestrator-1.0.1.tar.gz (18.4 kB view details)

Uploaded Source

Built Distribution

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

httporchestrator-1.0.1-py3-none-any.whl (24.7 kB view details)

Uploaded Python 3

File details

Details for the file httporchestrator-1.0.1.tar.gz.

File metadata

  • Download URL: httporchestrator-1.0.1.tar.gz
  • Upload date:
  • Size: 18.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for httporchestrator-1.0.1.tar.gz
Algorithm Hash digest
SHA256 0e08765a2c25d53d239937c7b3804d661595999b0f4e1bacb42a5d3680ea0363
MD5 0743c32db498e028ecd1803e1729176b
BLAKE2b-256 1abff01d6191e5535f77664037f79cc0809bfe4bbefa9a73880d999dc1c094fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for httporchestrator-1.0.1.tar.gz:

Publisher: release.yml on shahar99s/httporchestrator.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file httporchestrator-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for httporchestrator-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5a86837b142a3b27f60f9cbfcc7bb7fd3b3ea6e48f68b0230e9190272cef1a16
MD5 43c4cfa3d1e4fbd5162f4bbf6914a728
BLAKE2b-256 9f7f2c590819735705e479f21e7ab41336726000861bda1d2f451de707bb29f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for httporchestrator-1.0.1-py3-none-any.whl:

Publisher: release.yml on shahar99s/httporchestrator.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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