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.2.tar.gz (19.3 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.2-py3-none-any.whl (25.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: httporchestrator-1.0.2.tar.gz
  • Upload date:
  • Size: 19.3 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.2.tar.gz
Algorithm Hash digest
SHA256 4a7e2107364f922e25e828dc35f8abe3b2c49e1e5b38ed13116bf4c285a2a87f
MD5 03d0e52a8c20e1d024b0fb5fa176aa71
BLAKE2b-256 4c45b34acb0083ae48ff9e70896aea6064843f821ca74379c770c8bfd8e53a88

See more details on using hashes here.

Provenance

The following attestation bundles were made for httporchestrator-1.0.2.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.2-py3-none-any.whl.

File metadata

File hashes

Hashes for httporchestrator-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f495544e629334b5aa2c02965a375e9301e9ccc73e78948731725a3fe9cc69c4
MD5 e913e9fcb71b95396759b9105a461f75
BLAKE2b-256 601bbd6ebcc49686f46168cd0da2e13843426fb876ba4f08b1d62575ffcd7718

See more details on using hashes here.

Provenance

The following attestation bundles were made for httporchestrator-1.0.2-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