Skip to main content

Django adapter for python-sendparcel

Project description

django-sendparcel

PyPI Python Version Django Version License

Django adapter for the python-sendparcel multi-carrier shipping library.

Alpha (0.3.0) — API may change between minor releases. Pin your dependency if you use it in production.

Features

  • Shipment model with FSM — built-in Shipment model with finite-state-machine transitions (new → created → label_ready → in_transit → delivered, etc.)
  • Swappable Shipment model — replace the default Shipment with your own via swapper, similar to Django's AUTH_USER_MODEL
  • Django ORM repositoryDjangoShipmentRepository provides async-compatible persistence via sync_to_async; model instances satisfy the core Shipment protocol structurally (no adapter layer)
  • Provider plugin registry — auto-discovers shipping provider plugins at app startup
  • Callback endpoint — receives provider status webhooks and routes them through ShipmentFlow
  • Admin integrationShipmentAdmin with list filters, search, and bulk actions (mark in transit, mark delivered, cancel)
  • Exception middlewareSendParcelExceptionMiddleware maps sendparcel exceptions to appropriate HTTP status codes
  • Provider choice formProviderChoiceForm dynamically populated from the plugin registry
  • Callback retry persistenceCallbackRetry model stores failed callback attempts for later reprocessing

Installation

Install with pip (or your preferred package manager):

pip install django-sendparcel

This will also install the required dependencies: python-sendparcel, Django, anyio, and swapper.

Quick Start

1. Add to INSTALLED_APPS

INSTALLED_APPS = [
    # ...
    "sendparcel_django",
    # ...
]

2. Configure settings

# Provider-specific configuration, keyed by provider slug
SENDPARCEL_PROVIDER_SETTINGS = {
    "my-provider": {
        "api_url": "https://api.example.com/",
        "api_key": "your-api-key",
    },
}

# Default provider slug (optional)
SENDPARCEL_DEFAULT_PROVIDER = "my-provider"

# Custom shipment model (optional, default: "sendparcel_django.Shipment")
# Uses django-swapper convention: <APP_LABEL>_<MODEL_NAME>
SENDPARCEL_DJANGO_SHIPMENT_MODEL = "myapp.Shipment"

3. (Optional) Create a custom Shipment model

If you need additional fields on the Shipment, extend ShipmentModelMixin and point the setting to your model:

from django.db import models
from sendparcel_django.models import ShipmentModelMixin


class Shipment(ShipmentModelMixin):
    # Add custom fields as needed
    notes = models.TextField(blank=True, default="")

    class Meta:
        verbose_name = "shipment"

Then in settings:

SENDPARCEL_DJANGO_SHIPMENT_MODEL = "myapp.Shipment"

4. Include URL configuration

from django.urls import include, path

urlpatterns = [
    # ...
    path("sendparcel/", include("sendparcel_django.urls")),
]

This exposes the callback endpoint at sendparcel/callback/<shipment_id>/ for receiving provider webhooks.

Successful callback responses include provider, status, shipment, and update. The adapter no longer persists label URLs on shipment models.

Webhook security: the callback endpoint is CSRF-exempt and performs no authentication of its own — authenticity checking is delegated entirely to the provider's verify_callback (e.g. InPost verifies the source IP). Only enable providers whose verify_callback performs real verification, or protect the endpoint at the web-server/proxy layer (IP allowlist, shared-secret path, mTLS).

5. (Optional) Add the exception middleware

MIDDLEWARE = [
    # ...
    "sendparcel_django.middleware.SendParcelExceptionMiddleware",
]

This catches sendparcel exceptions and returns appropriate JSON error responses:

Exception HTTP Status
CommunicationError 502
ProviderNotFoundError 404
ProviderCapabilityError 409
InvalidCallbackError 400
InvalidTransitionError 409
SendParcelException 400

6. Run migrations

python manage.py migrate

Usage

Creating a shipment

Use ShipmentFlow to create shipments with explicit address and parcel data:

import anyio
from sendparcel.flow import ShipmentFlow
from sendparcel_django.repository import DjangoShipmentRepository


async def create_shipment(provider_slug):
    repository = DjangoShipmentRepository()
    flow = ShipmentFlow(
        repository=repository,
        config=settings.SENDPARCEL_PROVIDER_SETTINGS,
    )

    outcome = await flow.create_shipment(
        provider_slug,
        sender_address={
            "name": "My Warehouse",
            "line1": "1 Warehouse St",
            "city": "Warsaw",
            "postal_code": "00-001",
            "country_code": "PL",
        },
        receiver_address={
            "name": "Customer Name",
            "line1": "10 Customer Ave",
            "city": "Krakow",
            "postal_code": "30-001",
            "country_code": "PL",
        },
        parcels=[{"weight_kg": 2.5}],
        reference_id="my-order-123",  # optional reference for your system
    )

    shipment = outcome.shipment
    if outcome.label is None:
        label_outcome = await flow.create_label(shipment)
        return label_outcome.shipment

    return shipment

