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

File metadata

File hashes

Hashes for django_mercadopago_simple-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 2f23565161d52c10bcb7ab4c52205f3d3878f365ff7b4193b04a0426c44ee3f6
MD5 178e875867c9f1ae9f4344ffec5d45b0
BLAKE2b-256 8706bd8924112319bb506f1fc59b6e5a6583c93a7e337c12194bb0f75c209cb3

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