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.2-py3-none-any.whl.

File metadata

File hashes

Hashes for django_mercadopago_simple-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c177aea7b87b05d76dadd1f3726f5238c5d6bb4ab74b0c7d69e86b619cfc8212
MD5 f5401252bdb67d3c13b1fed39c6ce365
BLAKE2b-256 3973f6a5b0f223fdf10573fbeb60324979a951a1b8f83681a05c1e9b60a9ff88

See more details on using hashes here.

Provenance

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