Call from synchronous Django code using anyio.run():

shipment = anyio.run(create_shipment, "my-provider")

Provider choice form

Use ProviderChoiceForm to let users select a shipping provider:

from sendparcel_django.forms import ProviderChoiceForm

form = ProviderChoiceForm(request.POST)
if form.is_valid():
    provider_slug = form.cleaned_data["provider"]

The form choices are dynamically populated from the plugin registry.

Admin

The ShipmentAdmin is auto-registered for the active Shipment model (default or swapped). It provides:

  • List display: ID, reference ID, status, provider, tracking number, creation date
  • Filters: status, provider
  • Search: tracking number, external ID, reference ID
  • Bulk actions: mark as in transit, mark as delivered, cancel — each action triggers FSM transitions with guard validation

Configuration Reference

All settings are read from your Django settings module.

Setting Type Default Description
SENDPARCEL_PROVIDER_SETTINGS dict {} Provider-specific configuration, keyed by provider slug
SENDPARCEL_DEFAULT_PROVIDER str "" Default provider slug
SENDPARCEL_DJANGO_SHIPMENT_MODEL str "sendparcel_django.Shipment" Dotted path to the Shipment model (swappable via django-swapper)

Settings are resolved at call time via sendparcel_django.conf.get_settings(), so @override_settings works correctly in tests.

Shipment Model Fields

The ShipmentModelMixin provides these fields on every Shipment (default or custom):

Field Type Description
reference_id CharField Your system's reference (e.g. order ID)
provider CharField Provider slug
status CharField Current FSM state (default: "new")
external_id CharField Provider-assigned shipment ID
tracking_number CharField Tracking number from provider
created_at DateTimeField Auto-set on creation
updated_at DateTimeField Auto-set on save

The default concrete Shipment model uses these fields directly. When creating a custom model, you can add any additional fields you need.

Example Project

A full working example is included in the example/ directory. It demonstrates:

  • A custom Shipment model with inline address fields
  • Shipment creation through the ShipmentFlow
  • A delivery simulation provider for local testing
  • HTMX-powered shipment tracking UI

To run the example:

cd example
pip install -e ..
pip install -e ../../python-sendparcel
python manage.py migrate
python manage.py runserver

Supported Versions

Dependency Version
Python >= 3.12
Django >= 5.2
python-sendparcel >= 0.1.1
anyio >= 4.0
swapper >= 1.4

Running Tests

The test suite uses pytest with pytest-django:

pip install -e ".[dev]"
pytest

Test configuration is in tests/settings.py. The test suite covers models, protocols, views, middleware, admin, forms, registry, repository, FSM integration, and callback retry logic.

Credits

License

MIT License. See LICENSE for details.

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

django_sendparcel-0.3.0.tar.gz (49.4 kB view details)

Uploaded Source

Built Distribution

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

django_sendparcel-0.3.0-py3-none-any.whl (36.4 kB view details)

Uploaded Python 3

File details

Details for the file django_sendparcel-0.3.0.tar.gz.

File metadata

  • Download URL: django_sendparcel-0.3.0.tar.gz
  • Upload date:
  • Size: 49.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for django_sendparcel-0.3.0.tar.gz
Algorithm Hash digest
SHA256 ba0b51e8687e4f090b4697a27561fc813f521b3c8a4fede3427f2325b139958b
MD5 a8e36bf0881f988c5a76e31b943e4a47
BLAKE2b-256 a5138789a1fc14df9a8b81618d3b27427ab483c1e158c2e57a25d66701d779b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_sendparcel-0.3.0.tar.gz:

Publisher: release.yml on python-sendparcel/django-sendparcel

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

File details

Details for the file django_sendparcel-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_sendparcel-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 afc45483c907c567b303b1a49133a95f49c024d0fecf23bd891b61615358aec2
MD5 5e15518ccda903fdb265ae87a60bf047
BLAKE2b-256 812c47c65c193e28be941b5f01b18fed47a84a6eaa2a4a7e29b2e0a4a8ef74a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_sendparcel-0.3.0-py3-none-any.whl:

Publisher: release.yml on python-sendparcel/django-sendparcel

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