{ "info": { "author": "Hugo Osvaldo Barrera", "author_email": "hbarrera@z47.io", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3 :: Only", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "django-mercadopago\n==================\n\n.. image:: https://travis-ci.com/WhyNotHugo/django-mercadopago.svg?branch=master\n :target: https://travis-ci.com/WhyNotHugo/django-mercadopago\n :alt: build status\n\n.. image:: https://codecov.io/gh/whynothugo/django-mercadopago/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/whynothugo/django-mercadopago\n :alt: coverage report\n\n.. image:: https://img.shields.io/pypi/v/django-mercadopago.svg\n :target: https://pypi.python.org/pypi/django-mercadopago\n :alt: version on pypi\n\n.. image:: https://img.shields.io/pypi/l/django-mercadopago.svg\n :target: https://github.com/WhyNotHugo/django-mercadopago/blob/master/LICENCE\n :alt: licence\n\n**django-mercadopago** is a simple django application for interacting with\n`MercadoPago `_, aiming to be rather simple,\nand only covers the basic uses cases.\n\nFeatures\n--------\n\nOur intention is not to cover 100% of the features of the upstream API, but\nrather provide a simple app that allows accepting and tracking payments. This\nshould suffice for simple sites like shopping carts, online sales, etc.\n\nPull requests are always welcome. Please don't hesitate to open an issue if you\nencounter a problem. New features will generally only be added as needed, but\nagain, accepted if you submit a patch.\n\nInstallation\n------------\n\nInstallation should generally be done via pip::\n\n pip install django-mercadopago\n\nConfiguration\n-------------\n\nYou'll need to obtainer your API credentials (``app id`` and ``secret key``)\n`here `_ and create an ``Account``\nobject with them. This creation can be done via the django admin included with\nthis app or programmatically.\n\nYou should also expose the notifications endpoints like this::\n\n url(r'^mercadopago/', include('django_mercadopago.urls'), namespace='mp'),\n # Make sure namespace is 'mp', since we assume it is for notification URL\n # contruction.\n\nNote that these endpoints are **required**, since notification callbacks won't\nwork without them.\n\nThere are also a few Django settings that configure the behaviour of this app.\nAll these settings are included in a single ``dict`` inside your Django\nsettings::\n\n MERCADOPAGO = {\n 'autoprocess': True,\n 'success_url': 'myapp:mp_success',\n 'failure_url': 'myapp:mp_failure',\n 'pending_url': 'myapp:mp_pending',\n 'base_host': 'https://www.mysite.com\n }\n\nSee below for an explanation of each setting.\n\nAUTOPROCESS\n~~~~~~~~~~~\n\n**Required**\n\nIf set to ``True``, notifications will be processed as soon as they are\nreceived. Otherwise, it's up to the developer to process them.\n\nA signal is always fired when a notification has been created, and a common\npattern if not auto-processing is to have a celery task to process them::\n\n @receiver(notification_received)\n def process_notification(sender, **kwargs):\n tasks.process_notification.delay(notification=sender)\n\nSUCCESS_URL\n~~~~~~~~~~~\n\n**Required**\n\nThe named URL pattern where requests are redirected after a user successfully\ncompletes a payment. This url will receive as an argument the ``id`` of the\nnotification created for this payment.\n\nFor example, this if this value were set to ``payment_recived``, a\ncorresponding URL pattern would look like this::\n\n url(\n r'pago_recibido/(?P.*)$',\n order.OrderPaidView.as_view(),\n name='payment_received',\n ),\n\nFAILURE_URL\n~~~~~~~~~~~\n\n**Required**\n\nThe named URL pattern where requests are redirected after a user payment fails.\nThis url will receive as an argument the ``id`` of the preference that the user\nattempted to pay\n\n\nPENDING_URL\n~~~~~~~~~~~\n\n**Required**\n\nThe named URL pattern where requests are redirected after a user completes a\npayment, but confirmation is pending (for example, a transaction that takes a\nfew days, bank deposit, etc).\nThis url will receive as an argument the ``id`` of the preference that the user\nis attempting to pay.\n\nBASE_HOST\n~~~~~~~~~\n\n**Required**\n\nDefines the domain name to use for notification and callback URLs. It'll be\nprepended to the exact URL of the exposed notifications endpoint.\n\nUsage\n-----\n\nMercadoPago lets you create preferences, for which you'll later receive\nnotifications (indicating if it was paid, or what happened)::\n\n self.preference = Preference.objects.create(\n title='the product name',\n price=10.0,\n reference='order-38452',\n success_url='http://example.com/mp_done',\n account=account,\n )\n\nIf your app will only be using a single MercadoPago account, just use::\n\n account = Account.objects.first()\n\nFinally, you can handle payment notifications in real time using a\n``post_update`` hook::\n\n @receiver(post_save, sender=MercadoPagoPayment)\n def process_payment(sender, instance=None, created=False, **kwargs):\n do_stuff()\n\nTo complete a full payment flow, you'd:\n\n* Create a ``Preference``.\n* Use ``preference.url`` to forward the user to the payment page.\n* If your webhooks are properly configured, the notification will be created as\n soon as the user completes the operation.\n\n * Depending on your ``AUTOPROCESS`` setting, the status may be updated\n automatically, or may be up to you (see above).\n * If you're not using webhooks, you'll have to poll the status manually\n from time to time (using ``poll_status``).\n\nBackwards compatibility\n-----------------------\n\nAs of v5.0.0, the notification and callback URL formats generated by v4.2.0 and\nearlier is no longer supported. Users must upgrade to v4.3.0, and run this\nversion until all pending payments are completed (or expire), and only then\nupgrade to v5.0.0.\n\nNote that, prior to v4.2.0, this package was called\n``django-mercadopago-simple`` on PyPI. Older release exist under that name.\n\nVersion 2.0.0 changes the database schema quite a bit. While older data is\nretained, some missing fields had to be filled. Auto-generated data will have\nnegative key values, and should easily be recognizable.\n\nRegrettably, filling in this data automatically is not possible. However, there\nis no data loss involved.\n\nLicence\n-------\n\nThis software is distributed under the ISC licence. See LICENCE for details.\n\nCopyright (c) 2015-2018 Hugo Osvaldo Barrera \n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/WhyNotHugo/django-mercadopago", "keywords": "", "license": "ISC", "maintainer": "", "maintainer_email": "", "name": "django-mercadopago", "package_url": "https://pypi.org/project/django-mercadopago/", "platform": "", "project_url": "https://pypi.org/project/django-mercadopago/", "project_urls": { "Homepage": "https://github.com/WhyNotHugo/django-mercadopago" }, "release_url": "https://pypi.org/project/django-mercadopago/5.1.2/", "requires_dist": [ "wheel (>=0.26.0)", "Django (>=1.8.5)", "mercadopago (>=0.3.4)", "setuptools-git (>=1.1)", "setuptools-scm (>=1.8.0)", "factory-boy ; extra == 'fixtures'" ], "requires_python": "", "summary": "MercadoPago integration for django", "version": "5.1.2" }, "last_serial": 5953941, "releases": { "0.0.2": [ { "comment_text": "", "digests": { "md5": "99653bd2fbe55ebd1a9b107c73876f4a", "sha256": "2a6e9a023cce7a3b9b17968ce632155c8ab6328e0c705098faa50fdb4b5c0eb9" }, "downloads": -1, "filename": "django-mercadopago-0.0.2.tar.gz", "has_sig": false, "md5_digest": "99653bd2fbe55ebd1a9b107c73876f4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6582, "upload_time": "2015-07-20T14:56:39", "url": "https://files.pythonhosted.org/packages/7f/ef/bd2ab0e740e51706c06ca652494f6bd9a4acad220a8b92b53721ed9cc7d1/django-mercadopago-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "01394ad4d4a62a4a6886759ee71cb3e6", "sha256": "08fbf854354554c630bebc3953b045342d43fc252951d550bcbf27abb0ab8d00" }, "downloads": -1, "filename": "django-mercadopago-0.0.3.tar.gz", "has_sig": false, "md5_digest": "01394ad4d4a62a4a6886759ee71cb3e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9328, "upload_time": "2015-08-11T19:08:21", "url": "https://files.pythonhosted.org/packages/82/69/927a94af84ea60a431e198cdd68ce21b0130222bd4211b595b846b2f5079/django-mercadopago-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "f47405562f4417cb15ef566fcfea5f15", "sha256": "136392c2d0d37d6fe8930b7af8e9e2d8e60561403a7b6f76f3048365673b2db5" }, "downloads": -1, "filename": "django-mercadopago-0.0.4.tar.gz", "has_sig": false, "md5_digest": "f47405562f4417cb15ef566fcfea5f15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10535, "upload_time": "2015-08-22T19:38:27", "url": "https://files.pythonhosted.org/packages/83/3a/32cf8f180d6aaa9c392234ed525b4542e09e6cf7db905d882e37051b9496/django-mercadopago-0.0.4.tar.gz" } ], "4.2.0": [ { "comment_text": "", "digests": { "md5": "54a217fc054f4d9c6e9039c3c01411fc", "sha256": "f832e7bdb8458c2dee0636351b7ee63e3c2ff2d83b83f3c0abb95858f0fbee89" }, "downloads": -1, "filename": "django_mercadopago-4.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "54a217fc054f4d9c6e9039c3c01411fc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23966, "upload_time": "2017-06-28T18:05:16", "url": "https://files.pythonhosted.org/packages/10/f1/fe339c17d1fd230446b31507ce70fec700ffcdb9a18d2eadb68cd2b3d9ee/django_mercadopago-4.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c8e69fa466a208e3dc786f091d2d98f4", "sha256": "38bba33df54c0396a61d4aabef2cbdbc78ed22825ccc5598cac557b2f74ef920" }, "downloads": -1, "filename": "django-mercadopago-4.2.0.tar.gz", "has_sig": false, "md5_digest": "c8e69fa466a208e3dc786f091d2d98f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16004, "upload_time": "2017-06-28T18:05:17", "url": "https://files.pythonhosted.org/packages/81/ee/8658d006bd682332a0a38d35373bd21d52af37b6b243265498545ff65ef1/django-mercadopago-4.2.0.tar.gz" } ], "4.3.0": [ { "comment_text": "", "digests": { "md5": "4ced9e044ade3ec3e5e448464f563546", "sha256": "52035dbf40d50dbffd809489e1266d46df391b47051df643c0b967f50fb6f3ae" }, "downloads": -1, "filename": "django_mercadopago-4.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4ced9e044ade3ec3e5e448464f563546", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24752, "upload_time": "2017-07-01T20:00:17", "url": "https://files.pythonhosted.org/packages/14/2e/da288925c9e44458c9043eb41d97c50eb1bb386f40029645ae2c8ff054b8/django_mercadopago-4.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "80014052bb37c78986013f998bac6069", "sha256": "e7c774cf3e230f4366bc9ec205fff4ccc03240f35c5be8d6c65ff3b8d2fddfef" }, "downloads": -1, "filename": "django-mercadopago-4.3.0.tar.gz", "has_sig": false, "md5_digest": "80014052bb37c78986013f998bac6069", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16504, "upload_time": "2017-07-01T20:00:19", "url": "https://files.pythonhosted.org/packages/5a/71/a4bc7eb7bc3f9b0a53bb957edea6d6ab6c535251256e53cf1a5c7310fc44/django-mercadopago-4.3.0.tar.gz" } ], "4.4.0": [ { "comment_text": "", "digests": { "md5": "d2b657995deb74d8fcba6e1f25c684ed", "sha256": "7ff4d5d650b6c56184ed46ba4e43bd56dc9dab0b26d27ae85d2153e011cfe7e2" }, "downloads": -1, "filename": "django_mercadopago-4.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d2b657995deb74d8fcba6e1f25c684ed", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24940, "upload_time": "2017-07-05T14:10:28", "url": "https://files.pythonhosted.org/packages/02/8b/6578d6253f79c85844c766eaf5749b885844bfb52d78a2fe021513761f5d/django_mercadopago-4.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fdf702f40d586f17174d0d36a15abefe", "sha256": "ae9b06ebe6dd8af615e6da5dd2cfac14bcb2226feadd5b9d213e0e641f43a0dc" }, "downloads": -1, "filename": "django-mercadopago-4.4.0.tar.gz", "has_sig": false, "md5_digest": "fdf702f40d586f17174d0d36a15abefe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16720, "upload_time": "2017-07-05T14:10:29", "url": "https://files.pythonhosted.org/packages/61/e0/a479d7fe24cc4c55267545f044585d5bb962a43dc6bd2fbabd3017fa4444/django-mercadopago-4.4.0.tar.gz" } ], "4.5.0": [ { "comment_text": "", "digests": { "md5": "7781e67ce3afeb63102862e31d1a4a3f", "sha256": "957ca35b7e2d2bf6db4b21c9a5a06a36e16a031ed1a4b9dd5387825291f74bcf" }, "downloads": -1, "filename": "django_mercadopago-4.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7781e67ce3afeb63102862e31d1a4a3f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26084, "upload_time": "2017-07-12T17:06:40", "url": "https://files.pythonhosted.org/packages/6c/b7/90c9aa7a4ca9137a4341fb105b985ab713666290e8380bd3bcc111dca43c/django_mercadopago-4.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a50ab37a0f493325c670a81a4dee1e9e", "sha256": "175c811763e280fb91977e6df2bf98d7d7c4634d970eb44bd85bb95163c7dd52" }, "downloads": -1, "filename": "django-mercadopago-4.5.0.tar.gz", "has_sig": false, "md5_digest": "a50ab37a0f493325c670a81a4dee1e9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18957, "upload_time": "2017-07-12T17:06:58", "url": "https://files.pythonhosted.org/packages/c3/3c/8e5c583afa9c2a79db7e6c6f7690bb433379063255bea61c20cdd584be0c/django-mercadopago-4.5.0.tar.gz" } ], "4.6.0": [ { "comment_text": "", "digests": { "md5": "6a46207cc960959a4044718f361291c3", "sha256": "a69bdc005ca29a434599077980f2758c56f661b62f21bbc2ac7fa76acc0b79de" }, "downloads": -1, "filename": "django_mercadopago-4.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6a46207cc960959a4044718f361291c3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26143, "upload_time": "2017-10-12T14:31:27", "url": "https://files.pythonhosted.org/packages/c4/26/808cc0fc5f3984b397380636ee016adc72d5cf090b26cd6cbce6b7c743a6/django_mercadopago-4.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "97f78aa523b5b88b96bf8a1632c354f8", "sha256": "74f2392c6d22ac55c02881e3ccc2a9bf402319418073bdeae8b8817d9340cbf2" }, "downloads": -1, "filename": "django-mercadopago-4.6.0.tar.gz", "has_sig": false, "md5_digest": "97f78aa523b5b88b96bf8a1632c354f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17160, "upload_time": "2017-10-12T14:31:29", "url": "https://files.pythonhosted.org/packages/74/1a/f6ee73d1a12704d38411cfed39579606787aaad053363d0515f9500fb1c4/django-mercadopago-4.6.0.tar.gz" } ], "4.6.1": [ { "comment_text": "", "digests": { "md5": "b425ad1c02f1e4eed3f65746c8a1829a", "sha256": "722251b82b4701ac80d4cb9a45ec3898b846cf611f00197db915dc13c38933ea" }, "downloads": -1, "filename": "django_mercadopago-4.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b425ad1c02f1e4eed3f65746c8a1829a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26285, "upload_time": "2017-11-08T18:54:26", "url": "https://files.pythonhosted.org/packages/be/9f/a375edb47090c930c38e5c08cf4b82f19acc508ee5a7ab79d96ec5d9a69b/django_mercadopago-4.6.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad05ac96bd904fe121dbffc594d4dd1f", "sha256": "7f2856b91aa8c1a83a931e2ac139d222f2148f8437c9e1f48d0c57a0ba938257" }, "downloads": -1, "filename": "django-mercadopago-4.6.1.tar.gz", "has_sig": false, "md5_digest": "ad05ac96bd904fe121dbffc594d4dd1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19172, "upload_time": "2017-11-08T18:54:28", "url": "https://files.pythonhosted.org/packages/c6/53/ecdfc07314d5b382119b7d862cc140f8e63e3da6332599829c61bc2773b1/django-mercadopago-4.6.1.tar.gz" } ], "4.6.2": [ { "comment_text": "", "digests": { "md5": "9a271886baf7dbc54b9ca646eca43ebc", "sha256": "32baaff2caa02d5526f5e310699adccdef6be294204569c0dc012e03ee332700" }, "downloads": -1, "filename": "django_mercadopago-4.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "9a271886baf7dbc54b9ca646eca43ebc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26526, "upload_time": "2017-11-08T22:23:25", "url": "https://files.pythonhosted.org/packages/44/58/2cd2b8e10e7edd9f51dff68b1d0e49763746b8f424d56be74f1be8f78892/django_mercadopago-4.6.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d54b52fcf8f03d52f5a8c6c5b31682e9", "sha256": "bcead2a6041757efa91e3d8a1acd3325d9d6d89fca8a44c992e8be0db4662bae" }, "downloads": -1, "filename": "django-mercadopago-4.6.2.tar.gz", "has_sig": false, "md5_digest": "d54b52fcf8f03d52f5a8c6c5b31682e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17620, "upload_time": "2017-11-08T22:23:27", "url": "https://files.pythonhosted.org/packages/06/a8/9d403f5f9745a900634d9c22257df1437a5f0bf9ab3626fe149886797fe1/django-mercadopago-4.6.2.tar.gz" } ], "4.6.3": [ { "comment_text": "", "digests": { "md5": "9a40e6a8f46c579a7bda028e725ef3f8", "sha256": "21f65c5a83e369a7ec2de38d65934981482df8a65a4c27af64d3ea714c45e1d4" }, "downloads": -1, "filename": "django_mercadopago-4.6.3-py3-none-any.whl", "has_sig": false, "md5_digest": "9a40e6a8f46c579a7bda028e725ef3f8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26649, "upload_time": "2017-11-14T16:19:19", "url": "https://files.pythonhosted.org/packages/36/bb/6fc98184a75dff08a652b32369babe651c24f1694f309b3e9e66aee2ee78/django_mercadopago-4.6.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "887dca592cc81e1b6e862fb506656ca7", "sha256": "9b502af69cc86b098233988ee2a13dd44b8be5d765b644c3b7be0f425c6ab467" }, "downloads": -1, "filename": "django-mercadopago-4.6.3.tar.gz", "has_sig": false, "md5_digest": "887dca592cc81e1b6e862fb506656ca7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18980, "upload_time": "2017-11-14T16:19:20", "url": "https://files.pythonhosted.org/packages/d9/f6/ea9dc9a3c3baf1536fd1c26c110fbbbbf3355fb303d6e280fa3cc5304193/django-mercadopago-4.6.3.tar.gz" } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "19fef1f664dc4620e7e2d6a9f39a9a03", "sha256": "2583178c9ccf97d5a83c821d1ade9731b05d8185f0304fc23f20a17eb69cecde" }, "downloads": -1, "filename": "django_mercadopago-5.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "19fef1f664dc4620e7e2d6a9f39a9a03", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27916, "upload_time": "2018-01-13T17:00:35", "url": "https://files.pythonhosted.org/packages/a1/4a/b2c2977b73d22226ec46cb6db074cd30f3a00e730dd03571d47afd9818a5/django_mercadopago-5.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c532ce6ffaeee0c0e8219dd0a46c022", "sha256": "0c94e46af62e2e7d4520c0d844265c9472a38a81a74a0ed15eccaa2c1f033668" }, "downloads": -1, "filename": "django-mercadopago-5.0.0.tar.gz", "has_sig": false, "md5_digest": "9c532ce6ffaeee0c0e8219dd0a46c022", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20473, "upload_time": "2018-01-13T17:00:37", "url": "https://files.pythonhosted.org/packages/b2/d0/4e2f62c4ef32b2a8b0271288ccf138376640473f9afbd42e1d023697faa3/django-mercadopago-5.0.0.tar.gz" } ], "5.0.1": [ { "comment_text": "", "digests": { "md5": "31100d8a56b9efdf84ddc3798fa7ddd3", "sha256": "235e8f89dc526804c7a4c9fc71ddbaff4a55b3c6ee2808ba2df3a6c91a3078ed" }, "downloads": -1, "filename": "django_mercadopago-5.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "31100d8a56b9efdf84ddc3798fa7ddd3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27919, "upload_time": "2018-01-13T18:41:35", "url": "https://files.pythonhosted.org/packages/66/87/c2b5abbee43ebf0dc2b170b9567815bdb844db150613fca1f2e5fa69a380/django_mercadopago-5.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "937efef5b69e49af43b6def69dbe7ca2", "sha256": "483cd8e7bdb36085fcc27b215207ac0c2da71163b561c3b97cddadc360d1ddf7" }, "downloads": -1, "filename": "django-mercadopago-5.0.1.tar.gz", "has_sig": false, "md5_digest": "937efef5b69e49af43b6def69dbe7ca2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19242, "upload_time": "2018-01-13T18:41:36", "url": "https://files.pythonhosted.org/packages/a6/5b/cf2232d8f9e75c03c16c8a2f16c662b3a069ac336618d36a2e44e6b7acc5/django-mercadopago-5.0.1.tar.gz" } ], "5.0.2": [ { "comment_text": "", "digests": { "md5": "3586cff99e833349712d66a2b20b24ba", "sha256": "2af747669fa0fdfe32a60a6ebabb075c4170c28a6871c4a6659add7497bcbf2d" }, "downloads": -1, "filename": "django_mercadopago-5.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "3586cff99e833349712d66a2b20b24ba", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 28013, "upload_time": "2018-05-14T18:54:46", "url": "https://files.pythonhosted.org/packages/3a/23/a6df054607c6e12cdfa39b1afdd5233d37a8b69619db1360c0861fefb1ea/django_mercadopago-5.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7ab70a254f9ee91c81fa50d17d56e3cf", "sha256": "22deb70e578fc7a25dfb30350d90d3b11a61b813061b07073d52f582f86ce7a1" }, "downloads": -1, "filename": "django-mercadopago-5.0.2.tar.gz", "has_sig": false, "md5_digest": "7ab70a254f9ee91c81fa50d17d56e3cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19394, "upload_time": "2018-05-14T18:54:47", "url": "https://files.pythonhosted.org/packages/60/73/cfe935d07b73719b2a48b37962ed45d3b599cc2bb0f80dc52b832dabee76/django-mercadopago-5.0.2.tar.gz" } ], "5.0.3": [ { "comment_text": "", "digests": { "md5": "f091a14e6f4a884d817e463ae0561bbf", "sha256": "784e472a219a2eed1353221c3ade9af26d8c982f12ed05fd2ba1821161a0143d" }, "downloads": -1, "filename": "django_mercadopago-5.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "f091a14e6f4a884d817e463ae0561bbf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 28124, "upload_time": "2018-07-12T21:15:50", "url": "https://files.pythonhosted.org/packages/ab/90/1020a8b8e47f5b356ab868c0ad4d6053d92f8382ef1023ad5a0e7f3250c4/django_mercadopago-5.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2f9d80a6c3e9f15b855f136c2a4d88dd", "sha256": "358ceb800f76b91fec74d205ed6c1dec2fe57a0a402d97f52e604da04e93c814" }, "downloads": -1, "filename": "django-mercadopago-5.0.3.tar.gz", "has_sig": false, "md5_digest": "2f9d80a6c3e9f15b855f136c2a4d88dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19501, "upload_time": "2018-07-12T21:15:51", "url": "https://files.pythonhosted.org/packages/a7/51/b93913363d9887de89ecc98caad0cc6d3b136056fd22b1e8c1f02933c9ca/django-mercadopago-5.0.3.tar.gz" } ], "5.1.0": [ { "comment_text": "", "digests": { "md5": "9153c67ad1d7bb606f11c54397c0996b", "sha256": "be32e02604e42f18014ae6bd149f540f980a011f33457c499a2c9e9a10a0096d" }, "downloads": -1, "filename": "django_mercadopago-5.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9153c67ad1d7bb606f11c54397c0996b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29792, "upload_time": "2019-01-29T09:40:25", "url": "https://files.pythonhosted.org/packages/6e/6c/c4c66080c9079691c91544fee36e246f29777abc2720474629e74d29623c/django_mercadopago-5.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a55201ae791ad4c4b3cbf4c561a91456", "sha256": "4e293af25a32855b88149e58daae525d69ea3e2920910533b1ee9d53bb8a57a5" }, "downloads": -1, "filename": "django-mercadopago-5.1.0.tar.gz", "has_sig": false, "md5_digest": "a55201ae791ad4c4b3cbf4c561a91456", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22118, "upload_time": "2019-01-29T09:40:27", "url": "https://files.pythonhosted.org/packages/0d/26/9e6c7c4f364533c726bc6b58c1452303294231d1edc3ba4d684281b84fc1/django-mercadopago-5.1.0.tar.gz" } ], "5.1.1": [ { "comment_text": "", "digests": { "md5": "2b265ab1124328024b71a4f8a1fac3f0", "sha256": "3727c2eb29d70436f1091126c7cbc8de6b23fb8f13d353e85cd128e257962747" }, "downloads": -1, "filename": "django_mercadopago-5.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2b265ab1124328024b71a4f8a1fac3f0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 30252, "upload_time": "2019-02-05T17:18:14", "url": "https://files.pythonhosted.org/packages/7f/d4/e09633a85a051e8fdaa1a3b3748a6515c13e5a178324cee70260945f863f/django_mercadopago-5.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2cd8b3667ef281d26ad7c6b5b57428a8", "sha256": "6e631d9b724f9e3c0c0f2cbfd26c816ba1c8075d5ee275131768185265c003b0" }, "downloads": -1, "filename": "django-mercadopago-5.1.1.tar.gz", "has_sig": false, "md5_digest": "2cd8b3667ef281d26ad7c6b5b57428a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22253, "upload_time": "2019-02-05T17:18:16", "url": "https://files.pythonhosted.org/packages/2d/82/4f956e58982b333b917a63fb0080dcdc6f4348a3cbb817afe669f396c2aa/django-mercadopago-5.1.1.tar.gz" } ], "5.1.2": [ { "comment_text": "", "digests": { "md5": "f862b20e3e5f95739c26afb24d53733b", "sha256": "2ef44b5b8079f75397af9794eda435099e5120b760927739897f7e66b1c30ad5" }, "downloads": -1, "filename": "django_mercadopago-5.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "f862b20e3e5f95739c26afb24d53733b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27210, "upload_time": "2019-10-10T09:48:55", "url": "https://files.pythonhosted.org/packages/3b/ee/43a411935e5bb33b011c7445e10ec0aaee57853e02b00872b53614bf8d5a/django_mercadopago-5.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d73c69b5a862e317618723f0e52b059", "sha256": "b7d0703e84c9eb9d7639e1eef954218329567dac59b8817e71b9aa22b75f06fe" }, "downloads": -1, "filename": "django-mercadopago-5.1.2.tar.gz", "has_sig": false, "md5_digest": "3d73c69b5a862e317618723f0e52b059", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22689, "upload_time": "2019-10-10T09:48:58", "url": "https://files.pythonhosted.org/packages/8f/2a/ea2e97b34bd740bc43b6652d4b212fe4bd0e6dad7c5608803255835f4e45/django-mercadopago-5.1.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f862b20e3e5f95739c26afb24d53733b", "sha256": "2ef44b5b8079f75397af9794eda435099e5120b760927739897f7e66b1c30ad5" }, "downloads": -1, "filename": "django_mercadopago-5.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "f862b20e3e5f95739c26afb24d53733b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27210, "upload_time": "2019-10-10T09:48:55", "url": "https://files.pythonhosted.org/packages/3b/ee/43a411935e5bb33b011c7445e10ec0aaee57853e02b00872b53614bf8d5a/django_mercadopago-5.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d73c69b5a862e317618723f0e52b059", "sha256": "b7d0703e84c9eb9d7639e1eef954218329567dac59b8817e71b9aa22b75f06fe" }, "downloads": -1, "filename": "django-mercadopago-5.1.2.tar.gz", "has_sig": false, "md5_digest": "3d73c69b5a862e317618723f0e52b059", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22689, "upload_time": "2019-10-10T09:48:58", "url": "https://files.pythonhosted.org/packages/8f/2a/ea2e97b34bd740bc43b6652d4b212fe4bd0e6dad7c5608803255835f4e45/django-mercadopago-5.1.2.tar.gz" } ] }