Skip to main content

MercadoPago integration for django

Project description

django-mercadopago-simple is a simple django application for interacting with MercadoPago, aiming to be rather simple, and only covers the basic uses cases.

Features

Our intention is not to cover 100% of the features of the upstream API, but rather provide a simple app that allows accepting and tracking payments. This should suffice for simple sites like shopping carts, online sales, etc.

Pull requests are always welcome. Please don’t hesitate to open an issue if you encounter a problem. New features will generally only be added as needed, but again, accepted if you submit a patch.

Usage

The following settings apply to this application:

MERCADOPAGO_CLIENT_ID = 123456789
MERCADOPAGO_CLIENT_SECRET = 'asdf123'
MERCADOPAGO_SANDBOX = False
# Process notifications as soon as they are received.
MERCADOPAGO_ASYNC = False

NOTE: Asynchronous notification processing is still WIP.

To charge a user, you need to create a Preference:

self.preference = Preference.objects.create(
    title='the product name',
    price=10.0,
    reference='order-38452',
    success_url='http://example.com/mp_done',
)

You can use the IPN to listen to payment notifications. You’ll need to configure them here and then expose the endpoint by adding the following to your urls.py:

url(r'^mercadopago/', include('django_mercadopago.urls')),

Finally, you can handle payment notifications in real time using a post_update hook:

@receiver(post_save, sender=MercadoPagoPayment)
def process_payment(sender, instance=None, created=False, **kwargs):
    do_stuff()

Licence

This software is distributed under the ISC licence. See LICENCE for details.

Copyright (c) 2015 Hugo Osvaldo Barrera <hugo@barrera.io>

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

File details

Details for the file django_mercadopago_simple-1.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for django_mercadopago_simple-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 26d05b937167bb8e189b6af014e6c1083de4e26f35b41cf11c714f8fa867f532
MD5 cb9dc78774c81d1bb0f43f4baf7a41f6
BLAKE2b-256 b197a1d999e6bd60537fb5f39ce465edbfd74f4427b6c5a8f1faa4bd344fd9db

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page