nn-webhooks-sdk (Python)
Official Python SDK for NimbusNexus Webhooks — publish events, manage your endpoints / keys / deliveries, and verify the webhooks you receive.
pip install nn-webhooks-sdk
Verify an incoming webhook (subscribers)
When webhookd delivers a webhook it signs the body with your endpoint's signing secret. Always verify the signature before trusting the payload — it proves the request really came from webhookd and wasn't tampered with or replayed.
from nn_webhooks import verify
# In your webhook handler — pass the RAW request body bytes (do not re-serialize the JSON):
ok = verify(
secret=ENDPOINT_SIGNING_SECRET,
raw_body=request.body,
signature=request.headers["X-Webhook-Signature"],
timestamp=request.headers["X-Webhook-Timestamp"],
)
if not ok:
return Response(status_code=400) # forged, tampered, or outside the 300s replay window
Publish an event (producers)
from nn_webhooks import Client, WebhookdAPIError
with Client("https://webhooks.example.com", api_key="whsk_…") as wh:
try:
event = wh.publish(
"order.created",
{"order_id": "ord_123", "total": 4200},
idempotency_key="order-123", # makes the publish safe to retry
)
print(event.event_uid, event.deliveries_created)
except WebhookdAPIError as e:
print(e.status_code, e.code, e.message) # the stable {error:{code,message}} envelope
Transient failures (connection errors, 429, 5xx) are retried with backoff (a 429 honours
Retry-After); other 4xx raise WebhookdAPIError.
Targeting a project
A project is addressed by its ID ("prj_3f9a…") — it has no slug or short name. Every
project-aware call takes an optional project_id; leave it unset to target your workspace's
default project, which is what a single-project workspace always wants:
wh.publish("order.created", {...}) # -> the workspace's default project
wh.publish("order.created", {...}, project_id="prj_3f9a…") # -> that specific project
Only the server can resolve "the default project" — the id is opaque and per-workspace, so there is no
client-side name for it. Omitting the field is the way to ask for it; passing a made-up string
("default", a project's display name) is a 404. The id you need is on any response —
event.project_id, endpoint["project_id"] — or from GET /v1/projects.
Outbox / durable buffering (producers)
publish() calls webhookd synchronously — if webhookd is unreachable it raises and the event is
lost. The write-first outbox decouples the two: enqueue() durably persists the event to a
pluggable Store and returns IMMEDIATELY (no network); drain() (or a background drainer) ships the
buffered events later. Every send carries Idempotency-Key = record.id, so a re-drain after a crash
or a lost response never double-publishes — webhookd dedupes. Delivery is at-least-once: nothing
is lost while webhookd is down.
from nn_webhooks import Client, SQLiteStore
# 1. Configure a durable store (survives process restarts).
store = SQLiteStore("outbox.db")
with Client("https://webhooks.example.com", api_key="whsk_…", store=store) as wh:
# 2. enqueue() instead of publish() — writes to the store and returns at once, NO network call.
record_id = wh.enqueue("order.created", {"order_id": "ord_123", "total": 4200})
# 3a. Drain on demand (returns {"sent", "failed", "remaining"}):
wh.drain()
# 3b. …or run a background drainer that calls drain() every 5s until the client closes.
wh.start_drainer(interval_seconds=5)
# ... your app keeps enqueuing; the drainer ships in the background ...
wh.stop_drainer() # also called automatically by Client.close()/__exit__
Idempotency guarantee. record_id is the idempotency_key you pass (or a generated UUID v4) and
becomes the Idempotency-Key header on every delivery attempt for that record. If the process
crashes after a send but before the response is recorded, the next drain() re-sends with the same
key and webhookd returns the original event without re-fanning-out. A record that keeps failing is
retried with capped exponential backoff up to max_attempts (default 10), then flagged dead
(never retried again) and handed to the optional on_dead callback.
Built-in stores — pick one for Client(..., store=...):
| Store | Durable? | Extra needed |
|---|---|---|
MemoryStore |
No (in-process) | — (stdlib) |
FileStore(dir) |
Yes (per-record JSON files) | — (stdlib) |
SQLiteStore(path) |
Yes (transactional) | — (stdlib sqlite3) |
RedisStore(url) |
Yes | pip install 'nn-webhooks-sdk[redis]' |
PostgresStore(dsn) |
Yes | pip install 'nn-webhooks-sdk[postgres]' |
The core SDK stays zero-dependency; RedisStore / PostgresStore lazily import their driver only
when you construct them.
Schema change. The SQL stores'
projectcolumn (a slug) is nowproject_id, nullable (null = the workspace's default project). There is no migration step — drain an outbox written by an older SDK before upgrading, or drop thewebhookd_outboxtable.
Manage endpoints, keys & deliveries (operators)
The same Client wraps the control-plane API — register receivers, mint keys, and drain the
dead-letter queue from code (needs an admin-scoped key). Management methods return the raw JSON as
dicts (snake_case, exactly as the API sends); list methods return a page —
{"items": [...], "next_offset": int | None}; delete/revoke return None (a 204).
from nn_webhooks import Client
wh = Client("https://webhooks.example.com", api_key="whsk_admin_…")
# --- Endpoints ----------------------------------------------------------------
# Create a receiver — its signing secret is in the response exactly once, so persist it now.
ep = wh.create_endpoint(
"https://your-app.example/webhooks",
subscriptions=[{"match_kind": "prefix", "pattern": "order."}],
description="orders service",
)
endpoint_id, signing_secret = ep["id"], ep["secret"]
wh.list_endpoints() # {"items": [...], "next_offset": ...} — default project
wh.list_endpoints(project_id="prj_3f9a…") # …or scope the listing to one project by id
wh.get_endpoint(endpoint_id)
# PATCH — send only the keys you want to change (omitted = unchanged, None = cleared):
wh.update_endpoint(endpoint_id, {"max_attempts": 10, "status": "disabled"})
wh.rotate_endpoint_secret(endpoint_id) # returns the new secret, once
wh.enable_endpoint(endpoint_id) # recover an auto-disabled endpoint
wh.delete_endpoint(endpoint_id) # -> None (204)
# --- API keys -----------------------------------------------------------------
key = wh.create_api_key("ci-publisher", scope="publish", expires_in_days=90)
print(key["key"]) # shown once
wh.revoke_api_key(key["id"]) # -> None (204)
# --- Deliveries / dead-letter recovery ----------------------------------------
for d in wh.list_deliveries(status="dead")["items"]:
wh.redeliver(d["id"])
Develop
pip install -e '.[dev]'
pytest && ruff check . && mypy nn_webhooks
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nn_webhooks_sdk-0.5.1.tar.gz.
File metadata
- Download URL: nn_webhooks_sdk-0.5.1.tar.gz
- Upload date:
- Size: 25.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e74ea9c04a827b237f14b88bd800a73831a399825fcf3076b1b733b27549b31
|
|
| MD5 |
2431dddebe3a34f2d173e4df5869ab7b
|
|
| BLAKE2b-256 |
16513e99ab6cec169920c7fd12e31e53a5a0f671b0ddd2a8184a1a0fe9619151
|
Provenance
The following attestation bundles were made for nn_webhooks_sdk-0.5.1.tar.gz:
Publisher:
publish.yml on NimbusNexus/Webhooks-sdks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nn_webhooks_sdk-0.5.1.tar.gz -
Subject digest:
0e74ea9c04a827b237f14b88bd800a73831a399825fcf3076b1b733b27549b31 - Sigstore transparency entry: 2345216042
- Sigstore integration time:
-
Permalink:
NimbusNexus/Webhooks-sdks@5dff6e2363dc3e267651f6ec8cc7ad1b01c27d6e -
Branch / Tag:
refs/tags/v0.5.1 - Owner: https://github.com/NimbusNexus
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5dff6e2363dc3e267651f6ec8cc7ad1b01c27d6e -
Trigger Event:
push
-
Statement type:
File details
Details for the file nn_webhooks_sdk-0.5.1-py3-none-any.whl.
File metadata
- Download URL: nn_webhooks_sdk-0.5.1-py3-none-any.whl
- Upload date:
- Size: 18.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae5e770fabca700dc7ef7680d6710da75ce4b2b021b4d21eaf66e9129ed44a27
|
|
| MD5 |
e67a1fb82e9c3f8fa3b2ee4236a178c5
|
|
| BLAKE2b-256 |
882ab429bbc49fca779f7807b37a432c8ba07fdc9d31c427a99f31e9fc949137
|
Provenance
The following attestation bundles were made for nn_webhooks_sdk-0.5.1-py3-none-any.whl:
Publisher:
publish.yml on NimbusNexus/Webhooks-sdks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nn_webhooks_sdk-0.5.1-py3-none-any.whl -
Subject digest:
ae5e770fabca700dc7ef7680d6710da75ce4b2b021b4d21eaf66e9129ed44a27 - Sigstore transparency entry: 2345216077
- Sigstore integration time:
-
Permalink:
NimbusNexus/Webhooks-sdks@5dff6e2363dc3e267651f6ec8cc7ad1b01c27d6e -
Branch / Tag:
refs/tags/v0.5.1 - Owner: https://github.com/NimbusNexus
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5dff6e2363dc3e267651f6ec8cc7ad1b01c27d6e -
Trigger Event:
push
-
Statement type: