Convoy Python SDK: OpenAPI-generated API client and hand-written webhook signature verification
Project description
convoy-python
Official Convoy Python SDK: an OpenAPI-generated API client plus hand-written webhook signature verification. See the API Reference for endpoint details.
Requires Python 3.11+.
Installation
1.0.0a1 is a pre-release. Plain pip install convoy-python still resolves to 0.2.0 until a final 1.0.0 is published.
pip install --pre convoy-python
# or pin explicitly:
pip install convoy-python==1.0.0a1
If you are upgrading from 0.2.0, see MIGRATION.md and the release notes for the breaking changes.
Setup Client
Construct an AuthenticatedClient with your instance API root and API key. The project ID is passed per call (it is not embedded in the client).
from convoy import AuthenticatedClient
client = AuthenticatedClient(
base_url="https://us.getconvoy.cloud/api", # no /v1, no project id
token="your_api_key",
)
project_id = "your_project_id"
Your base URL depends on where your project lives:
- Convoy Cloud (US):
https://us.getconvoy.cloud/api - Convoy Cloud (EU):
https://eu.getconvoy.cloud/api - Self-hosted:
https://your-instance/api
Usage
Each operation lives under convoy.api.* and exposes sync, sync_detailed, asyncio, and asyncio_detailed. Request bodies use typed models from convoy.models.
Create an Endpoint
from convoy.api.endpoints import create_endpoint
from convoy.models import ModelsCreateEndpoint
result = create_endpoint.sync(
project_id,
client=client,
body=ModelsCreateEndpoint(
name="default-endpoint",
url="https://example.com/webhooks/convoy",
secret="endpoint-secret",
),
)
endpoint_id = result.data.uid
Send an Event
from convoy.api.events import create_endpoint_event
from convoy.models import ModelsCreateEvent, ModelsCreateEventDataType0
body = ModelsCreateEvent(
endpoint_id=endpoint_id,
event_type="payment.success",
data=ModelsCreateEventDataType0.from_dict({"status": "Completed"}),
)
result = create_endpoint_event.sync(project_id, client=client, body=body)
# async:
# result = await create_endpoint_event.asyncio(project_id, client=client, body=body)
Verify Webhook Signatures
Verify with the raw request body, before parsing it. verify_signature returns a strict True / False (never a truthy error string).
from convoy.utils.webhook import Webhook
webhook = Webhook(secret="endpoint-secret")
payload = request.body.decode("utf-8")
signature = request.headers.get("X-Convoy-Signature", "")
if not webhook.verify_signature(payload, signature):
# reject the request
...
Testing
pytest test/
Generated API client
The HTTP API client under src/convoy/api/ and src/convoy/models/ is generated from Convoy's OpenAPI spec via openapi-python-client. Do not edit generated files by hand; regenerate with ./scripts/generate.sh (CI on frain-dev/convoy dispatches this when the spec changes).
Webhook signature verification remains hand-written (src/convoy/utils/webhook.py) and is covered by shared test/signature-vectors.json.
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
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
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 convoy_python-1.0.0a1.tar.gz.
File metadata
- Download URL: convoy_python-1.0.0a1.tar.gz
- Upload date:
- Size: 140.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7b18fdded1b9744c76e63cbc1fa66e2def9363863a85f6a0eb469e5d2a94ba0
|
|
| MD5 |
ec583428a829cb6da9242efa426918dc
|
|
| BLAKE2b-256 |
96ea311bfcf4aabb1657394c5f3ba43e301696d86bca6128da4d01b7ab076b1c
|
File details
Details for the file convoy_python-1.0.0a1-py3-none-any.whl.
File metadata
- Download URL: convoy_python-1.0.0a1-py3-none-any.whl
- Upload date:
- Size: 606.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c90b924738bd5f189c9d0497ca7eb349c8c777dfb5572ac43f1cc1e01c3dc8ce
|
|
| MD5 |
8a3eb22684f0db2c016af209507b814c
|
|
| BLAKE2b-256 |
39d89fd66f81ef115f60dc7867c115d454f43ad4a90da5292bb7f7eddd359a0e
|