Skip to main content

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)

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.5.tar.gz (6.7 kB view details)

Uploaded Source

File details

Details for the file mc2p-django-0.1.5.tar.gz.

File metadata

  • Download URL: mc2p-django-0.1.5.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

Hashes for mc2p-django-0.1.5.tar.gz
Algorithm Hash digest
SHA256 6e0cbfe637d387194e0cf8b59d7613e645db8519b505ab0e0c2c2d5cabd33919
MD5 ac50ec972dd821f3a32e5c140bd3cafc
BLAKE2b-256 0b5b53c45413efe1c2373240822e378168d53ae388fb9a0d52a5ce294a3c9b07

See more details on using hashes here.

Release history Release notifications | RSS feed

0.1.6

1 file

This release

0.1.5 This release

1 file

0.1.3

1 file

0.1.2

1 file

0.1.1

1 file

0.1.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page