BillKit Python SDK
Async + sync client for BillKit, the Stripe-Billing-shape multi-tenant SaaS API on Mollie.
Install
pip install billkit-eu
# or
uv add billkit-eu
Requires Python 3.11+. The distribution is billkit-eu because the bare
billkit name on PyPI belongs to an unrelated project. The import name is
unaffected:
import billkit
Quick start
from billkit import BillKit
client = BillKit(api_key="bk_test_...")
customer = client.customers.create(email="ada@example.com", name="Ada Lovelace")
product = client.products.create(
name="Pro",
description="Hosted billing for SaaS",
marketing_features=["Checkout", "Subscriptions"],
)
price = client.prices.create(
product_id=product["id"],
amount_cents=999,
currency="EUR",
interval="month",
trial_days=14,
payment_methods=["creditcard", "directdebit"],
)
session = client.checkout_sessions.create(
customer_id=customer["id"],
price_id=price["id"],
success_url="https://app.example.com/success",
cancel_url="https://app.example.com/cancel",
)
print(session["url"]) # redirect the user here
One-shot (mandate-less) payments
A one-shot is a single charge with no subscription, mandate or renewals: the Stripe PaymentIntent shape, mapped onto Mollie. Create it, redirect to redirect_url, and settle terminal state via the one_shot_payment.succeeded / .failed webhook events.
payment = client.one_shot_payments.create(
customer_id=customer["id"],
amount_cents=2500,
currency="EUR",
method="ideal",
success_url="https://shop.example.com/thanks",
refund_window_days=14, # optional; 0 disables refunds, default is 30
)
print(payment["redirect_url"]) # redirect the payer here
# Later, refund it within its window (omit amount_cents for a full refund):
client.refunds.create(one_shot_payment_id=payment["id"])
# ...or refund part of it. A charge can carry several partials:
client.refunds.create(one_shot_payment_id=payment["id"], amount_cents=500)
Finding paused subscriptions
status and renewal_state answer different questions, and only one of them knows about pausing. status is where the subscription stands with its payments (incomplete, trialing, active, past_due, canceled). renewal_state is what happens when the current period ends (auto_renew, paused, canceling, stopped). Pausing sets renewal_state and leaves status at active, because the customer has paid for the period they are in:
paused = client.subscriptions.list(renewal_state="paused")
# Both filters take a comma-separated list, and carry onto every page:
for sub in client.subscriptions.iter(status="active,past_due", page_size=100):
...
status="paused" is not an accepted value and raises InvalidRequestError.
Retiring something, and deleting something
delete() exists on customers and webhook_endpoints, and it returns {"id": ..., "object": ..., "deleted": True} rather than the object: it has left the API, so there is nothing to hand back. A deleted endpoint takes its delivery rows with it, because those are readable only through the endpoint that owns them; the events stay in client.events, which is the record of what you were sent.
The catalogue is retired through its update route instead, because it stays readable afterwards. Prices, products, tax rates and coupons take active=False. Each of them has to survive: subscriptions renew against a price by id, an invoice records the VAT percentage a tax rate produced, and a redeemed coupon is part of what a customer was charged.
status="disabled" on a webhook endpoint is the other half of the pair, not a substitute for deleting. It stops delivery and keeps the endpoint, its secret and its history, and it can be turned back on.
A price accepts active and nothing else, because the amount, currency and interval are fixed at creation. active itself moves both ways: it decides what new checkouts may buy, not what anyone was charged. Re-sending the value it already has is a no-op, so a retry is safe.
# Stop selling a price. It stays readable; customers on it keep renewing.
archived = client.prices.update(price["id"], active=False)
assert archived["active"] is False
# Stop sending to an endpoint, without losing its signing secret.
client.webhook_endpoints.update(endpoint["id"], status="disabled")
# Remove a customer. Refused while they hold a subscription that can
# still charge them.
client.customers.delete(customer["id"]) # -> {"deleted": True, ...}
Async
from billkit import AsyncBillKit
async with AsyncBillKit(api_key="bk_test_...") as client:
customer = await client.customers.create(email="ada@example.com")
Configuration
from billkit import BillKit, RetryPolicy
client = BillKit(
api_key="bk_test_...", # or set BILLKIT_API_KEY
base_url="https://api.billkit.eu", # override for self-hosted
timeout=30.0, # seconds, or pass httpx.Timeout
retry_policy=RetryPolicy(
max_attempts=5,
max_retry_after_seconds=10.0, # cap 429 Retry-After sleeps
),
)
The SDK auto-generates an Idempotency-Key for every mutating call, so 5xx and short Retry-After 429 retries are safe: the server replays the original response when an earlier attempt completed. Pass idempotency_key= to coalesce retries across process restarts.
Errors
from billkit import BillKit, ResourceMissingError, RateLimitError, BillKitError
client = BillKit(api_key="bk_test_...")
try:
customer = client.customers.retrieve("cus_doesnt_exist")
except ResourceMissingError:
print("Customer is gone")
except RateLimitError as exc:
print(f"Rate limited; retry in {exc.retry_after}s")
except BillKitError as exc:
print(f"BillKit error {exc.status_code}: {exc.message}")
All errors inherit from BillKitError. Subclasses: APIConnectionError, APIError, ServerError, AuthenticationError, PermissionError, ResourceMissingError, InvalidRequestError, ConflictError, RateLimitError.
Logging
The SDK is silent by default. It owns one logger, logging.getLogger("billkit"), with a NullHandler attached, and it never calls basicConfig, never sets a level, and never adds a handler to a logger it doesn't own. Your logging config is yours.
Turn it on from your application:
import logging
logging.basicConfig()
logging.getLogger("billkit").setLevel(logging.DEBUG)
DEBUG:billkit:BillKit request POST https://api.billkit.eu/v1/customers (attempt 1/3)
DEBUG:billkit:BillKit response POST https://api.billkit.eu/v1/customers -> 503 in 84ms (request_id=req_9f2a)
WARNING:billkit:BillKit retrying POST https://api.billkit.eu/v1/customers after HTTP 503 (attempt 1) in 500ms
DEBUG:billkit:BillKit response POST https://api.billkit.eu/v1/customers -> 200 in 91ms (request_id=req_9f2b)
- DEBUG: one line per attempt, one per response (status, elapsed ms,
X-Request-Id; quote that id to support). - WARNING: one line per retry, with the reason and the delay before the next attempt.
Never logged: your API key or the Authorization header; request and response bodies (they carry customer PII); the query string (list filters carry values like email=); only the path is logged. The final failure isn't logged either: it's raised as a typed BillKitError carrying the status, request id and retry-after, and logging it here too would hand you a duplicate you can't suppress.
One caveat: httpx's own request line
The promise above covers records this SDK writes. httpx, the HTTP client underneath, writes its own at INFO, and it includes the full URL:
INFO:httpx:HTTP Request: GET https://api.billkit.eu/v1/customers?email=ada@example.com "HTTP/1.1 200 OK"
basicConfig() plus a DEBUG level on billkit is enough to surface it, so turning BillKit's logging on would otherwise put customer emails in your logs from a logger BillKit never touched. There is no per-client switch for it in httpx.
So when you opt this SDK in, it raises the httpx and httpcore loggers to WARNING — only if you have not set a level on them yourself, and only for the httpx client the SDK created. Both exceptions are deliberate:
- If you have configured
httpxlogging, you made a decision and a billing SDK does not get to overrule it. Silence the request line yourself, or accept the query strings. - If you passed your own
httpx_client=, you own its logging as much as its connection pooling.
The check happens when the client is constructed, so configure your logging before you build a BillKit / AsyncBillKit (the usual startup order).
The logger object is exported if you'd rather wire it up directly:
from billkit import logger
logger.addHandler(my_handler)
Webhook verification
from billkit import WebhookSignature, WebhookVerificationError
# In your FastAPI / Flask / Django handler:
try:
event = WebhookSignature.verify(
payload=request.body,
signature_header=request.headers.get("BillKit-Signature"),
secret=os.environ["BILLKIT_WEBHOOK_SECRET"],
)
except WebhookVerificationError:
return Response(status_code=400)
if event["type"] == "subscription.created":
handle_new_subscription(event["data"])
The verifier enforces a 5-minute timestamp tolerance (replay protection) and constant-time HMAC compare. Pass tolerance_seconds= to customise.
Development
uv sync --all-extras --dev
uv run pytest
uv run ruff check
uv run mypy src
License
Proprietary.
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 billkit_eu-0.2.1.tar.gz.
File metadata
- Download URL: billkit_eu-0.2.1.tar.gz
- Upload date:
- Size: 86.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb1fe052112732137b3f22dd7ef48d11db845f46c6c91c6aaafabce1482d1002
|
|
| MD5 |
6883bcfbe9cabc9815ff1403c4242bcb
|
|
| BLAKE2b-256 |
7fb254e3a290420b11aa07c3d435d09a6fd91e44fabee2132aaa3539a53cddf5
|
Provenance
The following attestation bundles were made for billkit_eu-0.2.1.tar.gz:
Publisher:
publish.yml on billkit-eu/billkit-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
billkit_eu-0.2.1.tar.gz -
Subject digest:
bb1fe052112732137b3f22dd7ef48d11db845f46c6c91c6aaafabce1482d1002 - Sigstore transparency entry: 2852272010
- Sigstore integration time:
-
Permalink:
billkit-eu/billkit-python@3745babd41b6aa0971acd60f4c9ca7caa2cfaa96 -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/billkit-eu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@3745babd41b6aa0971acd60f4c9ca7caa2cfaa96 -
Trigger Event:
push
-
Statement type:
File details
Details for the file billkit_eu-0.2.1-py3-none-any.whl.
File metadata
- Download URL: billkit_eu-0.2.1-py3-none-any.whl
- Upload date:
- Size: 40.5 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 |
852326aa730a768fefc92f483417ee7e3a94690fa8e9a19cf3d7cf98ca5ed794
|
|
| MD5 |
1547f4854543ab8ecc80d47d56c28d56
|
|
| BLAKE2b-256 |
ac186b55d67dbf0c2ea2fe3f104f0088935f231844982bae49b66c0889677383
|
Provenance
The following attestation bundles were made for billkit_eu-0.2.1-py3-none-any.whl:
Publisher:
publish.yml on billkit-eu/billkit-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
billkit_eu-0.2.1-py3-none-any.whl -
Subject digest:
852326aa730a768fefc92f483417ee7e3a94690fa8e9a19cf3d7cf98ca5ed794 - Sigstore transparency entry: 2852272065
- Sigstore integration time:
-
Permalink:
billkit-eu/billkit-python@3745babd41b6aa0971acd60f4c9ca7caa2cfaa96 -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/billkit-eu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@3745babd41b6aa0971acd60f4c9ca7caa2cfaa96 -
Trigger Event:
push
-
Statement type: