Recurring payments solution Askell integration for Django and Wagtail (optional)
Project description
django-askell
Áskell integration for Django and Wagtail (optional)
Installation
pip install django-askell
Add the app to your INSTALLED_APPS
INSTALLED_APPS = [
# ... other apps
'askell',
# ... other apps
]
Add the app urls to your project urls.py
:
from django.urls import path, include
from askell.urls import urls as askell_urls
urlpatterns = [
# ... your other urls
path('askell/', include(askell_urls)),
# ... more urls
]
To complete your setup, it is recommended to set up a webhook in Áskell's dashboard pointing to your website's URL. If your website has the domain https://example.com
and you have added the app urls to your project, then the view that receives the webhooks is located at https://example.com/askell/webhook/
.
Create your webhook, and then obtain your webhook secret and put it in your settings file or environment in your project:
ASKELL_WEBHOOK_SECRET = 'my-secret'
Webhook handlers
You can register new webhook handlers if you want to implement custom logic when something happens in Áskell. These are the default webhook handlers:
askell.webhook_handlers.payment_created
askell.webhook_handlers.payment_changed
Registering a new handler is simple:
from askell.webhooks import register_webhook_handler
@register_webhook_handler
def payment_settled(request, event, data):
from .models import Payment
if event == 'payment.changed':
if data['state'] == 'settled':
# do something here
return True
TODO
- Document webhook handlers
- [ ] Document views
- Implement subscription handling
Release notes
Version 0.1.4
- Fixed a bug in the Payment detail view
Version 0.1.3
- Fixed a bug in webhook handler
Version 0.1.2
- Added logging mechanism for debugging
Version 0.1.1
- Changed the way webhook handlers are imported and documented
Version 0.1
- Support for creating Payment objects
- Support for webhooks processing and verification
- Default webhook handlers for payment created, and changed
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
Built Distribution
File details
Details for the file django-askell-0.1.4.tar.gz
.
File metadata
- Download URL: django-askell-0.1.4.tar.gz
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99b695ba6e5f484b549142b73f2c8aeaed3853079ed2e57fd3f05bbe5a47e897 |
|
MD5 | 438302d0d41d25f83b195980b48e21a9 |
|
BLAKE2b-256 | eaf9f4c70b177e91ff5bed373f9d1a4997fca5ecf1f782f81510f5483d6e3c88 |
File details
Details for the file django_askell-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: django_askell-0.1.4-py3-none-any.whl
- Upload date:
- Size: 16.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c2f63e5ecb0e2cf8e80033148c3f1c57a2762d4b03ddf7d004882f1031e9006 |
|
MD5 | e2683d96b2b76feb3293c7df748b86a9 |
|
BLAKE2b-256 | c67715624a5619c3df3a3077d9af05e84dc20702be61c097e2f9f8dd103b4947 |