Mollie integration for django-payments
Project description
django-payments-mollie
Django Payments Mollie is a Django app that adds support for the Mollie payment provider to Django Payments.
Table of Contents
Installation
pip install django-payments-mollie
Configuration
You should follow the configration guide in the Django Payments documentation. To setup this package as a payment variant, use the following PAYMENT_VARIANTS
in the Django settings file:
PAYMENT_VARIANTS = {
"mollie": (
"django_payments_mollie.provider.MollieProvider",
{
# For api key authentication
"api_key": "test_example-api-key",
# For access token authentication
"access_token": "access_example-token",
"testmode": True,
# For OAuth2 authentication
"client_id": "example-client-id",
"client_secret": "example-client-secret",
"testmode": True,
}
)
}
Available configuration options
api_key
: A Mollie API key, this is the simplest way to configure access to the Mollie API. Use the test key for development or testing. This also allows you to use payment methods that aren't enabled for live payments yet.
Configuration helpers
Payment model
Django Payments docs will instruct you to create a Payment model that subclasses BasePayment
. This package also provides a base model that you can use (optionally). The abstract model class BaseMolliePayment
is a subclass of BasePayment
, and it configures some of the fields as required=True
, since Mollie requires them to be filled. Use it just like you would use Django payments' BasePayment
:
from django_mollie_payments.models import BaseMolliePayment
class Payment(BaseMolliePayment):
...
# Add custom fields and methods
Sandbox
The project contains a sandbox that shows a very simple implementation of Django Payments with the Mollie payment variant. You can use it to see how implementation could be done, or to actually run an application against your own Mollie account. See the Sandbox README for details.
License
django-payments-mollie
is distributed under the terms of the MIT license.
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
Hashes for django_payments_mollie-0.0.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53cb5fd67029f3a570a8ef34a220419d8ca2313db5008b34ab23035287c7d371 |
|
MD5 | eec0baaa0c66797ea88dff479389bdb4 |
|
BLAKE2b-256 | 6aa0bb3bf8bd7569e40ef6b1cf1949b97995c52639fd45867bb6a173ee949eb4 |
Hashes for django_payments_mollie-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59b074bdd2b1245e6abbefe1ee37f0f8a4f594e7ff2c192a25e441eb6a03679a |
|
MD5 | 2c07f74c1b1b4ae935e6a92212a4e0a2 |
|
BLAKE2b-256 | d8dcca5772108e8ee2f6e1d24cd60a91b0d13ad87760c665dea58ec95606a5e5 |