Integration between django-plans and django-paypal.
Project description
Almost automatic integration between django-plans and django-paypal. This will add subscribe buttons to the order page and automatically confirm the Order after the payment.
Currently it is in experimetal stage, wher only recurring payments (subscribtions) are supported.
Documentation
The full documentation is at https://django-plans-paypal.readthedocs.io.
Quickstart
Install and configure django-plans and django-paypal apps. Capture mode is not yet supported, so PAYMENT_VARINANTS with 'capture': False will not get confirmed.
Install Django plans paypal:
pip install django-plans-paypal
Add it to your INSTALLED_APPS, before the plans:
INSTALLED_APPS = (
...
'payments',
'paypal.standard.ipn',
'plans_paypal',
...
)
Add your bussiness account e-mail address to settings:
PAYPAL_BUSSINESS_EMAIL = "foo@bar.com"
Add Django plans_paypal to the URL patterns:
urlpatterns = [
...
url(r'^plans-paypal', include('plans_paypal.urls')),
...
]
Override django-plans class CreateOrderView so that get_success_url() returns url of paypal_payment view:
def get_success_url(self):
return reverse("paypal-payment", kwargs={'order_id': self.object.id})
Features
TODO
Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
Credits
Tools used in rendering this package:
History
0.3.0 (2021-10-08)
hook ipn.PayPalIpn object with plans.Order (for later usage e.g. determining PayPal fee)
set plan renewal for django-plans
0.2.0 (2018-08-05)
Payment process without capturing should work
Automatic buttons generation
0.1.0 (2018-07-23)
First release on PyPI.
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
Hashes for django-plans-paypal-0.1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a4f519c903b0e7b332e6566fa9cc1482bbce8d2a07c3b5c231eaa9a002ea428 |
|
MD5 | c432fd6d10a14f14a6e753d4031f933d |
|
BLAKE2b-256 | 362bb3dbc3e438b59ec380fdb7bf1a2fa1be223defb2318d6f4f06e24203b394 |