Skip to main content

ServiceBridge SDK for Python — RPC, events, HTTP middleware

Project description

service-bridge

PyPI version License Python

The Unified Bridge for Microservices Interaction

Python SDK for ServiceBridge — production-ready RPC, durable events, workflows, jobs, and distributed tracing in a single SDK. One Go runtime and PostgreSQL.

┌─────────────────────────────────────────────────────────────────┐
│                    BEFORE: 10 moving parts                      │
│  Istio · Envoy · RabbitMQ · Temporal · Jaeger · Consul ·       │
│  cert-manager · Alertmanager · cron · custom glue              │
└─────────────────────────────────────────────────────────────────┘
                              ↓
┌─────────────────────────────────────────────────────────────────┐
│               AFTER: ServiceBridge + PostgreSQL                 │
│  RPC · Events · Workflows · Jobs · Tracing · mTLS · Dashboard  │
│            One SDK  ·  One runtime  ·  Zero sidecars            │
└─────────────────────────────────────────────────────────────────┘

Table of Contents


Why ServiceBridge

Problem Without ServiceBridge With ServiceBridge
Service-to-service calls Istio/Envoy sidecar proxy per pod Direct SDK-to-worker gRPC, zero proxy hops
Async messaging Kafka/RabbitMQ + retry logic + DLQ setup Built-in durable events with retry, DLQ, replay
Background jobs Celery + Redis + cron daemon Built-in cron and delayed jobs
Workflow orchestration Temporal/Conductor cluster + persistence Built-in DAG workflows
Distributed tracing Jaeger/Tempo + OTEL collector + dashboards Built-in traces + realtime UI
Service discovery Consul/etcd + DNS glue Built-in registry + health-aware balancing
mTLS cert-manager + Vault PKI Auto-provisioned certs from service key

Result: 10 tools → 1 runtime. One Go binary + PostgreSQL replaces the entire stack.


Use Cases

Microservice communication — Replace sidecar mesh with direct RPC calls. Get sub-millisecond overhead instead of double proxy hop latency.

Event-driven architecture — Publish durable events with fan-out, retries, DLQ, idempotency, and server-side filtering. No broker infrastructure to manage.

Background job scheduling — Cron jobs, delayed execution, and job-triggered workflows in a single API. No Redis, no Celery, no separate queue workers.

Saga / distributed transactions — DAG workflows with typed steps (rpc, event, event_wait, sleep, child workflow). Compensations and rollbacks via workflow step dependencies.

AI agent orchestration — Stream LLM tokens via realtime run streams with replay. Orchestrate multi-step AI pipelines as workflows.

Full-stack observability — Every RPC call, event delivery, workflow step, and HTTP request traced automatically. One timeline, one dashboard. Prometheus metrics and Loki-compatible log API included.


Quick Start

1. Install

pip install service-bridge

For HTTP middleware:

pip install service-bridge[fastapi]
# or
pip install service-bridge[flask]

2. Create a worker (service that handles calls)

import asyncio
from service_bridge import ServiceBridge

sb = ServiceBridge("0.0.0.0:14445", "your-service-key", "payments")

@sb.handle_rpc("charge")
async def charge(payload: dict) -> dict:
    return {"ok": True, "tx_id": f"tx_{int(asyncio.get_event_loop().time())}"}

asyncio.run(sb.serve())

3. Call it from another service

import asyncio
from service_bridge import ServiceBridge

sb = ServiceBridge("0.0.0.0:14445", "your-service-key", "orders")

async def main():
    result = await sb.rpc("payments/charge", {
        "order_id": "ord_42",
        "amount": 4990,
    })
    print(result["tx_id"])

asyncio.run(main())

That's it. No broker, no sidecar, no proxy — direct gRPC call between services.


Runtime Setup

The SDK connects to a ServiceBridge runtime. The fastest way to start:

