{ "info": { "author": "Craig Weber", "author_email": "crgwbr@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: ISC License (ISCL)", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 3" ], "description": "=========================\ndjango-oscar-api-checkout\n=========================\n\n| |build| |coverage| |license| |kit| |format|\n\nAn extension on top of django-oscar-api providing a more flexible checkout API with a pluggable payment methods interface.\n\n.. |build| image:: https://gitlab.com/thelabnyc/django-oscar/django-oscar-api-checkout/badges/master/pipeline.svg\n :target: https://gitlab.com/thelabnyc/django-oscar/django-oscar-api-checkout/commits/master\n.. |coverage| image:: https://gitlab.com/thelabnyc/django-oscar/django-oscar-api-checkout/badges/master/coverage.svg\n :target: https://gitlab.com/thelabnyc/django-oscar/django-oscar-api-checkout/commits/master\n.. |license| image:: https://img.shields.io/pypi/l/django-oscar-api-checkout.svg\n :target: https://pypi.python.org/pypi/django-oscar-api-checkout\n.. |kit| image:: https://badge.fury.io/py/django-oscar-api-checkout.svg\n :target: https://pypi.python.org/pypi/django-oscar-api-checkout\n.. |format| image:: https://img.shields.io/pypi/format/django-oscar-api-checkout.svg\n :target: https://pypi.python.org/pypi/django-oscar-api-checkout\n\n\nCompatible Payment Plugins\n==========================\n\n- `django-oscar-cybersource `_: Provides order payment using Cybersource Secure Acceptance Silent Order POST for PCI SAQ A-EP compliant credit card processing.\n- `django-oscar-wfrs `_: Provides order payment using financing via the Wells Fargo Retail Services SOAP API.\n\n\nInstallation\n============\n\n1. Install `django-oscar-api` using the `documentation `_.\n\n2. Install the `django-oscar-api-checkout` package.::\n\n $ pip install django-oscar-api-checkout\n\n3. Add `oscarapicheckout` to your `INSTALLED_APPS`::\n\n # myproject/settings.py\n ...\n INSTALLED_APPS = [\n ...\n 'oscarapicheckout',\n ] + get_core_apps([])\n ...\n\n4. Configure Oscar's order status pipeline.::\n\n # myproject/settings.py\n ...\n # Needed by oscarapicheckout\n ORDER_STATUS_PENDING = 'Pending'\n ORDER_STATUS_PAYMENT_DECLINED = 'Payment Declined'\n ORDER_STATUS_AUTHORIZED = 'Authorized'\n\n # Other statuses\n ORDER_STATUS_SHIPPED = 'Shipped'\n ORDER_STATUS_CANCELED = 'Canceled'\n\n # Pipeline Config\n OSCAR_INITIAL_ORDER_STATUS = ORDER_STATUS_PENDING\n OSCARAPI_INITIAL_ORDER_STATUS = ORDER_STATUS_PENDING\n OSCAR_ORDER_STATUS_PIPELINE = {\n ORDER_STATUS_PENDING: (ORDER_STATUS_PAYMENT_DECLINED, ORDER_STATUS_AUTHORIZED, ORDER_STATUS_CANCELED),\n ORDER_STATUS_PAYMENT_DECLINED: (ORDER_STATUS_AUTHORIZED, ORDER_STATUS_CANCELED),\n ORDER_STATUS_AUTHORIZED: (ORDER_STATUS_SHIPPED, ORDER_STATUS_CANCELED),\n ORDER_STATUS_SHIPPED: (),\n ORDER_STATUS_CANCELED: (),\n }\n\n OSCAR_INITIAL_LINE_STATUS = ORDER_STATUS_PENDING\n OSCAR_LINE_STATUS_PIPELINE = {\n ORDER_STATUS_PENDING: (ORDER_STATUS_SHIPPED, ORDER_STATUS_CANCELED),\n ORDER_STATUS_SHIPPED: (),\n ORDER_STATUS_CANCELED: (),\n }\n\n5. Configure what payment methods are enabled and who can use them.::\n\n # myproject/settings.py\n ...\n API_ENABLED_PAYMENT_METHODS = [\n {\n 'method': 'oscarapicheckout.methods.Cash',\n 'permission': 'oscarapicheckout.permissions.StaffOnly',\n },\n {\n 'method': 'some.other.methods.CreditCard',\n 'permission': 'oscarapicheckout.permissions.Public',\n },\n ]\n\n6. Add `oscarapicheckout` to your root URL configuration directly before oscarapi.::\n\n # myproject/urls.py\n ...\n from oscarapi.app import application as oscar_api\n from oscarapicheckout.app import application as oscar_api_checkout\n\n urlpatterns = patterns('',\n ...\n url(r'^api/', include(oscar_api_checkout.urls)), # Must be before oscar_api.urls\n url(r'^api/', include(oscar_api.urls)),\n ...\n )\n\n\nUsage\n=====\n\nThese are the basic steps to add an item to the basket and checkout using the API.\n\n1. Add an item to the basket.::\n\n POST /api/basket/add-product/\n\n {\n \"url\": \"/api/products/1/\",\n \"quantity\": 1\n }\n\n\n2. List the payment methods available to the current user.::\n\n GET /api/checkout/payment-methods/\n\n3. Submit the order, specifying which payment method(s) to use.::\n\n POST /api/checkout/\n\n {\n \"guest_email\": \"joe@example.com\",\n \"basket\": \"/api/baskets/1/\",\n \"shipping_address\": {\n \"first_name\": \"Joe\",\n \"last_name\": \"Schmoe\",\n \"line1\": \"234 5th Ave\",\n \"line4\": \"Manhattan\",\n \"postcode\": \"10001\",\n \"state\": \"NY\",\n \"country\": \"/api/countries/US/\",\n \"phone_number\": \"+1 (717) 467-1111\",\n },\n \"billing_address\": {\n \"first_name\": \"Joe\",\n \"last_name\": \"Schmoe\",\n \"line1\": \"234 5th Ave\",\n \"line4\": \"Manhattan\",\n \"postcode\": \"10001\",\n \"state\": \"NY\",\n \"country\": \"/api/countries/US/\",\n \"phone_number\": \"+1 (717) 467-1111\",\n },\n \"payment\": {\n \"cash\": {\n \"enabled\": true,\n \"amount\": \"10.00\",\n },\n \"creditcard\": {\n \"enabled\": true,\n \"pay_balance\": true,\n }\n }\n }\n\n4. Check the status of each enabled payment option.::\n\n GET /api/checkout/payment-states/\n\n\n\n\n\nChangelog\n=========\n\n0.5.2\n------------------\n- Internationalization\n\n0.5.1\n------------------\n- Add new permission: ``oscarapicheckout.permissions.CustomerOnly``\n\n0.5.0\n------------------\n- Make payment methods create separate ``payment.Source`` objects per Reference number (`!6 `_).\n- Delete Voucher applications upon payment decline, rather than waiting for an order placement retry. This fixes issues associated with payment declined orders consuming vouchers.\n\n0.4.1\n------------------\n- Fixed bug that prevented transitioning an order from ``Payment Declined`` to ``Authorized`` if the payment type was changed.\n\n0.4.0\n------------------\n- Improved split-pay support by allowing multiple payments of the same type. E.g. two credit cards, etc.\n - *[Important]* To accomplish this, the payment provider plug-in interface changed slightly. Plugins must be updated to support the new interface. The REST API front-end added parameters, but retained backwards compatibility with ``0.3.x``.\n- Fixed bug caused by changing the status of a Payment Declined order (e.g. to Canceled) caused checkout to break for the customer, because they were now editable a basket connected to a non-payment-declined order. Fixes the bug by setting a basket to \"Submitted\" status whenever the order status transitions from \"Payment Declined\" to another status.\n\n0.3.4\n------------------\n- Fix Django 2.0 Deprecation warnings.\n\n0.3.3\n------------------\n- Add validation to checkout API to prevent placing an order for an item that went out of stock after the item was added to the customer's basket.\n\n0.3.2\n------------------\n- Fix issue in Python 3 when ``OrderCreator.place_order`` raises a ``ValueError`` exception.\n- Fix bug occurring in Oscar 1.5 when vouchers can be used by the user placing an order, but not by the order owner.\n\n0.3.1\n------------------\n- Add support for Django 1.11 and Oscar 1.5\n\n0.3.0\n------------------\n- Add helper classes for caching structured data during a multi-step checkout process.\n - See `oscarapicheckout.cache` module for details.\n - Doesn't yet include API views for editing or view such data.\n - Currently includes classes for storing email address, shipping address, billing address, and shipping method.\n - Required [Django Cache](https://docs.djangoproject.com/en/dev/topics/cache/) framework to be configured.\n\n0.2.7\n------------------\n- *[Important]* Fix bug introduced in *r0.2.6* with multi-step payment methods when retrying a payment decline.\n\n0.2.6\n------------------\n- *[Important]* Fix bug causing mismatch between ``Order.user`` and ``Basket.owner`` when, during placement, the order ownership calculator assigns the order to a user other than the basket owner. Now, after creating the order model, the owner of the basket associated with the order is updated to match the order's owner.\n- Make it possible to set the ``ORDER_OWNERSHIP_CALCULATOR`` to a callable or a string instead of just a string.\n\n0.2.5\n------------------\n- Improve testing by using tox in the CI runner.\n\n0.2.4\n------------------\n- Upgrade dependencies.\n\n0.2.3\n------------------\n- Make the order in which signals are sent during checkout consistent for synchronous and asynchronous payment methods.\n - Previously a synchronous payment method resulted in sending ``order_payment_authorized`` before sending ``order_placed``, but an asynchronous payment method would trigger ``order_placed`` first followed by ``order_payment_authorized`` (on a subsequent HTTP request). They are still different in terms of synchronous payment methods firing both signals on the same request and asynchronous payment methods triggering them on different request, but at least now they are always fired in the same order: ``order_placed`` first followed by ``order_payment_authorized``.\n\n0.2.2\n------------------\n- Require an email address during checkout\n\n0.2.1\n------------------\n- Explicitly dis-allow cache on API views\n\n0.2.0\n------------------\n- Add setting to allow configuring how many payment types may be used on an order\n- Add hook for setting the ownership information on an order during placement\n- Prevent PaymentEvent.reference from ever being None\n\n0.1.5\n------------------\n- Fix bug where order number wouldn't be recycled for a declined order\n\n0.1.4\n------------------\n- Add context to payment method serializers\n\n0.1.3\n------------------\n- Simplify dependencies\n\n0.1.2\n------------------\n- Allow PaymentMethods to handle 0.00-amount transactions\n\n0.1.1\n------------------\n- Send confirmation message upon order authorization\n- Add pep8 linting\n\n0.1.0\n------------------\n- Initial release.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://gitlab.com/thelabnyc/django-oscar/django-oscar-api-checkout", "keywords": "", "license": "ISC", "maintainer": "", "maintainer_email": "", "name": "django-oscar-api-checkout", "package_url": "https://pypi.org/project/django-oscar-api-checkout/", "platform": "", "project_url": "https://pypi.org/project/django-oscar-api-checkout/", "project_urls": { "Homepage": "https://gitlab.com/thelabnyc/django-oscar/django-oscar-api-checkout" }, "release_url": "https://pypi.org/project/django-oscar-api-checkout/0.5.2/", "requires_dist": [ "django-oscar (<2.0.0,>=1.6.0)", "django-oscar-api (>=1.4.0)", "phonenumberslite (>=7.0.2)", "coverage (>=4.4.2) ; extra == 'development'", "psycopg2cffi (>=2.7.7) ; extra == 'development'", "flake8 (>=3.2.1) ; extra == 'development'", "PyYAML (>=3.12) ; extra == 'development'", "sphinx (>=1.5.2) ; extra == 'development'", "tox (>=2.6.0) ; extra == 'development'", "versiontag (>=1.2.0) ; extra == 'development'" ], "requires_python": "", "summary": "An extension on top of django-oscar-api providing a more flexible checkout API with a pluggable payment methods interface.", "version": "0.5.2" }, "last_serial": 5891837, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "a05a302f831082f167a305c943a27c4c", "sha256": "8959591b3893a9ed51c7209b8c3cbeeb765e185bf50974f87391d251addef8d5" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.1.0-py3-none-any.whl", "has_sig": true, "md5_digest": "a05a302f831082f167a305c943a27c4c", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 21565, "upload_time": "2016-06-01T19:15:03", "url": "https://files.pythonhosted.org/packages/47/75/81f3d9eb75215a47b1acf2642e291cfa4266dd55cec3a8d5dc65dfc483cc/django_oscar_api_checkout-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "01d37799368f308dbea9de17e34cd11f", "sha256": "938ed9d15bdd8bd04b7fa99ddce857c5ae5297b3b43a50649dc2840e90a213dd" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.1.0.tar.gz", "has_sig": true, "md5_digest": "01d37799368f308dbea9de17e34cd11f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15627, "upload_time": "2016-06-01T19:14:57", "url": "https://files.pythonhosted.org/packages/18/9d/7b8bd389d5071b3ef1160b60be4622b9641a0ee408d178ecc6965d85ecba/django-oscar-api-checkout-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "d5141306a96614809dc749e0b5934959", "sha256": "bad9e070d07b79757870ad9bd0e7eec12fe13e2be441436e97b8c460791cfaa4" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.1.1-py3-none-any.whl", "has_sig": true, "md5_digest": "d5141306a96614809dc749e0b5934959", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 22565, "upload_time": "2016-06-01T21:47:47", "url": "https://files.pythonhosted.org/packages/64/02/509f1def8708833c057ec7fa6b9e619a723fcb45f8dd627f7c4de66eeb48/django_oscar_api_checkout-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2467dc6191260366fe98fd05f57906cb", "sha256": "6ee9342a83e35a1e0e3211081ad45720c823ef7f452fe8fda0c017165855c652" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.1.1.tar.gz", "has_sig": true, "md5_digest": "2467dc6191260366fe98fd05f57906cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16193, "upload_time": "2016-06-01T21:47:42", "url": "https://files.pythonhosted.org/packages/12/36/6c3099fef1006a89cb6f99f70eb8c7264b6cc8957c7ccb9a9fdfccdd27f4/django-oscar-api-checkout-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "68af3950874b17721259c240d6eb37e6", "sha256": "d03430b446f565c3f7174c81f9af57f5305c1f2051980fc297be995f4f86df1a" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.1.2-py3-none-any.whl", "has_sig": true, "md5_digest": "68af3950874b17721259c240d6eb37e6", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 22659, "upload_time": "2016-06-01T23:19:58", "url": "https://files.pythonhosted.org/packages/02/1e/648d1cee41239dda7125d824ea0bce10c47528ae55ae618da0c53282bad8/django_oscar_api_checkout-0.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1df743a9f46f634d3da25bc96cb40763", "sha256": "1d04965bf6915fa429013077943fc1a714478e2a03fbb02f8b787d6eec11e0db" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.1.2.tar.gz", "has_sig": true, "md5_digest": "1df743a9f46f634d3da25bc96cb40763", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16270, "upload_time": "2016-06-01T23:19:54", "url": "https://files.pythonhosted.org/packages/de/d9/89474b4a869c3e90ef71612aa62035cf71f53aeea8941ab7d7d25cb8480c/django-oscar-api-checkout-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "cb26945d65f5b80fa50b5f51cf66a85a", "sha256": "6ec9e298fd525018b7cc9f7dc1ca131e165d6665c4e9fa1ab4299ffe702db620" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.1.3-py3-none-any.whl", "has_sig": true, "md5_digest": "cb26945d65f5b80fa50b5f51cf66a85a", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 22759, "upload_time": "2016-06-02T00:42:29", "url": "https://files.pythonhosted.org/packages/0c/44/1a7da218896c205dc3790c4de43e44f7438c1361690f5a829f4b4d94b352/django_oscar_api_checkout-0.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8539faa61fe38979c1906e5147202ff8", "sha256": "f4f614435cf85a92271b6ffe43a28b01daadeed9d5567f4793ca8f67208bcf55" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.1.3.tar.gz", "has_sig": true, "md5_digest": "8539faa61fe38979c1906e5147202ff8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16467, "upload_time": "2016-06-02T00:42:25", "url": "https://files.pythonhosted.org/packages/74/d4/765c47bc6b57f07a5badf4ca78add7163234e6e1f42607aa27f12fc61b72/django-oscar-api-checkout-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "f634cd8a41b9ac919e68e11f0242657a", "sha256": "b81309b18711ca38f637490580bb8096c2d7324ad519160cde9f4f76fd3dc9fb" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.1.4-py3-none-any.whl", "has_sig": true, "md5_digest": "f634cd8a41b9ac919e68e11f0242657a", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 22766, "upload_time": "2016-06-03T22:22:25", "url": "https://files.pythonhosted.org/packages/60/9c/eb9625cd5836ed19051a72c6a5cd789e4eb67a7f0d07bc6f18ac725b9172/django_oscar_api_checkout-0.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1c75d60afadcc4c990658b7909c61cc6", "sha256": "ec2163041b5ee112ef9ff474efc848ef08789d71b2242ac91fcfd0661b2d6a2f" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.1.4.tar.gz", "has_sig": true, "md5_digest": "1c75d60afadcc4c990658b7909c61cc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16470, "upload_time": "2016-06-03T22:22:21", "url": "https://files.pythonhosted.org/packages/56/b3/ec2678e9cfa7c8c8336a17264d88442fd2f62199c20149d1548a613041b8/django-oscar-api-checkout-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "8eb0454e7fb315b85c07dfcd26c2e8fa", "sha256": "a43e60e71f47c12de587a72a61f1d3e38f031f93910765d61bb56b34db527493" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.1.5-py3-none-any.whl", "has_sig": true, "md5_digest": "8eb0454e7fb315b85c07dfcd26c2e8fa", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 22779, "upload_time": "2016-06-10T20:55:30", "url": "https://files.pythonhosted.org/packages/5b/92/3be097ef87a156df6b0d7f0a171ea270be3d8c196cbf1757f46601c9ef66/django_oscar_api_checkout-0.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "78374fdaee879c7c58e4518852ab545a", "sha256": "f10fd9704c41fbcff6c87b477d75a37189f3bad24c7a5e521924cc71010b0182" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.1.5.tar.gz", "has_sig": true, "md5_digest": "78374fdaee879c7c58e4518852ab545a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16483, "upload_time": "2016-06-10T20:55:08", "url": "https://files.pythonhosted.org/packages/3f/b6/6fe4249a152ea9d6dcea3ca031b3b23bcccbf7cad4c8e0dce66db41d5821/django-oscar-api-checkout-0.1.5.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "29671335e00fbd3acd46d6f372465029", "sha256": "12d077893e6b51f13da51f69b53a11f76cfe1190ab1a7f85162eca9daa08b7d6" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.2.0-py3-none-any.whl", "has_sig": true, "md5_digest": "29671335e00fbd3acd46d6f372465029", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 23761, "upload_time": "2016-07-26T02:31:50", "url": "https://files.pythonhosted.org/packages/b3/38/bb8d5f0c7ace52b51f516e372c610985f9ba20cd21c62ee4a715e9d63e1d/django_oscar_api_checkout-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1ed1e5a51fdf5521b795a3a07b81b61a", "sha256": "d59c70f7a5a615493876ece9213176d9a75c1e63237cb5d2c967156fa8db7e32" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.2.0.tar.gz", "has_sig": true, "md5_digest": "1ed1e5a51fdf5521b795a3a07b81b61a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17454, "upload_time": "2016-07-26T02:31:47", "url": "https://files.pythonhosted.org/packages/da/75/677cd6ac0db8d46a32d06425fa1928073184809de995193d8bda9946a486/django-oscar-api-checkout-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "built for Darwin-16.0.0", "digests": { "md5": "732a1a5e255fe949a087c94aa40b7bc8", "sha256": "032921e62eed819098719e51f5daa4df1119dc1f4ff54fea93995cdcd10304c2" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.2.1.macosx-10.11-x86_64.tar.gz", "has_sig": true, "md5_digest": "732a1a5e255fe949a087c94aa40b7bc8", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 34115, "upload_time": "2016-09-26T16:07:11", "url": "https://files.pythonhosted.org/packages/0f/2f/295a98db8498f47b5c2537fb907b7ed24fdf3a9716d3a33500c0631116da/django-oscar-api-checkout-0.2.1.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "0cf368c7604f917a16cdba8654a42a40", "sha256": "57ef9dced02d8cf3edf189b3b14df0a755d743053e8d36f003301c36926d5b27" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.2.1.tar.gz", "has_sig": true, "md5_digest": "0cf368c7604f917a16cdba8654a42a40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17573, "upload_time": "2016-09-26T16:07:09", "url": "https://files.pythonhosted.org/packages/bb/c6/8053ffd9a9dc81627cd17951f195cce8bfe9feeaf96f8e7715af39880752/django-oscar-api-checkout-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "2dae3fb8344de285d6942953269437db", "sha256": "e0bcf66d7d5bb0857a89d19b431504dd700ae26fd4234830df382abe0516f8cd" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.2.2-py3-none-any.whl", "has_sig": true, "md5_digest": "2dae3fb8344de285d6942953269437db", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 24076, "upload_time": "2017-01-04T20:20:25", "url": "https://files.pythonhosted.org/packages/8c/01/1a23104d2ebf495dd91c048f6244e5e588a54f7d366b689a488c853e2dd9/django_oscar_api_checkout-0.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9889339053821b1103751f2b985fc658", "sha256": "e53ae38a6f009ede261edd3456661c490a4dca9f68b7111b8ca36813c93ae95d" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.2.2.tar.gz", "has_sig": true, "md5_digest": "9889339053821b1103751f2b985fc658", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17984, "upload_time": "2017-01-04T20:20:20", "url": "https://files.pythonhosted.org/packages/46/0f/7c7ce3c81c75d6124ce2a181876237a8576622285436e8123fc4ca648198/django-oscar-api-checkout-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "1149ac63fd54a079d18772a5e7532f35", "sha256": "3fbec2020e19adb52aa257c0756039dc5412797389ec2cdcc01384fd264ec828" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.2.3-py3-none-any.whl", "has_sig": true, "md5_digest": "1149ac63fd54a079d18772a5e7532f35", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 24853, "upload_time": "2017-01-20T23:08:46", "url": "https://files.pythonhosted.org/packages/b2/39/88bb07ca801a58620ccd7715739f60845502e43c2b66839749d2da62197b/django_oscar_api_checkout-0.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cb264af3e6d31fcf30c632a31afc9a45", "sha256": "e65701648aecf13f733a71c9dbe1726879f3a27bcb1a05b255bcc0c97eb60273" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.2.3.tar.gz", "has_sig": true, "md5_digest": "cb264af3e6d31fcf30c632a31afc9a45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18873, "upload_time": "2017-01-20T23:08:44", "url": "https://files.pythonhosted.org/packages/f3/94/b992b0eafe20d04eaf86dbef643b123d173ff3a4cf105e4818b7f603e63e/django-oscar-api-checkout-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "7b634c96b54a6aadf25a1367684435b0", "sha256": "a66e27690d3ca05712bf2a39b2c587fdf1c2329034d90f3658e9a455873b2e4e" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.2.4-py3-none-any.whl", "has_sig": true, "md5_digest": "7b634c96b54a6aadf25a1367684435b0", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 25022, "upload_time": "2017-02-03T20:16:33", "url": "https://files.pythonhosted.org/packages/e1/ea/0d841f2b7b2339546f0934d50241ea73c29a9d19bfe50299c61de039cc8a/django_oscar_api_checkout-0.2.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "841b8772834167b773b6732287e342aa", "sha256": "c36039a94f14a5e691589cae83af7f8366cff25d75458f2c9a5b0cc972741e3e" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.2.4.tar.gz", "has_sig": true, "md5_digest": "841b8772834167b773b6732287e342aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19009, "upload_time": "2017-02-03T20:16:31", "url": "https://files.pythonhosted.org/packages/84/3e/4fdba5d1e4f489cb86d014e35393dac73c1b1a6729588b9facc6eb667072/django-oscar-api-checkout-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "cd369030cb5044000737b3026379d071", "sha256": "33fb973d8341d8f89ac16b0de62fff2228ed3ed558cb92bb8ab751f33ce8f0c7" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.2.5-py3-none-any.whl", "has_sig": true, "md5_digest": "cd369030cb5044000737b3026379d071", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 24858, "upload_time": "2017-03-20T14:58:56", "url": "https://files.pythonhosted.org/packages/b2/7f/6b9e869c362cd6aa002a13f09ea7c4ff5e246e9a76cda53a452a8acea628/django_oscar_api_checkout-0.2.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5dbee27880864e2dddb23e61dae4c47c", "sha256": "4ac1abbd273fc0b97fb136dd43379fa6a37c1875458b40a25ce9442ec98c3ff3" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.2.5.tar.gz", "has_sig": true, "md5_digest": "5dbee27880864e2dddb23e61dae4c47c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17148, "upload_time": "2017-03-20T14:58:53", "url": "https://files.pythonhosted.org/packages/2c/5e/5ee638ce8e3a3079996923b7654e54a617b1d052b33d74aac7f5b984a30e/django-oscar-api-checkout-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "6d0c8bab3faf32e11c97b5c6390babcb", "sha256": "4840439815e9b2fd0dadb1411f34c1ea5451d5b2ad3bb19cce0bd73102b8282a" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.2.6-py3-none-any.whl", "has_sig": true, "md5_digest": "6d0c8bab3faf32e11c97b5c6390babcb", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 25834, "upload_time": "2017-05-02T20:58:51", "url": "https://files.pythonhosted.org/packages/95/41/aad92e15dff08446b0c9fd7eabe61cb419ae0cf22a3948be85b473a2bc28/django_oscar_api_checkout-0.2.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8197a460c560ed15b83f7134a4f5fb24", "sha256": "ed55f2b4764f9b79e773bd24b45f2371b84104fa2c86a5cfc8c2d174cb68bb8a" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.2.6.tar.gz", "has_sig": true, "md5_digest": "8197a460c560ed15b83f7134a4f5fb24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17797, "upload_time": "2017-05-02T20:58:49", "url": "https://files.pythonhosted.org/packages/ec/ca/08c42e3d6a811be889c8761d2daa91bbe64be43e48c8014327aa02aab62b/django-oscar-api-checkout-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "0bb583e1b42effdcc223c90015569608", "sha256": "1c1aaf47aa0cee0d60a09e2fe2f682a0acd707c9b0b9e7e39d20f2a77d62a7d1" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.2.7-py3-none-any.whl", "has_sig": true, "md5_digest": "0bb583e1b42effdcc223c90015569608", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 26574, "upload_time": "2017-05-17T18:56:00", "url": "https://files.pythonhosted.org/packages/16/10/048104974031eb85814abf4b307557ef20adc9b89c03c15c9390203b3ccb/django_oscar_api_checkout-0.2.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1553f9e049ea74cf2feb22e8da96b796", "sha256": "5ff32c3771f24011cf10f294310638a469b9e15002611ce722d1bdde3565f549" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.2.7.tar.gz", "has_sig": true, "md5_digest": "1553f9e049ea74cf2feb22e8da96b796", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18508, "upload_time": "2017-05-17T18:55:58", "url": "https://files.pythonhosted.org/packages/2b/71/1c8ef5a51d7434e0602550d577e509b8bdc980b75f4bc6dab052ffac8050/django-oscar-api-checkout-0.2.7.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "1c6318eaf1c7b92cdea177cb62662be7", "sha256": "a8b67a4bdbd63d96ecf956e9069de23a1857ccaee235a99903cbbc0afc5af5e3" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.3.0-py3-none-any.whl", "has_sig": true, "md5_digest": "1c6318eaf1c7b92cdea177cb62662be7", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 28703, "upload_time": "2017-08-22T19:00:34", "url": "https://files.pythonhosted.org/packages/46/b2/df3a8c10d058993da06574ba0445d2266369566dad97e5816baf65027180/django_oscar_api_checkout-0.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7518c88e8bd31eecb161695bdf38f37f", "sha256": "0654682d48ab0df80f96a587d6338fa927d16f5c8401b3e83a8883e01e1aa59f" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.3.0.tar.gz", "has_sig": true, "md5_digest": "7518c88e8bd31eecb161695bdf38f37f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22268, "upload_time": "2017-08-22T19:00:30", "url": "https://files.pythonhosted.org/packages/cc/c8/2014e523d8fb840d550f16b68fc38b5d9be9a85cddb7a4a71f00060eb673/django-oscar-api-checkout-0.3.0.tar.gz" } ], "0.3.0b1": [ { "comment_text": "", "digests": { "md5": "8d83ed9ca88ec01dfbb541fa23a57369", "sha256": "99aa6dd2248ca3da51f6a219eff2ee311801025beb424a08ec30414e4dfde9ef" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.3.0b1-py3-none-any.whl", "has_sig": true, "md5_digest": "8d83ed9ca88ec01dfbb541fa23a57369", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 28730, "upload_time": "2017-07-05T20:35:29", "url": "https://files.pythonhosted.org/packages/d0/9d/1c28543c2524bd839341e6a805fc92ee33b0bd532f1d2ed5273bef30f4b0/django_oscar_api_checkout-0.3.0b1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "310310b0db70e0a96d6605e374556385", "sha256": "139957bb49ef914de54bd68067a54823d022c01771101d69551ad9e4efb08bd8" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.3.0b1.tar.gz", "has_sig": true, "md5_digest": "310310b0db70e0a96d6605e374556385", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19788, "upload_time": "2017-07-05T20:35:27", "url": "https://files.pythonhosted.org/packages/f7/40/89f0fa1f754821dee48404cc2a3772b21b3a8e5fec0bdb742ec0b36a4365/django-oscar-api-checkout-0.3.0b1.tar.gz" } ], "0.3.0b2": [ { "comment_text": "", "digests": { "md5": "58a516b1059983f4af877218682d14ac", "sha256": "01c858b76ca9494a78e2818771ba2d856680a2bb4d44c510519f2c956d3b3c89" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.3.0b2-py3-none-any.whl", "has_sig": true, "md5_digest": "58a516b1059983f4af877218682d14ac", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 28732, "upload_time": "2017-07-05T21:49:31", "url": "https://files.pythonhosted.org/packages/60/ee/4f402476a848425139e77fec2846ea71bba57b56dbdbae74496e71050f01/django_oscar_api_checkout-0.3.0b2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "af30ce3bee649ce5104fdb36c33b8881", "sha256": "385135522e810e0f0dd95ae3bf8a69807144494382fcbd18f6f207209ee9e438" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.3.0b2.tar.gz", "has_sig": true, "md5_digest": "af30ce3bee649ce5104fdb36c33b8881", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19802, "upload_time": "2017-07-05T21:49:28", "url": "https://files.pythonhosted.org/packages/47/3b/4fdacc1e5f89d75ca292744aeec1a73854eb18af5b770a306cd063b79ccc/django-oscar-api-checkout-0.3.0b2.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "fba2d6be2efbd572546d9e5facd98ddf", "sha256": "da09dee053d0f313479cafac01f5899ac7ce471589314c0fd41bf02bc5f0a4df" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.3.1-py3-none-any.whl", "has_sig": true, "md5_digest": "fba2d6be2efbd572546d9e5facd98ddf", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 28759, "upload_time": "2017-08-22T19:00:46", "url": "https://files.pythonhosted.org/packages/25/47/49ee48e7f96797dcd786507b42c6f1821b9c6d5d92634ccc511c1a4380ad/django_oscar_api_checkout-0.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "613cb02ee135b147c689eb0b01196c55", "sha256": "0d74e37b2411e6d0013e03f9cee338d4d4efccc529debf127e998a9e238642c7" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.3.1.tar.gz", "has_sig": true, "md5_digest": "613cb02ee135b147c689eb0b01196c55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22339, "upload_time": "2017-08-22T19:00:44", "url": "https://files.pythonhosted.org/packages/d3/47/addc0b74452fb79dd8b08a34978d3c069c4edcddc29d612b57ed3176df27/django-oscar-api-checkout-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "a010c3fb617cbdd0553919bd336fc035", "sha256": "f2d5b795830d89ceaf2ed4e740a7ce1afcf310a6c1fc1fc537843ddf07c9f82b" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.3.2-py3-none-any.whl", "has_sig": true, "md5_digest": "a010c3fb617cbdd0553919bd336fc035", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 31116, "upload_time": "2017-09-15T18:08:07", "url": "https://files.pythonhosted.org/packages/e7/f5/dc0fe6c236175f044a2eca257956db407569dd8121bb00287ca0fd61b28f/django_oscar_api_checkout-0.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "187dfe5032f32468ec0d6b7faf88f002", "sha256": "80319e96c908d587a2584612c753b7844794f6b154135639e78f7b3cb986e2f6" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.3.2.tar.gz", "has_sig": true, "md5_digest": "187dfe5032f32468ec0d6b7faf88f002", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24067, "upload_time": "2017-09-15T18:08:04", "url": "https://files.pythonhosted.org/packages/62/d4/2efa8b997d198830ceccec88769036a4b6d8c9a78d3587545854568956b2/django-oscar-api-checkout-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "aeaa2096853fec88874347195000d5da", "sha256": "25077f9ab1ab42a3d234028ed03e1f1719bf360b268a2ca7e7ac51b82f7fabd2" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.3.3-py3-none-any.whl", "has_sig": true, "md5_digest": "aeaa2096853fec88874347195000d5da", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 32205, "upload_time": "2017-11-28T19:13:19", "url": "https://files.pythonhosted.org/packages/d2/30/838dcaff2408730bf5ed91765a8ebd0412e2382d9faca160cb9c0df107ca/django_oscar_api_checkout-0.3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ca90da950b9d1b8b74eab04cb3b2bd09", "sha256": "e7b9063ddfe8edb825b583ebc0169e25d6ce1195803751c78be9390fa83b3f25" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.3.3.tar.gz", "has_sig": true, "md5_digest": "ca90da950b9d1b8b74eab04cb3b2bd09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25141, "upload_time": "2017-11-28T19:13:16", "url": "https://files.pythonhosted.org/packages/05/58/54b6c33714b9928e314baa9ff2560e8df4566fc66a3ba53a86dab521bb30/django-oscar-api-checkout-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "4715f1fde6cc319d15673cc5f0e7d590", "sha256": "7a53fe588b4db261f55771bcbbd36bad42774174899e1b78427e0897d6a978d0" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.3.4-py3-none-any.whl", "has_sig": true, "md5_digest": "4715f1fde6cc319d15673cc5f0e7d590", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 32007, "upload_time": "2018-01-02T20:25:16", "url": "https://files.pythonhosted.org/packages/f7/d3/3e979fda520abf5e3fc22ccbd3cc250a3b17180cd9b91ff35dfd28c833f9/django_oscar_api_checkout-0.3.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2cb52fd92dec1db5e3deca9cf6d144be", "sha256": "c9d9af480cad3f60ba39883f7e42c3fd65463abe0b35fcba21f7b3dfe02c712b" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.3.4.tar.gz", "has_sig": true, "md5_digest": "2cb52fd92dec1db5e3deca9cf6d144be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24972, "upload_time": "2018-01-02T20:25:13", "url": "https://files.pythonhosted.org/packages/1f/87/f0cff942c88d7138b9cfcf2e473486b8d8c45dc3b518c896d8a2c4319366/django-oscar-api-checkout-0.3.4.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "40667c812aba0c2b1264f4843a6a1586", "sha256": "477ffb5fe6a4a0b262bd004b38950a1adb05171ca0c57cf824fafd44068d28de" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "40667c812aba0c2b1264f4843a6a1586", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 35811, "upload_time": "2018-04-30T19:37:05", "url": "https://files.pythonhosted.org/packages/0a/b8/e45e1b526e3cec951f756f381f5e8e34494191edef42042b1b96bdec85e0/django_oscar_api_checkout-0.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "41056d9a71325fcc40857438ea6f86c4", "sha256": "253b2e32fca6f5bd3ed2252dcaebcc1e293768c6af0b34156bb06d77c50a4880" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.4.0.tar.gz", "has_sig": false, "md5_digest": "41056d9a71325fcc40857438ea6f86c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28692, "upload_time": "2018-04-30T19:37:04", "url": "https://files.pythonhosted.org/packages/9b/3b/6af31406286f5e20936e0eb2d2f66f636a21794294f8ba0daf8ead5a0488/django-oscar-api-checkout-0.4.0.tar.gz" } ], "0.4.0b1": [ { "comment_text": "", "digests": { "md5": "6fe35f86ea7c2f3ab856167487c1fba1", "sha256": "c7833efd49a3d30d9886736a1ef56bacb2f09b63c95ed6bdf0736c6b9f8a46cc" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.4.0b1-py3-none-any.whl", "has_sig": false, "md5_digest": "6fe35f86ea7c2f3ab856167487c1fba1", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 35033, "upload_time": "2018-04-17T00:18:54", "url": "https://files.pythonhosted.org/packages/27/f7/1e9929fc58cd4f2210625865794d2341cb9e20180f1507026cdba609d969/django_oscar_api_checkout-0.4.0b1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ae5d1ca00b5635f425f43ada50a94880", "sha256": "6970ed7c7e84980a70bc00958cde5c06b176e54f8701a4718e3d0dc951cae7fb" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.4.0b1.tar.gz", "has_sig": false, "md5_digest": "ae5d1ca00b5635f425f43ada50a94880", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27874, "upload_time": "2018-04-17T00:18:53", "url": "https://files.pythonhosted.org/packages/37/6e/d64309cab61f5a941e4a0acf573a49a155b76e61324620544527901aa946/django-oscar-api-checkout-0.4.0b1.tar.gz" } ], "0.4.0rc1": [ { "comment_text": "", "digests": { "md5": "f9d3d8f9f1bba3fbb9edbab6623265a3", "sha256": "aceb809a0f9ccd1ce78533b23929407cb06f5bad5c42b50e624d8f91524a7479" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.4.0rc1-py3-none-any.whl", "has_sig": false, "md5_digest": "f9d3d8f9f1bba3fbb9edbab6623265a3", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 35857, "upload_time": "2018-04-23T20:30:35", "url": "https://files.pythonhosted.org/packages/61/1e/c060d7cf62c4abe0fbba74949812c2c810e64187b4eab671846ad555fbb7/django_oscar_api_checkout-0.4.0rc1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7b5a64a1668286f0d1848f76f9370f5", "sha256": "26bf14ab3702c313c383d999f5d660d6da2067a90619fb68a8803720fab7ef9c" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.4.0rc1.tar.gz", "has_sig": false, "md5_digest": "c7b5a64a1668286f0d1848f76f9370f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28688, "upload_time": "2018-04-23T20:30:34", "url": "https://files.pythonhosted.org/packages/8a/fd/d9b9220be842f9a67609c9b82d3ed59a4c0f88ab947e3d0151b5b448c14a/django-oscar-api-checkout-0.4.0rc1.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "099897c32c324c67caff56ff69310fbb", "sha256": "c49961ce3a56f42c7b12789fd0c042aa70325a4c52a5e0f3696171e5347a9f32" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "099897c32c324c67caff56ff69310fbb", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 36040, "upload_time": "2018-06-21T15:53:41", "url": "https://files.pythonhosted.org/packages/ee/29/a017053ca8f086c74e32cc5f005fe2ad6f1eb8b3f60323fe7c8f72ef250a/django_oscar_api_checkout-0.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e15a1541bcefc682d3ca0dbcb59a83d6", "sha256": "659000862b75aa4221b8e38b182a2576653364d8d05c85fecbbf03d9aae73a48" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.4.1.tar.gz", "has_sig": false, "md5_digest": "e15a1541bcefc682d3ca0dbcb59a83d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28861, "upload_time": "2018-06-21T15:53:40", "url": "https://files.pythonhosted.org/packages/f1/cd/e20b92311a87c6a217eb1f6e999febbaf43931f4721b2939dfc7ed76c68c/django-oscar-api-checkout-0.4.1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "23f0f257ddce81d4ef68b1797c49f6e2", "sha256": "f29e11373a1effd9511055fabe851905efdffdd4eb5ea2d361ec83b7cd163412" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "23f0f257ddce81d4ef68b1797c49f6e2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 34885, "upload_time": "2019-05-03T17:49:05", "url": "https://files.pythonhosted.org/packages/eb/70/02479671f0679880bfdd547c54543f7492cf5c0dfe82a1d16a5d64466a7b/django_oscar_api_checkout-0.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f5d56cee957e3f16d423fe0110045275", "sha256": "c5b44208fd6ce5c48a6d9bb8fbb051f01203e0829bb0ac7b51ec8f462922ec94" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.5.0.tar.gz", "has_sig": false, "md5_digest": "f5d56cee957e3f16d423fe0110045275", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28169, "upload_time": "2019-05-03T17:49:34", "url": "https://files.pythonhosted.org/packages/e8/d6/d6b89124ca1fd70a792a89d5bb0f8178dfc2957095afe6a42d5cfc07859c/django-oscar-api-checkout-0.5.0.tar.gz" } ], "0.5.0b1": [ { "comment_text": "", "digests": { "md5": "00d7e66109271dbfa49c2bb8412ce1b3", "sha256": "13e021191966ffa4007f4d7a9990ee7b8e058d7f8f8e3ec2ce31bebea895dd2a" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.5.0b1-py3-none-any.whl", "has_sig": false, "md5_digest": "00d7e66109271dbfa49c2bb8412ce1b3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 34856, "upload_time": "2019-02-04T17:26:40", "url": "https://files.pythonhosted.org/packages/09/64/2c78cb9961ff221b2a1ab7a8773589e10f895751a222d0cf6d5af3488be9/django_oscar_api_checkout-0.5.0b1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ddd1b837bb079c8541c99ddd1bd86546", "sha256": "c2ae0851dbbae464ac013595aafd881657891d5a8eb5e3729829cf16263f9837" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.5.0b1.tar.gz", "has_sig": false, "md5_digest": "ddd1b837bb079c8541c99ddd1bd86546", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28114, "upload_time": "2019-02-04T17:26:42", "url": "https://files.pythonhosted.org/packages/4e/a0/d66dd443a41ad65f421455036e0154e305545866a96f883145d57dab1e6a/django-oscar-api-checkout-0.5.0b1.tar.gz" } ], "0.5.0b2": [ { "comment_text": "", "digests": { "md5": "416721529b6d6fe9282862e117dc1f7d", "sha256": "efefb1147fa118393f1fa3b66382fee09fadad8d669393a0bcfbba8d4de93b43" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.5.0b2-py3-none-any.whl", "has_sig": false, "md5_digest": "416721529b6d6fe9282862e117dc1f7d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 34852, "upload_time": "2019-02-04T18:17:49", "url": "https://files.pythonhosted.org/packages/e3/5c/21f6659d5213938ebfbe5c8b255817001b7fab3b06f4dde2b65062609aed/django_oscar_api_checkout-0.5.0b2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2a42608fda099e15cfd7a5e666b416a1", "sha256": "9ad71e7f23f6abcf832bb6de717cb35265ff0b4afab5e3457f544f1667f241dc" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.5.0b2.tar.gz", "has_sig": false, "md5_digest": "2a42608fda099e15cfd7a5e666b416a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28142, "upload_time": "2019-02-04T18:17:50", "url": "https://files.pythonhosted.org/packages/f9/30/5ea35aa06631d80bc4875a574dfe2bede338ad89cae28d18718e22ca14c1/django-oscar-api-checkout-0.5.0b2.tar.gz" } ], "0.5.0rc1": [ { "comment_text": "", "digests": { "md5": "c57047b64c414efa5c51a79a29922e1e", "sha256": "a3c52d0485cdeeea30c8a8a1eb6415db040f345b61e5c5a9024d20933b7f8482" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.5.0rc1-py3-none-any.whl", "has_sig": false, "md5_digest": "c57047b64c414efa5c51a79a29922e1e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 34918, "upload_time": "2019-04-03T21:47:22", "url": "https://files.pythonhosted.org/packages/6b/c7/97b66f93598e5e55f18992f24e5acd782c65ee0c9d4ad2b4e410d2bb6631/django_oscar_api_checkout-0.5.0rc1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5198ec87abcdfdd2cf64fba0d7512c7a", "sha256": "7ece18979be1dbaebd8156ccb798b20e6cb67f8d0a52bd969be2d05381ffc808" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.5.0rc1.tar.gz", "has_sig": false, "md5_digest": "5198ec87abcdfdd2cf64fba0d7512c7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28180, "upload_time": "2019-04-03T21:47:24", "url": "https://files.pythonhosted.org/packages/9e/df/6df5cd8168e322416ca976c7b13b1c10322afa619c68f44f643fb021fb3d/django-oscar-api-checkout-0.5.0rc1.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "3f4a8d5d5bfaca829db2e3a782647c8a", "sha256": "2fc7f383252ff19d480d8397b69cfb5d03c617253f931bfc1b26a3db8d01a293" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3f4a8d5d5bfaca829db2e3a782647c8a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 34942, "upload_time": "2019-06-06T18:20:49", "url": "https://files.pythonhosted.org/packages/54/12/90c75057085a9cd577b70bf5a4532198597ecd1daeee4312ee40520980ab/django_oscar_api_checkout-0.5.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "94556b90b1095307abd0dc7557687893", "sha256": "9eaf021bff3ff4fba46bc98494cc5505663e329b7598eb6b733f213582eb0605" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.5.1.tar.gz", "has_sig": false, "md5_digest": "94556b90b1095307abd0dc7557687893", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28247, "upload_time": "2019-06-06T18:20:51", "url": "https://files.pythonhosted.org/packages/84/f3/0955bb8c51cf3394f3df204ac4f277ffad01d2e45e0b44efb733135d6bb5/django-oscar-api-checkout-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "1d6b9d670e1c72dce6eb539dcc1fbea5", "sha256": "ab3bee1ef2ba2c8681cf549981c968783122225c5de5a13f50c5b707e56efa4a" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "1d6b9d670e1c72dce6eb539dcc1fbea5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 37043, "upload_time": "2019-07-10T21:35:28", "url": "https://files.pythonhosted.org/packages/ff/31/a72bfd35afa91cb28af896bc7762f9a13ea87ac0c84bdf8aa227269a013e/django_oscar_api_checkout-0.5.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e910852c1d6ff33aa794a057167c449", "sha256": "239e16a00d534e5c950de1df199f9b2fc224564f43281b98a1adc598cfa2f905" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.5.2.tar.gz", "has_sig": false, "md5_digest": "8e910852c1d6ff33aa794a057167c449", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29466, "upload_time": "2019-07-10T21:35:29", "url": "https://files.pythonhosted.org/packages/38/54/6c55f70b7e87d1b642f61efa006149fbbaf6c593f0902cd5812837d9fc08/django-oscar-api-checkout-0.5.2.tar.gz" } ], "0.6.0b1": [ { "comment_text": "", "digests": { "md5": "bd2f98ca8aad107ad8dd78d2390ea6c5", "sha256": "d0c346065d40149749e859b5a5096f60ac2194a36cf079239676f71830921b75" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.6.0b1-py3-none-any.whl", "has_sig": false, "md5_digest": "bd2f98ca8aad107ad8dd78d2390ea6c5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 36766, "upload_time": "2019-09-26T17:43:24", "url": "https://files.pythonhosted.org/packages/45/f5/9e5c34e10673b0d84775ca22782b284734de464e6013de53a081dbc0fb1d/django_oscar_api_checkout-0.6.0b1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4131604eceacb5c530d589da8689d8ad", "sha256": "d7cf970758bc8477163308d00fadf37bb1c9e6eb618fca690b99de99783ce791" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.6.0b1.tar.gz", "has_sig": false, "md5_digest": "4131604eceacb5c530d589da8689d8ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29403, "upload_time": "2019-09-26T17:43:26", "url": "https://files.pythonhosted.org/packages/4e/83/deb185559df0e9b3d705080df72d4976e787ad261f5ee263d657264a81b4/django-oscar-api-checkout-0.6.0b1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1d6b9d670e1c72dce6eb539dcc1fbea5", "sha256": "ab3bee1ef2ba2c8681cf549981c968783122225c5de5a13f50c5b707e56efa4a" }, "downloads": -1, "filename": "django_oscar_api_checkout-0.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "1d6b9d670e1c72dce6eb539dcc1fbea5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 37043, "upload_time": "2019-07-10T21:35:28", "url": "https://files.pythonhosted.org/packages/ff/31/a72bfd35afa91cb28af896bc7762f9a13ea87ac0c84bdf8aa227269a013e/django_oscar_api_checkout-0.5.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e910852c1d6ff33aa794a057167c449", "sha256": "239e16a00d534e5c950de1df199f9b2fc224564f43281b98a1adc598cfa2f905" }, "downloads": -1, "filename": "django-oscar-api-checkout-0.5.2.tar.gz", "has_sig": false, "md5_digest": "8e910852c1d6ff33aa794a057167c449", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29466, "upload_time": "2019-07-10T21:35:29", "url": "https://files.pythonhosted.org/packages/38/54/6c55f70b7e87d1b642f61efa006149fbbaf6c593f0902cd5812837d9fc08/django-oscar-api-checkout-0.5.2.tar.gz" } ] }