Django / Paypal integration (based on dj-stripe)
Project description
dj-paypal
A Paypal integration for Django, inspired by dj-stripe.
Currently only supports subscriptions.
Requirements
- Python 3.6+
- Django 3.1+
- Postgres 9.6+ (Non-postgres engines not supported)
Installation
- Install dj-paypal with
pip install dj-paypal
- Add
djpaypal
to djangoINSTALLED_APPS
setting - Get a client ID and client secret from paypal and add them to the settings
PAYPAL_CLIENT_ID
andPAYPAL_CLIENT_SECRET
- Set
PAYPAL_MODE = "sandbox"
(or"live"
) in the settings - Install your Billing Plans (see below)
Setting up billing plans
Download already-created billing plans from Paypal
Run manage.py djpaypal_download_plans
to sync all plans already created upstream
into the local database.
This will create djpaypal.models.BillingPlan
objects, which can be listed from
the Django admin.
Creating new Paypal billing plans
The manage.py djpaypal_upload_plans
management command creates billing plans using
the Paypal API. An extra PAYPAL_PLANS
setting must be set, which will contain a dict
of Paypal billing plans to create.
See example_settings.py
for an example of plans to create.
Webhooks
The djpaypal.views.ProcessWebhookView
view should be hooked up to an URL endpoint
which you then set up in Paypal as a webhook endpoint (https://developer.paypal.com).
In order to verify webhooks being transmitted to your app, dj-paypal needs to know the
ID of the webhook that is expected at that URL. Set it in the setting PAYPAL_WEBHOOK_ID
.
Sandbox vs. Live
All models have a livemode
boolean attribute. That attribute is set to True
if created
in Live (production) mode, False
otherwise (sandbox mode).
Sandbox and Live data can co-exist without issues. Once you are done testing in Sandbox
mode, use the manage.py djpaypal_delete_all_test_data
management command to (locally)
clear all the test data. This command has no impact on the upstream data.
Data considerations
Most of the models defined in dj-paypal are copies of the upstream Paypal model data. Deleting or editing objects (be it from the admin or in the database) does not actually change any of the upstream Paypal data.
License and Sponsorship
This project was designed and developed by HearthSim. It is licensed under the MIT license. The full license text is available in the LICENSE file.
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
File details
Details for the file dj-paypal-0.16.0.tar.gz
.
File metadata
- Download URL: dj-paypal-0.16.0.tar.gz
- Upload date:
- Size: 26.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.12 Linux/4.15.0-1098-gcp
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e641ae5f8a326fc02030360412ddd029738659ac19f52855433ff0f1f79fa78 |
|
MD5 | de904bf7dbd93f7663a1eea8e6c3fa82 |
|
BLAKE2b-256 | 2f59d6336a9e176ec57b759f235da5403c08f4005935f2a7beed3a31f38d9a4c |
File details
Details for the file dj_paypal-0.16.0-py3-none-any.whl
.
File metadata
- Download URL: dj_paypal-0.16.0-py3-none-any.whl
- Upload date:
- Size: 37.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.12 Linux/4.15.0-1098-gcp
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce54e608cc76c9c32bb22d63e98ff998dd3bec971141e1363047f571c1fe522d |
|
MD5 | d5308abb06a7b79ed4c45b1ab9d31e3c |
|
BLAKE2b-256 | 0ced3753497880e0522b17ab4f828b7dc6efb7b5bec139046e72ae84e208d824 |