bash <(curl -fsSL https://servicebridge.dev/install.sh)

This installs ServiceBridge + PostgreSQL via Docker Compose and generates an admin password automatically. After install, the dashboard is at http://localhost:14444 and the gRPC control plane at 0.0.0.0:14445.

For manual Docker Compose setup, configuration reference, and all runtime environment variables, see the Runtime Setup section in the main SDK README.


End-to-End Example

A complete order flow: RPC → Event → Event handler with streaming.

import asyncio
from service_bridge import ServiceBridge, EventContext

# --- Payments service (worker) ---

payments = ServiceBridge("0.0.0.0:14445", "key", "payments")

@payments.handle_rpc("charge")
async def charge(payload: dict, ctx) -> dict:
    await ctx.stream.write({"status": "charging", "order_id": payload["order_id"]}, "progress")
    # ... charge logic ...
    await ctx.stream.write({"status": "charged"}, "progress")
    return {"ok": True, "tx_id": f"tx_{int(asyncio.get_event_loop().time())}"}

asyncio.run(payments.serve())
# --- Orders service (caller + event publisher) ---

orders = ServiceBridge("0.0.0.0:14445", "key", "orders")

async def process_order():
    charge = await orders.rpc("payments/charge", {
        "order_id": "ord_42",
        "amount": 4990,
    })

    await orders.event("orders.completed", {
        "order_id": "ord_42",
        "tx_id": charge["tx_id"],
    }, idempotency_key="order:ord_42:completed", headers={"source": "checkout"})

asyncio.run(process_order())
# --- Notifications service (event consumer) ---

notifications = ServiceBridge("0.0.0.0:14445", "key", "notifications")

@notifications.handle_event("orders.*", group_name="notifications.orders")
async def on_order(payload: dict, ctx: EventContext) -> None:
    if not payload.get("order_id"):
        ctx.reject("missing_order_id")
        return
    await ctx.stream.write({"status": "sending_email"}, "progress")
    # ... send email ...

asyncio.run(notifications.serve())
# --- Orchestrate as a workflow ---

from service_bridge import WorkflowStep

await orders.workflow("order.fulfillment", [
    WorkflowStep(id="reserve",  type="rpc",        ref="inventory/reserve"),
    WorkflowStep(id="charge",   type="rpc",        ref="payments/charge",     deps=["reserve"]),
    WorkflowStep(id="wait_dlv", type="event_wait", ref="shipping.delivered",  deps=["charge"]),
    WorkflowStep(id="notify",   type="event",      ref="orders.fulfilled",    deps=["wait_dlv"]),
])

Every step above — RPC, event publish, event delivery, workflow execution — appears in a single trace timeline in the built-in dashboard.


Platform Features

Communication

  • Direct RPC — zero-hop gRPC calls with retries, deadlines, and mTLS identity
  • Durable Events — fan-out delivery, at-least-once guarantees, retries, DLQ, replay, idempotency
  • Realtime Streams — live chunks with replay for AI/progress/log streaming
  • Service Discovery — automatic endpoint resolution and round-robin balancing
  • HTTP Middleware — FastAPI and Flask instrumentation with automatic trace propagation

Orchestration

  • Workflows — DAG steps: rpc, event, event_wait, sleep, child workflow
  • Jobs — cron, delayed, and workflow-triggered scheduling

Security

  • Auto mTLS — automatic certificate provisioning for workers
  • Access Policy — service-level caller/target restrictions and RBAC

Observability

  • Unified Tracing — single trace timeline across HTTP, RPC, events, workflows, and jobs
  • Metrics — Prometheus-compatible /metrics endpoint (30+ metric families)
  • Logs — structured log ingest with Loki-compatible query API; auto-captures Python logging module
  • Alerts — runtime alerts for delivery failures, errors, and service health
  • Dashboard — realtime web UI for runs, events, workflows, jobs, DLQ, service map, and service keys

How It Compares

Concern Istio + Envoy Dapr Temporal + Kafka ServiceBridge
RPC data path Sidecar proxy hop Sidecar/daemon hop N/A Direct (proxyless)
Service discovery K8s control plane Sidecar placement External registry Built-in registry
Durable events + DLQ External broker Pub/Sub component Kafka + consumers Built-in
Workflow orchestration External engine External engine Built-in Built-in
Job scheduling External cron/queue External scheduler External scheduler Built-in
Traces + UI Jaeger/Tempo + dashboards OTEL backend + dashboards Temporal UI Built-in
Logs for Grafana Loki + Promtail pipeline Log pipeline Log pipeline Built-in Loki API
Metrics App/exporter setup App/exporter setup Multiple exporters Built-in /metrics
Security model Mesh PKI + policy Deployment-dependent mTLS Mixed Service keys + auto mTLS
Operational footprint Multi-component mesh Runtime + sidecars Workflow + broker + DB One binary + PostgreSQL

API Reference

Cross-SDK parity notes

ServiceBridge keeps the core API surface aligned across Node.js, Go, and Python: constructor, RPC, events, jobs, workflows, run_workflow, streams, serve/stop, and typed errors.

Constructor-level defaults for timeout, retries, and retry delay are available across all three SDKs. Known language-level differences:

  • Python uses decorators for handler registration (@handle_rpc, @handle_event)
  • Node-only handler hints (handleRpc.timeout/retryable/concurrency, handleEvent.concurrency/prefetch) are not present in Python
  • Node-only serve() fields (instanceId, weight, transport, tls) are not present in Python serve()
  • Python has no public get_trace_context() helper; pass trace_id explicitly or use middleware state

ServiceBridge(grpc_url, service_key, service_name, opts?)

from service_bridge import ServiceBridge, Options

sb = ServiceBridge(
    grpc_url="0.0.0.0:14445",
    service_key="sb_live_...",
    service_name="orders",
    opts=Options(
        admin_url="http://0.0.0.0:14444",
        heartbeat_interval_ms=10_000,
        capture_logs=True,
        queue_max_size=1000,
        queue_overflow="drop-oldest",
        discovery_refresh_ms=10_000,
        timeout_ms=30_000,
        retries=3,
        retry_delay_ms=300,
    ),
)

Options:

Option Type Default Description
admin_url str derived from grpc_url HTTP admin base URL.
admin_session_cookie str "" Admin session cookie for browser-authenticated endpoints (e.g. cancel_workflow_run).
admin_csrf_token str "" CSRF token paired with admin_session_cookie for unsafe HTTP methods.
admin_origin str "" Origin header required by admin CSRF/origin checks.
heartbeat_interval_ms int 10000 Base heartbeat period for worker registrations.
skip_tls bool False Disable mTLS provisioning (local dev).
capture_logs bool True Auto-attach a logging handler that forwards logs to ServiceBridge.
queue_max_size int 1000 Max offline queue size for control-plane writes.
queue_overflow str "drop-oldest" Overflow strategy: "drop-oldest", "drop-newest", "error".
discovery_refresh_ms int 10000 Discovery refresh period for endpoint updates.
timeout_ms int 30000 Global default RPC timeout in ms. Per-call timeout_ms overrides.
retries int 3 Global default retry count. Per-call retries overrides.
retry_delay_ms int 300 Base retry delay in ms. Exponential backoff: delay * 2^(attempt-1).

rpc(fn, payload?, *, retries?, timeout_ms?, retry_delay_ms?, trace_id?)

result = await sb.rpc(
    "payments/charge",
    {"order_id": "ord_42", "amount": 4990},
    retries=3,
    timeout_ms=5000,
    retry_delay_ms=500,
)
Parameter Type Default Description
fn str required Function name (e.g. "payments/charge").
payload Any None JSON-serialisable payload.
retries int from Options (3) Retry count (0 = no retry).
timeout_ms int from Options (30000) Per-call timeout in ms.
retry_delay_ms int from Options (300) Base retry delay in ms. Exponential backoff: delay * 2^(attempt-1).
trace_id str auto Override trace ID.

event(topic, payload?, *, idempotency_key?, trace_id?, headers?)

message_id = await sb.event(
    "orders.created",
    {"order_id": "ord_42"},
    idempotency_key="order:ord_42",
    headers={"source": "checkout"},
)
Parameter Type Default Description
topic str required Dot-separated event topic.
payload Any None JSON-serialisable payload.
idempotency_key str "" Dedup key for safe publishing.
trace_id str auto Override trace ID.
headers dict[str, str] None Custom metadata headers.

Returns message_id (empty string when buffered offline).


job(target, opts?)

from service_bridge import ScheduleOpts

job_id = await sb.job("billing/collect", ScheduleOpts(
    cron="0 * * * *",
    timezone="UTC",
    via="rpc",
))

ScheduleOpts:

Field Type Default Description
cron str "" Cron expression.
delay_ms int 0 One-shot delay in ms.
timezone str "UTC" IANA timezone.
misfire str "fire_now" "fire_now" or "skip".
via str "rpc" "rpc", "event", or "workflow".
retry_policy_json str "" Retry policy JSON.

workflow(name, steps, opts?)

await sb.workflow(name: str, steps: list[WorkflowStep], opts: WorkflowOpts | None = None) -> None

Registers (or updates) a workflow definition. If opts is None, defaults are used.

from service_bridge import WorkflowStep

await sb.workflow("order.fulfillment", [
    WorkflowStep(id="reserve", type="rpc", ref="inventory/reserve"),
    WorkflowStep(id="charge", type="rpc", ref="payments/charge", deps=["reserve"]),
    WorkflowStep(id="wait_5m", type="sleep", duration_ms=300_000, deps=["charge"]),
    WorkflowStep(id="notify", type="event", ref="orders.fulfilled", deps=["wait_5m"]),
])

With explicit limits:

from service_bridge import ServiceBridge, WorkflowOpts, WorkflowStep

await sb.workflow("checkout.flow", steps, WorkflowOpts(step_timeout_ms=60_000))

WorkflowOpts:

@dataclass
class WorkflowOpts:
    state_limit_bytes: int = 0  # default 262144 (256 KB) when zero
    step_timeout_ms: int = 0    # default 30000 (30 s) when zero
Field Type Default Description
state_limit_bytes int 262144 (256 KB) Maximum serialized state size in bytes. 0 uses the default.
step_timeout_ms int 30000 (30 s) Default per-step timeout in milliseconds. 0 uses the default.

WorkflowStep:

Field Type Description
id str Unique step identifier in the DAG.
type str "rpc", "event", "event_wait", "sleep", "workflow".
ref str Required for rpc, event, event_wait, workflow.
deps list[str] Dependencies. Empty/omitted means root step.
if_expr str Optional filter expression (step is skipped if false).
timeout_ms int Optional timeout for rpc and event_wait steps.
duration_ms int Required for sleep steps.

run_workflow(name, input?)

async def run_workflow(name: str, input: Any = None) -> dict[str, str]

Starts a workflow run on demand. The workflow must be registered first via workflow(). An alternative to scheduling via job(target, ScheduleOpts(via="workflow")) — triggers the run immediately.

Parameter Type Default Description
name str required Name of a previously registered workflow.
input Any None Optional JSON-serializable input payload.

Returns a dict with runId and traceId keys. Use traceId with watch_run() to observe execution in real time.

result = await sb.run_workflow("user.onboarding", {"userId": "u_123"})

cancel_workflow_run(run_id)

await sb.cancel_workflow_run("run_01HQ...XYZ")

@handle_rpc(fn, *, allowed_callers?, schema?)

Decorator that registers an RPC handler.

@sb.handle_rpc("charge", allowed_callers=["orders"])
async def charge(payload: dict) -> dict:
    return {"ok": True}

# With full context (stream + trace):
@sb.handle_rpc("ai/generate")
async def generate(payload: dict, ctx) -> dict:
    await ctx.stream.write({"token": "Hello"}, "output")
    await ctx.stream.write({"token": " world"}, "output")
    return {"text": "Hello world"}

@handle_event(topic, group_name?, retry_policy_json?, filter_expr?)

Decorator that registers an event consumer handler.

@sb.handle_event("orders.*", group_name="payments.orders")
async def on_order(payload: dict, ctx: EventContext) -> None:
    if not payload.get("order_id"):
        ctx.reject("missing_order_id")
        return
    await ctx.stream.write({"status": "processing"}, "progress")

EventContext helpers:

  • ctx.retry(delay_ms=1000) — request redelivery with delay
  • ctx.reject(reason) — reject permanently (moves to DLQ)
  • ctx.topic, ctx.group_name, ctx.message_id, ctx.attempt, ctx.headers — delivery metadata
  • ctx.stream.write(data, key) — append real-time chunks to run stream

Duplicate group_name registration raises ValueError.


serve(*, host?, skip_tls?)

await sb.serve(host="0.0.0.0")
# or
asyncio.run(sb.serve())

Blocks until cancelled (for example, by process signal handling).

Parameter Type Default Description
host str "0.0.0.0" Bind host for the worker gRPC server.
skip_tls bool from Options Disable mTLS for local dev.

instanceId, weight, transport, and per-serve tls are Node-only serve() fields.


stop()

await sb.stop()

Gracefully shuts down: flushes logs, drains offline queue, closes gRPC channels.


watch_run(run_id, opts?)

from service_bridge import WatchRunOpts

async for event in sb.watch_run(run_id, WatchRunOpts(key="output", from_sequence=0)):
    print(event.data)
    if event.done:
        break

run_id is the stream identifier used by ctx.stream.write(...) (typically a trace ID).

WatchRunOpts:

Field Type Default Description
key str "" Stream key filter ("" = all keys).
from_sequence int 0 Replay from sequence cursor.

RunStreamEvent:

Field Type Description
sequence int Monotonic sequence number.
key str Stream lane key.
data Any JSON-decoded chunk payload.
done bool True when terminal run_complete arrives.
run_status str Final status on terminal event.

HTTP Span Utilities

start_http_span(method, path, trace_id?, parent_span_id?)

span = sb.start_http_span("GET", "/health")
try:
    # handler logic
    span.end(status_code=200)
except Exception as e:
    span.end(error=str(e))

register_http_endpoint(method, route, ...)

sb.register_http_endpoint(
    "GET", "/users/{id}",
    request_schema_json='{"type":"object"}',
    transport="http",
)
Parameter Type Default Description
method str required HTTP method.
route str required Route pattern, e.g. "/users/{id}".
instance_id str "" Stable identifier for this process.
endpoint str "" Reachable address, e.g. "http://10.0.0.1:8000".
allowed_callers list[str] None Service names allowed to call (RBAC).
request_schema_json str "" JSON schema for request validation metadata.
response_schema_json str "" JSON schema for response validation metadata.
transport str "" Transport label (e.g. "http", "https").

A periodic heartbeat is automatically sent to keep the HTTP endpoint alive in the registry.


HTTP Plugins

FastAPI (service_bridge.http.fastapi)

pip install service-bridge[fastapi]
from fastapi import FastAPI, Request
from service_bridge import ServiceBridge
from service_bridge.http.fastapi import ServiceBridgeMiddleware, get_client

sb = ServiceBridge("0.0.0.0:14445", "key", "api")
app = FastAPI()

app.add_middleware(ServiceBridgeMiddleware, client=sb, exclude_paths=["/health"], auto_register=True)

@app.get("/users/{user_id}")
async def get_user(user_id: str, request: Request):
    client = get_client(request)
    user = await client.rpc("users/get", {"id": user_id})
    return user

The middleware:

  • Injects the SDK client into request.state.servicebridge_client
  • Starts/ends HTTP span automatically
  • Sets x-trace-id response header
  • Auto-registers route patterns in the catalog

Flask (service_bridge.http.flask)

pip install service-bridge[flask]
from flask import Flask, g
from service_bridge import ServiceBridge
from service_bridge.http.flask import init_servicebridge

sb = ServiceBridge("0.0.0.0:14445", "key", "api")
app = Flask(__name__)
init_servicebridge(app, sb, auto_register=True)

@app.get("/users/<user_id>")
def get_user(user_id):
    # g.service_bridge, g.trace_id, g.span_id available
    return {"id": user_id}

The middleware:

  • Injects the SDK client into g.service_bridge
  • Provides g.trace_id and g.span_id in handlers
  • Starts/ends HTTP span automatically
  • Sets x-trace-id response header

Configuration

TLS behavior

  • If skip_tls=False (default), the SDK auto-provisions mTLS certificates through the admin API.
  • Set skip_tls=True for local development without a running cert server.
  • mTLS requires the cryptography package: pip install service-bridge[mtls]

Offline queue behavior

When the control plane is unavailable, SDK queues write operations (event, job, workflow, telemetry writes).

  • Queue size: queue_max_size (default: 1000)
  • Overflow policy: queue_overflow (default: "drop-oldest")
  • Return values for queued writes may be empty strings until flushed

Log capture

By default (capture_logs=True), a ServiceBridgeLogHandler is attached to the root Python logger. All logging.info(), logging.error(), etc. calls are automatically shipped to ServiceBridge with batching (100 records or 500ms flush interval).


Environment Variables

The SDK requires values you pass into ServiceBridge(...). Common setup:

Variable Required Example Description
SERVICEBRIDGE_URL yes 0.0.0.0:14445 gRPC control plane URL
SERVICEBRIDGE_SERVICE_KEY yes sb_live_... Service authentication key
SERVICEBRIDGE_SERVICE yes (worker mode) orders Service name in registry
SERVICEBRIDGE_ADMIN_URL optional http://0.0.0.0:14444 Explicit admin API base URL
import os
from service_bridge import ServiceBridge, Options

sb = ServiceBridge(
    os.environ.get("SERVICEBRIDGE_URL", "0.0.0.0:14445"),
    os.environ["SERVICEBRIDGE_SERVICE_KEY"],
    os.environ.get("SERVICEBRIDGE_SERVICE", "orders"),
    opts=Options(admin_url=os.environ.get("SERVICEBRIDGE_ADMIN_URL", "")),
)

Error Handling

ServiceBridgeError is exported for normalized SDK and runtime errors.

from service_bridge import ServiceBridge, ServiceBridgeError

try:
    await sb.rpc("payments/charge", {"order_id": "ord_1"})
except ServiceBridgeError as e:
    print(e.component, e.operation, e.severity, e.retryable, e.code)
    raise
Field Type Description
component str SDK subsystem (for example, "rpc" or "event").
operation str Operation that failed.
severity str "fatal", "retriable", or "ignorable".
retryable bool Whether retry is recommended.
code str | None gRPC status code string (when provided).

When to Use / When Not to Use

ServiceBridge is a good fit when you:

  • Have 3+ microservices that need to communicate via RPC, events, or both
  • Want RPC + events + workflows + jobs without managing separate infrastructure for each
  • Need end-to-end tracing across all communication patterns in one timeline
  • Want to eliminate sidecar proxies and reduce operational overhead
  • Need durable event delivery with retry, DLQ, and replay without running a broker
  • Are building AI/LLM pipelines and need realtime streaming with replay

Consider alternatives when you:

  • Run a single monolith with no service decomposition plans
  • Need ultra-high-throughput event streaming (100K+ msg/s sustained) — Kafka is purpose-built for this
  • Need a full API gateway with rate limiting, auth plugins, and request transformation — use Kong/Envoy Gateway
  • Already have a mature Istio/Linkerd mesh and only need traffic management (no events/workflows/jobs)
  • Need multi-region event replication — ServiceBridge currently targets single-region deployments

FAQ

How does ServiceBridge handle service failures? RPC calls have configurable retries with exponential backoff. Events are durable (PostgreSQL-backed) with at-least-once delivery per consumer group. Failed deliveries are retried according to policy, then moved to DLQ. Workflows track step state and can be resumed.

Is there vendor lock-in? ServiceBridge is self-hosted. The runtime is a single Go binary + PostgreSQL. SDK calls map to standard patterns (RPC, pub/sub, cron) — migrating away means replacing SDK calls with equivalent library calls.

How does tracing work without an OTEL collector? The SDK automatically reports trace spans for every RPC call, event publish/delivery, workflow step, and HTTP request. The runtime stores traces in PostgreSQL and serves them via the built-in dashboard and a Loki-compatible API for Grafana integration.

Can I use ServiceBridge alongside existing infrastructure? Yes. You can adopt incrementally — start with RPC between two services, add events later, then workflows. ServiceBridge doesn't require replacing your existing broker or mesh all at once.

What happens when the control plane is down? In-flight direct RPC calls continue working (they go service-to-service, not through the control plane). New discovery lookups, event publishes, and telemetry writes are queued in the SDK offline queue and flushed when the control plane recovers.

What databases does the runtime support? PostgreSQL 16+. The runtime uses PostgreSQL for all persistence: traces, events, workflows, jobs, service registry, and configuration.


Community and Support


License

Free for non-commercial use. Commercial use requires a separate license. See LICENSE.

Copyright (c) 2026 Eugene Surkov.


Keywords

service-bridge · servicebridge · pip install service-bridge · Python SDK · asyncio microservices · RPC · gRPC · event bus · event-driven · distributed tracing · workflow orchestration · background jobs · cron · mTLS · service mesh · service discovery · zero sidecar · Istio alternative · RabbitMQ alternative · Celery alternative · Temporal alternative · Jaeger alternative · PostgreSQL · Docker · Kubernetes · DLQ · dead letter queue · saga · distributed transactions · AI agent orchestration · FastAPI middleware · Flask middleware · HTTP middleware · observability · Prometheus · tracing · service catalog · durable events · retries · idempotency · auto mTLS · runtime dashboard · production ready · microservice communication · Python 3.10+

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

service_bridge-1.0.7.tar.gz (66.2 kB view details)

Uploaded Source

Built Distribution

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

service_bridge-1.0.7-py3-none-any.whl (46.3 kB view details)

Uploaded Python 3

File details

Details for the file service_bridge-1.0.7.tar.gz.

File metadata

  • Download URL: service_bridge-1.0.7.tar.gz
  • Upload date:
  • Size: 66.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for service_bridge-1.0.7.tar.gz
Algorithm Hash digest
SHA256 76ef22b71da0bc579c82123025aa2903c6cb5b11fecb69fc6645edb3e2b79147
MD5 986e968a2ffbb1eb13b6d0c6114c07ae
BLAKE2b-256 8409adf7709cd4d3988a4e18f0501fbf4a06e464a4194bc2e471c4e1e9a707e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for service_bridge-1.0.7.tar.gz:

Publisher: release.yml on service-bridge/sdk

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

File details

Details for the file service_bridge-1.0.7-py3-none-any.whl.

File metadata

  • Download URL: service_bridge-1.0.7-py3-none-any.whl
  • Upload date:
  • Size: 46.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for service_bridge-1.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 95dcc9f6077f621a9461eb72d4c09cc2ae6eebd9b08c1ed90a65dd350cbd0fe7
MD5 24369a5fd52a5c6ba5f6ccb1a75b9a92
BLAKE2b-256 f014ef12f6c5a6269ef530ed80bfb965c744d59e8fea06db6f67fff8cb13bfb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for service_bridge-1.0.7-py3-none-any.whl:

Publisher: release.yml on service-bridge/sdk

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