MyChoice2Pay Django Bindings
Project description
MyChoice2Pay Django
Overview
MyChoice2Pay Django provides integration access to the MyChoice2Pay API through django framework.
Requirements
Installation
Install using pip
...
pip install mc2p-django
Add 'django_mc2p'
to your INSTALLED_APPS
setting.
INSTALLED_APPS = (
...
'django_mc2p',
...
)
Add django_mc2p urls:
urlpatterns = patterns('',
...
url(r'^mc2p/', include('django_mc2p.urls'))
...
)
Configuration
After execute migrations you must define KEY and SECRET KEY in administration site, section MyChoice2Pay Configuration.
You can obtain KEY and SECRET KEY from MyChoice2Pay site.
Quick Example
Basic transaction
# Sending user to pay
from django_mc2p import MC2PClient
mc2p = MC2PClient()
transaction = mc2p.Transaction({
"currency": "EUR",
"order_id": "order id",
"products": [{
"amount": 1,
"product": {
"name": "Product",
"price": 50
}
}],
"notify_url": "https://www.example.com" + reverse('mc2p-notify'),
"return_url": "https://www.example.com/your-return-url/",
"cancel_return": "https://www.example.com/your-cancel-url/"
})
transaction.save()
transaction.pay_url # Send user to this url to pay
# After user pay a notification will be sent to notify_url
from django_mc2p.constants import MC2P_PAYMENT_DONE
from django_mc2p.signals import notification_received
def check_payment(sender, **kwargs):
notification_data = sender
if notification_data.type == MC2P_TYPE_TRANSACTION and notification_data.status == MC2P_PAYMENT_DONE:
transaction = notification_data.transaction
sale = notification_data.sale
order_id = notification_data.order_id
# Use transaction, sale and order_id to check all the data and confirm the payment in your system
notification_received.connect(check_payment)
Basic subscription
# Sending user to pay a subscription
from django_mc2p import MC2PClient
mc2p = MC2PClient()
subscription = mc2p.Subscription({
"currency": "EUR",
"order_id": "order id",
"plan": {
"name": "Plan",
"price": 5,
"duration": 1,
"unit": "M",
"recurring": true
},
"notify_url": "https://www.example.com" + reverse('mc2p-notify'),
"return_url": "https://www.example.com/your-return-url/",
"cancel_return": "https://www.example.com/your-cancel-url/"
})
subscription.save()
subscription.pay_url # Send user to this url to pay
# After user pay a notification will be sent to notify_url
from django_mc2p.constants import MC2P_PAYMENT_DONE
from django_mc2p.signals import notification_received
def check_payment(sender, **kwargs):
notification_data = sender
if notification_data.type == MC2P_TYPE_SUBSCRIPTION and notification_data.status == MC2P_PAYMENT_DONE:
subscription = notification_data.subscription
sale = notification_data.sale
order_id = notification_data.order_id
# Use subscription, sale and order_id to check all the data and confirm the payment in your system
notification_received.connect(check_payment)
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
mc2p-django-0.1.6.tar.gz
(6.7 kB
view details)
File details
Details for the file mc2p-django-0.1.6.tar.gz
.
File metadata
- Download URL: mc2p-django-0.1.6.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0662812d803bdef3f371ea7499c594a54671d15b682f548246607ca897edbf2 |
|
MD5 | d9ad052a8db1dbeeb2ffab05e74c8b14 |
|
BLAKE2b-256 | ef7a40251eb6a1d39e3259f24b015cc66a9285633d98f2e21c237908d972adee |