Skip to main content

Reusable Django payment infrastructure with idempotency and webhook support

Project description

payment_infra

payment_infra is a reusable Django payment package that provides provider integrations, webhook handling, and idempotent payment processing logic you can plug into different Django projects.

Why use this package?

  • Reuse payment infrastructure across multiple Django services/projects.
  • Start quickly with Paystack charge + verification endpoints.
  • Handle webhook events through a structured service layer.
  • Reduce duplicate transaction processing with idempotency support.

Installation

Install from PyPI

python -m venv venv # create a virtual environment
pip install payment_infra

Install for local development

git clone "[repo url](https://github.com/0FFSIDE1/payment_infra.git)"
pip install -r requirements.txt

Using payment_infra in any Django project

1) Add the app to INSTALLED_APPS

INSTALLED_APPS = [
    # ...
    "rest_framework",
    "payment_infra",
]

2) Configure environment variables

Typical settings used by providers/runtime:

  • PAYSTACK_SECRET_KEY
  • PAYSTACK_PUBLIC_KEY
  • PAYSTACK_CALLBACK_URL
  • REDIS_URL
  • DJANGO_SECRET_KEY
  • CACHE_BACKEND

Exact variable wiring depends on your host project's Django settings.

3) Include the package URLs in your project urls

# project/urls.py
from django.urls import include, path

urlpatterns = [
    # ...
    path("payments", include("payment_infra.api.urls")),
]

With the example above, available endpoints become:

  • POST /payments/paystack/charge/
  • GET /payments/paystack/verify/<reference>/
  • POST /payments/webhooks/

4) Run migrations

python manage.py migrate

API example

Initiate payment

curl -X POST http://localhost:8000/payments/paystack/charge/ \
  -H "Content-Type: application/json" \
  -d '{
    "email": "customer@example.com",
    "amount": "1000.00",
    "idempotency_key": "trx-343487629495403" # optional (auto-generated if not provided)
    "currency": "NGN",
    "callback_url": "https://example.com/callback"
  }'

Verify Payment

curl -X GET 'http://localhost:8000/payments/paystack/verify/<reference>/' 
  • Replace: reference → with the actual reference returned from the charge endpoint.

Asynchronous payment processing example

from payment_infra.infrastructure.tasks.payment_task import process_payment_task

result = process_payment_task.delay(email, amount, currency, idempotency_key, metadata)

NB: You have to configure celery to use asynchronous payment processing

Package architecture

payment_infra/
├── api/                # DRF serializers, views, routes
├── application/        # Service/use-case layer and interfaces
├── domain/             # Core entities
├── infrastructure/     # Providers, repositories, idempotency, tasks
└── migrations/         # Django migrations

This layered design keeps payment orchestration logic decoupled from API and provider implementations, making it easier to extend for additional providers or custom project requirements.

Running tests (repository/local dev)

pytest

Run only integration tests:

pytest -m integration

Run only tests without real integration:

pytest -m "not integration"

Contributing

  • Fork the repo
  • Create a feature branch
git checkout -b feature/awesome
  • Run test after implementing your feature
pytest
  • Commit changes
git commit -m 'Add awesome feature'
  • Push branch and open a PR

Support

For enterprise inquiries, please contact offsideint@gmail.com

For bugs, open an issue on GitHub.

Built with ❤️ by OFFSIDE INTEGRATED TECHNOLOGY — because developers do not need hassle wiring payments.

License

MIT (see LICENSE).

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

payment_infra-1.0.1.tar.gz (19.2 kB view details)

Uploaded Source

Built Distribution

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

payment_infra-1.0.1-py3-none-any.whl (25.5 kB view details)

Uploaded Python 3

File details

Details for the file payment_infra-1.0.1.tar.gz.

File metadata

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

File hashes

Hashes for payment_infra-1.0.1.tar.gz
Algorithm Hash digest
SHA256 9facaf4fc524e94ec06c831be91d1205ce8a3066aa8cc81b358ebb79a86d6c0f
MD5 c730d84751a5a1fc873a154cd483022b
BLAKE2b-256 fd43f0ab2dae83fb2f624ae264fcbd35c14f05e9cd410296c53b5988d10e6f0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for payment_infra-1.0.1.tar.gz:

Publisher: cd.yml on 0FFSIDE1/payment_infra

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

File details

Details for the file payment_infra-1.0.1-py3-none-any.whl.

File metadata

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

File hashes

Hashes for payment_infra-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 29aa8eb7371d61fddfae634ca16edb9aa0d7085213a541b6a41adfba76c49b46
MD5 f9d6a0537fa2d715e3704d7bd0d4bb05
BLAKE2b-256 17621a07a1204a3d79a81f14a4922954f60104b9dc50287527af7eb13fd51e19

See more details on using hashes here.

Provenance

The following attestation bundles were made for payment_infra-1.0.1-py3-none-any.whl:

Publisher: cd.yml on 0FFSIDE1/payment_infra

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