{ "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-simple\n=========================\n\n.. image:: https://gitlab.com/hobarrera/django-mercadopago/badges/master/build.svg\n :target: https://gitlab.com/hobarrera/django-mercadopago/commits/master\n :alt: build status\n\n.. image:: https://codecov.io/gl/hobarrera/django-mercadopago/branch/master/graph/badge.svg\n :target: https://codecov.io/gl/hobarrera/django-mercadopago\n :alt: coverage report\n\n.. image:: https://img.shields.io/pypi/v/django-mercadopago-simple.svg\n :target: https://pypi.python.org/pypi/django-mercadopago-simple\n :alt: version on pypi\n\n.. image:: https://img.shields.io/pypi/l/django-mercadopago-simple.svg\n :alt: licence\n\n**As of 4.2.0, this package will be renamed to django-mercadopago on PyPI.\nPlease update your references.** Imports and modules remain unchanged.\n\n**django-mercadopago-simple** 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-simple\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:\n\nMERCADOPAGO_AUTOPROCESS\n~~~~~~~~~~~~~~~~~~~~~~~\n\n**Required**\n\nIf ``MERCADOPAGO_AUTOPROCESS`` is ``True``, notifications will be processed as\nsoon as they are received. Otherwise, it's up to the developer to process them.\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\nMERCADOPAGO_POST_PAYMENT_VIEW\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n**Required**\n\nThe setting ``MERCADOPAGO_POST_PAYMENT_VIEW`` must define name of the view\nwhere users are redirected after a payment. This view will receive as an\nargument the ``id`` of the notification created for this payment.\n\nMERCADOPAGO_BASE_HOST\n~~~~~~~~~~~~~~~~~~~~~\n\n**Required**\n\n``MERCADOPAGO_BASE_HOST`` defines the domain name to use for notification URLs.\nIt'll be prepended 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\nBackwards compatibility\n-----------------------\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-2017 Hugo Osvaldo Barrera \n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://gitlab.com/hobarrera/django-mercadopago", "keywords": "", "license": "ISC", "maintainer": "", "maintainer_email": "", "name": "django-mercadopago-simple", "package_url": "https://pypi.org/project/django-mercadopago-simple/", "platform": "", "project_url": "https://pypi.org/project/django-mercadopago-simple/", "project_urls": { "Homepage": "https://gitlab.com/hobarrera/django-mercadopago" }, "release_url": "https://pypi.org/project/django-mercadopago-simple/4.1.1/", "requires_dist": [ "Django (>=1.8.5)", "mercadopago (>=0.3.4)", "setuptools-git (>=1.1)", "setuptools-scm (>=1.8.0)", "wheel (>=0.26.0)", "factory-boy; extra == 'fixtures'" ], "requires_python": "", "summary": "MercadoPago integration for django", "version": "4.1.1" }, "last_serial": 3232057, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "abb9f282cba852df8955ec85cee06183", "sha256": "1b0f8e66d3cd9642d624b69632abe57c9c0285c89b9c3b99677772051ab0d65c" }, "downloads": -1, "filename": "django_mercadopago_simple-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "abb9f282cba852df8955ec85cee06183", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 10618, "upload_time": "2015-09-05T14:45:49", "url": "https://files.pythonhosted.org/packages/2a/1a/86dd2e7371924ca9ba952438934cdb0bee780d0223f9a4473b6fc8c71035/django_mercadopago_simple-1.0.0-py3-none-any.whl" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "f7628413a7367ffe6fef469f8fdd977e", "sha256": "6fdda6218b32c0d7471e58de63421dcfc8666eb608cac4168e8b262a604c338d" }, "downloads": -1, "filename": "django_mercadopago_simple-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f7628413a7367ffe6fef469f8fdd977e", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 10619, "upload_time": "2015-09-06T23:47:31", "url": "https://files.pythonhosted.org/packages/85/91/5bd00602d5e9ecc743b54c5d236a67f0b18989c3d1cafb1f160d153303e0/django_mercadopago_simple-1.0.1-py3-none-any.whl" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "f5401252bdb67d3c13b1fed39c6ce365", "sha256": "c177aea7b87b05d76dadd1f3726f5238c5d6bb4ab74b0c7d69e86b619cfc8212" }, "downloads": -1, "filename": "django_mercadopago_simple-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "f5401252bdb67d3c13b1fed39c6ce365", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 8902, "upload_time": "2015-09-06T23:52:51", "url": "https://files.pythonhosted.org/packages/39/73/f6a5b0f223fdf10573fbeb60324979a951a1b8f83681a05c1e9b60a9ff88/django_mercadopago_simple-1.0.2-py3-none-any.whl" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "178e875867c9f1ae9f4344ffec5d45b0", "sha256": "2f23565161d52c10bcb7ab4c52205f3d3878f365ff7b4193b04a0426c44ee3f6" }, "downloads": -1, "filename": "django_mercadopago_simple-1.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "178e875867c9f1ae9f4344ffec5d45b0", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 8940, "upload_time": "2015-09-07T13:20:35", "url": "https://files.pythonhosted.org/packages/87/06/bd8924112319bb506f1fc59b6e5a6583c93a7e337c12194bb0f75c209cb3/django_mercadopago_simple-1.0.3-py3-none-any.whl" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "cb9dc78774c81d1bb0f43f4baf7a41f6", "sha256": "26d05b937167bb8e189b6af014e6c1083de4e26f35b41cf11c714f8fa867f532" }, "downloads": -1, "filename": "django_mercadopago_simple-1.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "cb9dc78774c81d1bb0f43f4baf7a41f6", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 8946, "upload_time": "2015-09-07T13:34:49", "url": "https://files.pythonhosted.org/packages/b1/97/a1d999e6bd60537fb5f39ce465edbfd74f4427b6c5a8f1faa4bd344fd9db/django_mercadopago_simple-1.0.4-py3-none-any.whl" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "eb389d0dc1567b1c73ca102827b66ef5", "sha256": "3d1d7accf9da2c4bca3193fbb745dd83da241a926b1a90d3c6c3d81d5a698c6c" }, "downloads": -1, "filename": "django_mercadopago_simple-1.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "eb389d0dc1567b1c73ca102827b66ef5", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 8940, "upload_time": "2015-09-07T15:07:06", "url": "https://files.pythonhosted.org/packages/1d/58/985fe7d7735a242a9daa264b55a57a04c2ad4927283e29821db127e04931/django_mercadopago_simple-1.0.5-py3-none-any.whl" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "e7401eaef93d3faf7f1c2c4f825d5d09", "sha256": "87caa14758354c18deb74a46883d410d0d7562b460802437317f7598cb55be5e" }, "downloads": -1, "filename": "django_mercadopago_simple-2.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e7401eaef93d3faf7f1c2c4f825d5d09", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12402, "upload_time": "2015-09-24T03:15:02", "url": "https://files.pythonhosted.org/packages/16/83/8f2addb2b7092451a304b663d4c4360491fe11f14a1354279dfd918b7b9c/django_mercadopago_simple-2.0.0-py3-none-any.whl" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "10b0258307f1b55b6cf729879012df18", "sha256": "b75b77624485bda99446582e992f45ac2c328b12605cc287af933252cf1c4998" }, "downloads": -1, "filename": "django_mercadopago_simple-2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "10b0258307f1b55b6cf729879012df18", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12551, "upload_time": "2015-10-02T20:44:10", "url": "https://files.pythonhosted.org/packages/c4/05/d353a80a4877052cf268b01ba30127e72fc51444dce5965a2dd76972b24f/django_mercadopago_simple-2.0.1-py3-none-any.whl" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "48f86cdecccd5ed5219fe3d613224162", "sha256": "a32c70dd08872fa42f3d923f39204e734a8dc53b479cbcdbe4e162a2b52d06a0" }, "downloads": -1, "filename": "django_mercadopago_simple-2.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "48f86cdecccd5ed5219fe3d613224162", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12645, "upload_time": "2015-10-06T17:29:40", "url": "https://files.pythonhosted.org/packages/96/8e/66754ff5c66d0bcf06da12030ed06ddad0a95c51231b793448bbdee2abed/django_mercadopago_simple-2.0.2-py3-none-any.whl" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "2812dea47af813fa19a14f7c28c8e320", "sha256": "ff912deaa3b05e3ab3eadc9f0116eb26152522fcf2326143479fc31a18b52685" }, "downloads": -1, "filename": "django_mercadopago_simple-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2812dea47af813fa19a14f7c28c8e320", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 13396, "upload_time": "2015-10-07T21:22:19", "url": "https://files.pythonhosted.org/packages/f6/a3/8273438d724569baf33c15681f7ccc0234d002f7df6cedfba0e6390d2cce/django_mercadopago_simple-2.1.0-py3-none-any.whl" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "8d447315e79e6765bb6c9b0615bb683a", "sha256": "2d0f9d13de5e0ad57fb0baa3c8e3aae27902e7f33508824466f9e28330cd6d88" }, "downloads": -1, "filename": "django_mercadopago_simple-2.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8d447315e79e6765bb6c9b0615bb683a", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 14508, "upload_time": "2015-10-09T21:40:06", "url": "https://files.pythonhosted.org/packages/bf/29/e12d63329b293d6b664294443757f19a5e54af9629602fad08ca807697c8/django_mercadopago_simple-2.2.0-py3-none-any.whl" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "78f8f41c1477830da9b45d27a8589af9", "sha256": "209178dd5b03e7fb1682e204f4932b8368150f804b20ce6768862f080bf024b1" }, "downloads": -1, "filename": "django_mercadopago_simple-2.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "78f8f41c1477830da9b45d27a8589af9", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 15080, "upload_time": "2015-10-15T21:25:29", "url": "https://files.pythonhosted.org/packages/6b/26/5c91d49e5118f2a6a034a161e20731f28f6f83e73c2efc7c82eba8a81201/django_mercadopago_simple-2.3.0-py3-none-any.whl" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "b77d214c8eac18f88d5f29119692d395", "sha256": "a241bdf5a159cfb6d3401bbf1ce1246fb136c0b2f6fde8c3478f75fed997edaf" }, "downloads": -1, "filename": "django_mercadopago_simple-2.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b77d214c8eac18f88d5f29119692d395", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 16509, "upload_time": "2015-10-19T01:51:15", "url": "https://files.pythonhosted.org/packages/0b/86/309f085e9d2ff74acaa54d8ec762713616709b060002832748adac51fbc3/django_mercadopago_simple-2.4.0-py3-none-any.whl" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "76e69080efc2028e422500fdb940711a", "sha256": "8d2b4b1357746cc5cee02b0a4ee8e06c26ec176d75b064917a4771980f5461a3" }, "downloads": -1, "filename": "django_mercadopago_simple-2.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "76e69080efc2028e422500fdb940711a", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 16829, "upload_time": "2015-10-20T16:37:12", "url": "https://files.pythonhosted.org/packages/8b/ea/c370c46528bb49eea549e2691fd2b9cb42372906a5df76eee15409afc5b1/django_mercadopago_simple-2.5.0-py3-none-any.whl" } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "30ba55b7596b0b452e9c06a5adb0d42a", "sha256": "0d5ecc822b0c7d41d39d59d45ed4da45019232f4300c283bf50c02fc7b58c9e1" }, "downloads": -1, "filename": "django_mercadopago_simple-2.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "30ba55b7596b0b452e9c06a5adb0d42a", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 17666, "upload_time": "2015-10-27T01:14:25", "url": "https://files.pythonhosted.org/packages/63/10/8eb17445f45a762cb8a3764bf3cdda6e6c1a3f00365b43661214eabcc734/django_mercadopago_simple-2.6.0-py3-none-any.whl" } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "c32c715b7fd706094499de4b07fd53dc", "sha256": "1f508cbcc3160e4d5e3dd9b079bf8a58ad4238f597bbfd79e013bb81aea13874" }, "downloads": -1, "filename": "django_mercadopago_simple-2.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c32c715b7fd706094499de4b07fd53dc", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 18346, "upload_time": "2015-10-27T17:20:55", "url": "https://files.pythonhosted.org/packages/0f/4d/e008f340252f7e8f5f311970c9610b6ecee5e34b1990c89c11352f9425ee/django_mercadopago_simple-2.7.0-py3-none-any.whl" } ], "2.7.1": [ { "comment_text": "", "digests": { "md5": "1edb26e7547ceb6628a38cf68377fbe8", "sha256": "507eed18f21c61d43a32f0bdebd633b52ce54893230b22e2b316b93cc84b218d" }, "downloads": -1, "filename": "django_mercadopago_simple-2.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1edb26e7547ceb6628a38cf68377fbe8", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 18358, "upload_time": "2015-10-27T18:13:51", "url": "https://files.pythonhosted.org/packages/f7/9d/78dad8fa2a9991afffbc567a1df0785d38950b5f02be67349253f89115e0/django_mercadopago_simple-2.7.1-py3-none-any.whl" } ], "2.8.0": [ { "comment_text": "", "digests": { "md5": "16fc536704213552b1c05402d45bda14", "sha256": "68705ed90085af9a10ab518c03f96082ccf1bee711de3fd56e659fdecd973134" }, "downloads": -1, "filename": "django_mercadopago_simple-2.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "16fc536704213552b1c05402d45bda14", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 19385, "upload_time": "2015-11-03T19:48:45", "url": "https://files.pythonhosted.org/packages/42/d2/c28fce4fdd49a2f53bf4073b68d206906aba3208eca998b516026f2e536b/django_mercadopago_simple-2.8.0-py3-none-any.whl" } ], "2.9.0": [ { "comment_text": "", "digests": { "md5": "3ce6c42f2a61a6e59a2ed204c7cba537", "sha256": "a8b6005f92c281aa162358f69740fec6a9cb78ace90916ccfdaae9fee4117a60" }, "downloads": -1, "filename": "django_mercadopago_simple-2.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3ce6c42f2a61a6e59a2ed204c7cba537", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19574, "upload_time": "2017-06-06T19:54:48", "url": "https://files.pythonhosted.org/packages/02/df/7de6f9fe4b4c7ed6122cbb8387a69e8218f761675b796f24d154fb33b4ff/django_mercadopago_simple-2.9.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "215a86f6b84787bef34ad0f4dec082b4", "sha256": "ecf7775e170399fcbd50f751f23cb787e6a20de3ad5ae24b520246092c011e8e" }, "downloads": -1, "filename": "django-mercadopago-simple-2.9.0.tar.gz", "has_sig": false, "md5_digest": "215a86f6b84787bef34ad0f4dec082b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14540, "upload_time": "2017-06-06T19:54:52", "url": "https://files.pythonhosted.org/packages/30/db/9cb8aecda8c85a246f9d8df2db7cebe2fdde7e27d93e6a0ae8556851d260/django-mercadopago-simple-2.9.0.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "3e6f99f2c293b2f56db23aebe40071d7", "sha256": "20c6487b0c0f64e5d8026028c7086ca28e4e4a45243defbecdeabc004350ef42" }, "downloads": -1, "filename": "django_mercadopago_simple-4.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3e6f99f2c293b2f56db23aebe40071d7", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 19627, "upload_time": "2017-06-08T01:51:09", "url": "https://files.pythonhosted.org/packages/c2/20/4cd35122040a7ece3cefc0372a42772669ad2b1e237ae7abe28667ebd410/django_mercadopago_simple-4.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9e8be3d6be136c05804b8d15ef999348", "sha256": "1de75cb182a68a4013d03f7ac8427c39d8bbcda63d4571e87d4d8e4d5eea9436" }, "downloads": -1, "filename": "django-mercadopago-simple-4.0.0.tar.gz", "has_sig": false, "md5_digest": "9e8be3d6be136c05804b8d15ef999348", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14676, "upload_time": "2017-06-08T01:51:12", "url": "https://files.pythonhosted.org/packages/b6/55/3272092683f1db8d30ba04c2f2060a3a1730559c618a1acf5bd7e01e129a/django-mercadopago-simple-4.0.0.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "141006af4d809a6cabc470499ec08362", "sha256": "384d33fa6a38be83ec1b4cd28bc864b2668070c6a6a47844dfe93977e7ba8d19" }, "downloads": -1, "filename": "django_mercadopago_simple-4.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "141006af4d809a6cabc470499ec08362", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23462, "upload_time": "2017-06-12T23:20:35", "url": "https://files.pythonhosted.org/packages/1b/0d/af6b4fc4ff46ee42fb72d648c1c94074fedc91167d4e5a0ccf7551be7a92/django_mercadopago_simple-4.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7e7b54ed1b97a79e02b8c75314c54bbb", "sha256": "96129aec92e7fdde90e39d377370eb1f6612f69aac6ebeb5ef8685dcd5c4f006" }, "downloads": -1, "filename": "django-mercadopago-simple-4.0.1.tar.gz", "has_sig": false, "md5_digest": "7e7b54ed1b97a79e02b8c75314c54bbb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15546, "upload_time": "2017-06-12T23:20:37", "url": "https://files.pythonhosted.org/packages/cc/c2/aea6ab06eddd62093d763b1f1782bb3fda197d7200fec1770220f6d1af3d/django-mercadopago-simple-4.0.1.tar.gz" } ], "4.0.2": [ { "comment_text": "", "digests": { "md5": "4a6a3eda33fe84da2a922f459809816d", "sha256": "2c0642a41476b485cb2b06b2bc16779d0811a97b41d523cf1c242787e4a2bc1c" }, "downloads": -1, "filename": "django_mercadopago_simple-4.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "4a6a3eda33fe84da2a922f459809816d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23502, "upload_time": "2017-06-13T01:55:38", "url": "https://files.pythonhosted.org/packages/85/4f/82460ace95721b3d90d3d935527406ac1615ea598dfcdacd451ab7f158b8/django_mercadopago_simple-4.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "674afd98220a1b6c33cd37ac043f4ce9", "sha256": "7f731bbee0d6e325c969bbb1eef5cfb3aae54b66144cebb77fd72fb9623779de" }, "downloads": -1, "filename": "django-mercadopago-simple-4.0.2.tar.gz", "has_sig": false, "md5_digest": "674afd98220a1b6c33cd37ac043f4ce9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15573, "upload_time": "2017-06-13T01:55:42", "url": "https://files.pythonhosted.org/packages/a6/76/67291fe88cabc8012ab922d11a1001ac1579f06cafd8441f24c191f68c6e/django-mercadopago-simple-4.0.2.tar.gz" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "f89f84116c141e3e9c76f50dbc63651c", "sha256": "65a1a87cca0cd6af11987ecb4e2ff07411d6e14b10f011ee91c394af738392e2" }, "downloads": -1, "filename": "django_mercadopago_simple-4.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f89f84116c141e3e9c76f50dbc63651c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23906, "upload_time": "2017-06-13T05:48:43", "url": "https://files.pythonhosted.org/packages/47/65/9f7946e98ed186471abf87499dbdfde1c4ae0625633f407c594d988f42bf/django_mercadopago_simple-4.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d13145dc17626415c50c725fd23009c", "sha256": "e15eafb92234a27866e46cf9ca9eef1624fb6585d4dcd69319c62276b1731c0e" }, "downloads": -1, "filename": "django-mercadopago-simple-4.1.0.tar.gz", "has_sig": false, "md5_digest": "7d13145dc17626415c50c725fd23009c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15881, "upload_time": "2017-06-13T05:48:45", "url": "https://files.pythonhosted.org/packages/98/b7/3bd6c230284772833e01438dbfc7e5287de669900c318d7bea15ae68c69e/django-mercadopago-simple-4.1.0.tar.gz" } ], "4.1.1": [ { "comment_text": "", "digests": { "md5": "8687b93e237a2f3e7647a24d785198a1", "sha256": "0e437162364448a0d531ce6f72aef9dfe60c321cba6f00b521c36b63403701a9" }, "downloads": -1, "filename": "django_mercadopago_simple-4.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "8687b93e237a2f3e7647a24d785198a1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24105, "upload_time": "2017-06-28T17:59:44", "url": "https://files.pythonhosted.org/packages/49/d3/77839d4886cb99e4523731d59644accd6e164c66793a67d82646aea71651/django_mercadopago_simple-4.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1196cccabad80dde11c6fb0162ef919f", "sha256": "3c715118717aca4ec1ed2738cfb5f6c1d50f7925a6ade79d5a630063935796ee" }, "downloads": -1, "filename": "django-mercadopago-simple-4.1.1.tar.gz", "has_sig": false, "md5_digest": "1196cccabad80dde11c6fb0162ef919f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17886, "upload_time": "2017-06-28T17:59:46", "url": "https://files.pythonhosted.org/packages/2c/eb/be50192c9a7f17277a99f4e9d5d75cedfcc4556a781975a9599190ef1ce1/django-mercadopago-simple-4.1.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8687b93e237a2f3e7647a24d785198a1", "sha256": "0e437162364448a0d531ce6f72aef9dfe60c321cba6f00b521c36b63403701a9" }, "downloads": -1, "filename": "django_mercadopago_simple-4.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "8687b93e237a2f3e7647a24d785198a1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24105, "upload_time": "2017-06-28T17:59:44", "url": "https://files.pythonhosted.org/packages/49/d3/77839d4886cb99e4523731d59644accd6e164c66793a67d82646aea71651/django_mercadopago_simple-4.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1196cccabad80dde11c6fb0162ef919f", "sha256": "3c715118717aca4ec1ed2738cfb5f6c1d50f7925a6ade79d5a630063935796ee" }, "downloads": -1, "filename": "django-mercadopago-simple-4.1.1.tar.gz", "has_sig": false, "md5_digest": "1196cccabad80dde11c6fb0162ef919f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17886, "upload_time": "2017-06-28T17:59:46", "url": "https://files.pythonhosted.org/packages/2c/eb/be50192c9a7f17277a99f4e9d5d75cedfcc4556a781975a9599190ef1ce1/django-mercadopago-simple-4.1.1.tar.gz" } ] }