{ "info": { "author": "Jack van Zyl", "author_email": "jackvanzyl@icloud.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# Mezzanine API\n\n[![PyPI](https://img.shields.io/pypi/v/mezzanine-cartridge-api.svg)](https://pypi.org/project/mezzanine-cartridge-api/)\n[![Travis CI](https://travis-ci.com/jackvz/mezzanine-cartridge-api.svg?branch=production)](https://travis-ci.com/jackvz/mezzanine-cartridge-api)\n[![License](https://img.shields.io/github/license/jackvz/mezzanine-cartridge-api.svg)](https://github.com/jackvz/mezzanine-cartridge-api/blob/master/license)\n[![Codecov](https://img.shields.io/codecov/c/github/jackvz/mezzanine-cartridge-api/production.svg?token=b618b46fd1fc46118196eb4b83c9c73b)](https://codecov.io/gh/jackvz/mezzanine-cartridge-api/branch/production)\n\nA REST Web API for the [Mezzanine content management system](http://mezzanine.jupo.org/) with the [Cartridge](http://cartridge.jupo.org/index.html) e-commerce extension.\n\nOh, and this will work even if you're just running a blog or any other Mezzanine website without the Cartridge package.\n\n[![Buy Me A Coffee](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/sTZBGpQ)\n\n## Features\n\nWeb API methods for Mezzanine objects, including sites, users, groups, pages, blog posts and settings, and Cartridge objects, including products, categories, carts and orders.\n\n[Swagger-UI](https://swagger.io/tools/swagger-ui/) as development tool and documentation.\n\nComes with [API key authentication/authorisation](https://pypi.org/project/djangorestframework-api-key/) configured, but can also be configured to work with Password-based and/or Authorisation code OAuth2 authentication/authorisation.\n\nAdditional features:\n- User create and activate methods that include password hashing and sending a verification email\n- User update and partial update methods that include password hashing\n- Methods for checking a user password and a user token\n- Password reset methods that include sending a verification email\n- Methods for e-commerce customisation: Handlers for billing/shipping, tax, payment and order placement, to execute any customisation work done in the Mezzanine site installation.\n\n## Screenshots\n\nAPI docs\n\n![API docs](https://raw.githubusercontent.com/jackvz/mezzanine-cartridge-api/master/screenshot-api-docs.png)\n\nAPI keys\n\n![API keys](https://raw.githubusercontent.com/jackvz/mezzanine-cartridge-api/master/screenshot-add-api-key.png)\n\n## Installation\n\nInstall [Python](https://www.python.org/)\n\n## New installation\n\nInstall Mezzanine and Cartridge:\n```bash\npip install mezzanine\npip install cartridge\n```\n\nCreate a new Mezzanine project with Cartridge, and set up a clean development database by running:\n```bash\nmezzanine-project -a cartridge [project-name]\ncd [project_name]\npython manage.py createdb --noinput --nodata\n```\n\nYou may need to set ALLOWED_HOSTS, DATABASES and SHOP_CURRENCY_LOCALE in your project's settings.py file before creating the database.\n\n ALLOWED_HOSTS = ['*']\n\n DATABASES = {\n 'default': {\n 'ENGINE': 'django.db.backends.sqlite3',\n 'NAME': 'db.dev',\n }\n }\n\n SHOP_CURRENCY_LOCALE = 'en_GB.UTF-8'\n\nStart a Python [virtual environment](https://virtualenv.pypa.io/en/latest/), install the requirements and run the development server:\n```bash\nvirtualenv env\nsource env/bin/activate\npip install -r requirements.txt\npython manage.py runserver\n```\n\nThen see the following section on adding to an existing installation.\n\n## Adding to an existing installation\n\nWith Mezzanine and Cartridge installed, add the package to your project's requirements.txt file:\n\n mezzanine-cartridge-api\n\nAdd the following to installed apps and middleware in your project's settings.py file:\n\n INSTALLED_APPS = (\n ...\n 'corsheaders',\n 'rest_framework',\n 'rest_framework_api_key',\n 'drf_yasg',\n 'mezzanine_cartridge_api',\n ...\n )\n\n # Use `MIDDLEWARE_CLASSES` prior to Django 1.10\n MIDDLEWARE = [\n ...\n 'corsheaders.middleware.CorsMiddleware',\n ...\n ]\n\nFor OAuth2 authentication/authorisation, also add the following to installed apps in your project's settings.py file:\n\n INSTALLED_APPS = (\n ...\n 'oauth2_provider',\n 'rest_framework.authtoken',\n ...\n )\n\nAdd the following to your project's urls.py file:\n\n urlpatterns = [\n ...\n url(r'^api/', include('mezzanine_cartridge_api.urls')),\n ...\n ]\n\nStart the Python virtual environment, install the requirements and run the development server:\n```bash\nvirtualenv env\nsource env/bin/activate\npip install -r requirements.txt\npython manage.py runserver\n```\n\n## Configuration\n\nThe following configuration settings are available:\n\nCORS_ORIGIN_ALLOW_ALL\n\nAnd other [django-cors-middleware](https://pypi.org/project/django-cors-middleware/) settings.\n\nREST_FRAMEWORK\n\nSee the [Django REST framework settings](https://www.django-rest-framework.org/api-guide/settings/).\n\nSWAGGER_SETTINGS\n\nSee the [drf-yasg Swagger settings](https://drf-yasg.readthedocs.io/en/stable/settings.html#swagger-settings).\n\nSWAGGER_SCHEME_HTTPS\n\nTrue or False: Defaults to False. True for when your API is available over HTTPS.\n\n## Client libraries\n\n[Dart](https://github.com/jackvz/mezzanine-dart-client)\n\n## Notes\n\nIf you are using the included Swagger UI to test your API and get a message \"CSRF Failed: CSRF token missing or incorrect\", be sure to log out of the Mezzanine site.\n\nIf you are using the included Swagger UI to test your API and get a message \"TypeError: Failed to fetch\", and you are running a secure site (over HTTPS), be sure to select the HTTPS scheme from the Shemes dropdown. This dropdown keeps reverting to HTTP in the Swagger UI, so you may have to select it again after making API call changes and/or selecting API methods.", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/jackvz/mezzanine-cartridge-api", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "mezzanine-cartridge-api", "package_url": "https://pypi.org/project/mezzanine-cartridge-api/", "platform": "", "project_url": "https://pypi.org/project/mezzanine-cartridge-api/", "project_urls": { "Homepage": "https://github.com/jackvz/mezzanine-cartridge-api" }, "release_url": "https://pypi.org/project/mezzanine-cartridge-api/1.5.17/", "requires_dist": null, "requires_python": "", "summary": "A REST Web API for Mezzanine CMS with the Cartridge e-commerce extension", "version": "1.5.17" }, "last_serial": 5162448, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "38511f8f3edd7a3f1dd2433b586f3545", "sha256": "1c2620792ba68593e78db0e2289eaedc1d4548a2fb57125e556e7f2ade689015" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "38511f8f3edd7a3f1dd2433b586f3545", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6627, "upload_time": "2019-03-18T22:37:08", "url": "https://files.pythonhosted.org/packages/6e/3f/4b85e547bfe4e0daef710c3fdee0d83681290212119fa2a18bfa3d02164d/mezzanine_cartridge_api-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "03243790f62546f71a81954b8a8a4c70", "sha256": "83e80eb41a63785d5bb5f1c12f93c4832f47781bbfabade05aaa6c55a243f83c" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.0.0.tar.gz", "has_sig": false, "md5_digest": "03243790f62546f71a81954b8a8a4c70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4823, "upload_time": "2019-03-18T22:37:11", "url": "https://files.pythonhosted.org/packages/2b/78/0b3251c4b94d213a772ab8681db7b3e33758174dc98a374546ffa3fc450e/mezzanine_cartridge_api-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "e887514ae320e44aee33ab70b42b686d", "sha256": "7f492b27b47d7cf4a9f0e3e93112429f54b2a01c86b0f17af28885318db5b64e" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "e887514ae320e44aee33ab70b42b686d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11143, "upload_time": "2019-03-19T01:33:06", "url": "https://files.pythonhosted.org/packages/b1/b1/0d99cdd7728822c9a031795acdaece2121c2785851606b2cb54734e18ac9/mezzanine_cartridge_api-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "72f3b2e7bec22001b206cf1e9673a335", "sha256": "e1da9eac5a583407fb3979a28686b0ea2cb62c998ba9e6c1002a2a51ad55e969" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.0.1.tar.gz", "has_sig": false, "md5_digest": "72f3b2e7bec22001b206cf1e9673a335", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7365, "upload_time": "2019-03-19T01:33:07", "url": "https://files.pythonhosted.org/packages/4a/17/a763f86dde5e3c1dc0c5fe971f2379132b186d1b713000fcf81e41bf9a61/mezzanine_cartridge_api-1.0.1.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "a084e53d97c460d33a0ac9e8abc64c11", "sha256": "bd385a1c88249b71e0a97687d7716693a24353b61a624e9542449837d151c264" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.0.3.tar.gz", "has_sig": false, "md5_digest": "a084e53d97c460d33a0ac9e8abc64c11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7810, "upload_time": "2019-03-19T03:32:47", "url": "https://files.pythonhosted.org/packages/14/04/af917d4858de56c8d7ba06588b3db06f04699698305bc2f885b7fee2a189/mezzanine_cartridge_api-1.0.3.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "d2d3967ec158ddc043a595ce4bd99b01", "sha256": "4021fb8a993ad812bfa7f48faf2806a66c9ec3e71971ff63aeffdbafdfb2a279" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.0.5.tar.gz", "has_sig": false, "md5_digest": "d2d3967ec158ddc043a595ce4bd99b01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8024, "upload_time": "2019-03-19T05:30:45", "url": "https://files.pythonhosted.org/packages/04/9f/58834ad23301174881954fe4a1d6ff12034e00fac6e1a6433ff4c4d4dea0/mezzanine_cartridge_api-1.0.5.tar.gz" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "a62d8c9b22a583ea4f643c008954dd98", "sha256": "b3d27fb3826dd8b13d8a528695225826df7f5df278e9d86e0c02f55ce6bfbf3b" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.0.8.tar.gz", "has_sig": false, "md5_digest": "a62d8c9b22a583ea4f643c008954dd98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8123, "upload_time": "2019-03-19T05:52:32", "url": "https://files.pythonhosted.org/packages/f6/2f/c51abec1d67b13d5e534f38db9d67bb394c9a6527606c4dd2a36050874d5/mezzanine_cartridge_api-1.0.8.tar.gz" } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "00c1c59fba15a2a2e3524b1344cfd6a8", "sha256": "654e61e0ec6611ba2b2a86da80bd823263363498749fa08a14bc639c6714861d" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.0.9.tar.gz", "has_sig": false, "md5_digest": "00c1c59fba15a2a2e3524b1344cfd6a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8156, "upload_time": "2019-03-19T06:06:07", "url": "https://files.pythonhosted.org/packages/98/bf/2725ff3dda04eaeeb8f20b2ec47961ba927bb6ffe8f0fd2054aebaeb68a4/mezzanine_cartridge_api-1.0.9.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "17ac463f2a2942c89af594df5f16e06b", "sha256": "c3a54a23f2bc1cb8ea20dec84ecfa322cac5f79418a97f59c72f24fb96d18926" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.1.1.tar.gz", "has_sig": false, "md5_digest": "17ac463f2a2942c89af594df5f16e06b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8158, "upload_time": "2019-03-19T06:30:04", "url": "https://files.pythonhosted.org/packages/c3/e7/d6a26ec8c567d556a8d4130cce4197e085f4cf79771e19eae36db1fd7b84/mezzanine_cartridge_api-1.1.1.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "e6892a426aef4d1c929b246f52de40a3", "sha256": "5aa9db5ffb8c271639815a13e112682af50c715b30804b30f1b613bc1753b24f" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.1.3.tar.gz", "has_sig": false, "md5_digest": "e6892a426aef4d1c929b246f52de40a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8162, "upload_time": "2019-03-20T05:40:04", "url": "https://files.pythonhosted.org/packages/91/45/b747b16887956deb714444a5b008db8c99e640980b861bf0e1765ea15073/mezzanine_cartridge_api-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "c07a36324e652b3294cf1d7f88c62b00", "sha256": "a3ea5d513713e29b57738cbf4f2186894806f388f45fd04a596d35159ec725a4" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.1.4.tar.gz", "has_sig": false, "md5_digest": "c07a36324e652b3294cf1d7f88c62b00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8158, "upload_time": "2019-03-21T11:24:19", "url": "https://files.pythonhosted.org/packages/f9/1d/2bf2c873c1c3d74da6239243aed6157a54d165d2aa9838fc7e7a7c5838ce/mezzanine_cartridge_api-1.1.4.tar.gz" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "2bc0362542b9d5c5e2f1a235dc5d048a", "sha256": "bcc570e26522df68bbc0413016759afc2c2c1032f7a4e6f02af393105cfc9370" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.1.5.tar.gz", "has_sig": false, "md5_digest": "2bc0362542b9d5c5e2f1a235dc5d048a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8165, "upload_time": "2019-03-21T15:00:44", "url": "https://files.pythonhosted.org/packages/bd/fb/bcb9d704c9b38869cad9e15949d2ed39f93f6c75258351b4cf26a7d27a33/mezzanine_cartridge_api-1.1.5.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "0c036aa900c4babf9c2da9966e9bc2e2", "sha256": "afe71bbe2b1adce52e5f3d007c2c8578cd6ca83c4a50e3989ead96e3d0bfe61f" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.1.6.tar.gz", "has_sig": false, "md5_digest": "0c036aa900c4babf9c2da9966e9bc2e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5215, "upload_time": "2019-03-21T15:30:00", "url": "https://files.pythonhosted.org/packages/ea/72/4ea01e0a3314eb6ae2fcb282a5fd3039915cce21078d2530e6679239e751/mezzanine_cartridge_api-1.1.6.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "70af531eb4db93b404779057cba0a8a6", "sha256": "f4450c4137b6d1d6be490ec48024d3b76269db5f3ad3aa688e76923cb34c04aa" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.1.7.tar.gz", "has_sig": false, "md5_digest": "70af531eb4db93b404779057cba0a8a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6050, "upload_time": "2019-03-21T15:47:02", "url": "https://files.pythonhosted.org/packages/d7/f1/cfe3be8b77d8ab79ce1924a71cfb433934d8073b3a0d5590fcc0177a38e5/mezzanine_cartridge_api-1.1.7.tar.gz" } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "518aec9a175a798dd0d0f47b5188cd8d", "sha256": "d6189580c1f5642ec0730a978833655b8ae3adc0bcc1b12f6b505ec3c890eedf" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.1.8.tar.gz", "has_sig": false, "md5_digest": "518aec9a175a798dd0d0f47b5188cd8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8161, "upload_time": "2019-03-21T16:06:11", "url": "https://files.pythonhosted.org/packages/7f/56/d137999f1c0218a48bf85e593c11af6c63c5ad2e24d0f351c4d7f3eaf933/mezzanine_cartridge_api-1.1.8.tar.gz" } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "5e5a92b4298087de658ff5c4375811dc", "sha256": "88d8e0108478ee7b8fe4152859b62c5e6b87c51140b3aa2b120f08c71fea59b2" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.1.9.tar.gz", "has_sig": false, "md5_digest": "5e5a92b4298087de658ff5c4375811dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8158, "upload_time": "2019-03-21T23:28:26", "url": "https://files.pythonhosted.org/packages/0d/36/4b6bcd837967be1b7f7548b1507e0c29a6bc703b8e56b9a1ce0b13d2d5cd/mezzanine_cartridge_api-1.1.9.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "3252b126f84fc76228217b02acd6c432", "sha256": "b71ffaf53961c1380ddc089cf94b8f5395be34bbe9b5207261193e0e969fb552" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.2.0.tar.gz", "has_sig": false, "md5_digest": "3252b126f84fc76228217b02acd6c432", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8668, "upload_time": "2019-04-01T03:43:17", "url": "https://files.pythonhosted.org/packages/fe/0e/ec280a106978ac1a5784503b500424bf0414fe3fe5e3b6d589237cc88e24/mezzanine_cartridge_api-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "3da489914eb8cb3e6f48de6e28d5c4d0", "sha256": "2cb30d2da1f6f01299a56c48449f6a7ebc0777b4990ec49e856a43f0df61361b" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.2.1.tar.gz", "has_sig": false, "md5_digest": "3da489914eb8cb3e6f48de6e28d5c4d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8623, "upload_time": "2019-04-01T04:46:48", "url": "https://files.pythonhosted.org/packages/2f/07/71a699514160f25cd5a9d8b003635ceab41302c31a833dc8120c0a9ca8e4/mezzanine_cartridge_api-1.2.1.tar.gz" } ], "1.2.10": [ { "comment_text": "", "digests": { "md5": "baa12946a307e34bf8508115e0c9ba36", "sha256": "1e1a4606c60fa6f9c957a08974d33dcd9f20935491fd7710600e754b7bd1b486" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.2.10.tar.gz", "has_sig": false, "md5_digest": "baa12946a307e34bf8508115e0c9ba36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 663224, "upload_time": "2019-04-01T16:55:05", "url": "https://files.pythonhosted.org/packages/72/c6/063afb8c0918ec47be6c2ae13b83c517b64db0471e5bf0f686232ee476fa/mezzanine_cartridge_api-1.2.10.tar.gz" } ], "1.2.11": [ { "comment_text": "", "digests": { "md5": "182d3471adc11246aa0a4bc3b3d55456", "sha256": "0b3d207e041eed4530d21a00d8a288ca03c4d4db26551fa56d3257e2c8498b37" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.2.11.tar.gz", "has_sig": false, "md5_digest": "182d3471adc11246aa0a4bc3b3d55456", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 663219, "upload_time": "2019-04-01T17:04:36", "url": "https://files.pythonhosted.org/packages/0c/5e/073a2b556cb47af6c802c9f72eb743be7be919564a82aaa23b5951bdf1ca/mezzanine_cartridge_api-1.2.11.tar.gz" } ], "1.2.12": [ { "comment_text": "", "digests": { "md5": "3fe3c7374f4ccccf1ec59b70e3954aa5", "sha256": "a2fbde419c590c8ce47d14c58e8a9db49b8eef114370cae8ee0ad21bbf541ebe" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.2.12.tar.gz", "has_sig": false, "md5_digest": "3fe3c7374f4ccccf1ec59b70e3954aa5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 663184, "upload_time": "2019-04-01T17:17:49", "url": "https://files.pythonhosted.org/packages/35/ce/efcddb25e2abb7800bad7d79416ed59488d7bf0f382910e1b5fa38c159f2/mezzanine_cartridge_api-1.2.12.tar.gz" } ], "1.2.13": [ { "comment_text": "", "digests": { "md5": "632c9c60aabf39444d3df1808e58d8e8", "sha256": "7b4f84f8dc4872114eeeb9377a0e8ee626c900abf68f4f8d02e938b80f7f6778" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.2.13.tar.gz", "has_sig": false, "md5_digest": "632c9c60aabf39444d3df1808e58d8e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 663193, "upload_time": "2019-04-01T18:38:22", "url": "https://files.pythonhosted.org/packages/62/1b/d080fa7fbee5d9ac0dd8db8655b25b4f53b2f11e0db758d15c2fada46fbc/mezzanine_cartridge_api-1.2.13.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "ffb69d88f4c919808fa32cf42abc38c1", "sha256": "c5d192654048b4100b5623c51f4647e567c4b77b6113277923cdbe124e296275" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.2.2.tar.gz", "has_sig": false, "md5_digest": "ffb69d88f4c919808fa32cf42abc38c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8850, "upload_time": "2019-04-01T06:14:17", "url": "https://files.pythonhosted.org/packages/47/ae/7b05f1c1e1133e7742125d73749d07070198ecc815e0b44d383ce761aa61/mezzanine_cartridge_api-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "e3f8e2fa48431a3b69fbe68d4ad74a29", "sha256": "92825d16677d3db898bed6e5a880f0de4bef2d4135f0a9874d0c3b625d8014ee" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.2.3.tar.gz", "has_sig": false, "md5_digest": "e3f8e2fa48431a3b69fbe68d4ad74a29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10727, "upload_time": "2019-04-01T06:54:14", "url": "https://files.pythonhosted.org/packages/45/9a/ecec32d4002977836efbe657dd728cc602c54538fb08b9b8b63b9d53b881/mezzanine_cartridge_api-1.2.3.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "41c7199deb36c40e3be89c188a65cf22", "sha256": "27563273c0bb21cc69ad3518b2e3454259ce6dcc0a4072a4b8a657e491ce2060" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.2.5.tar.gz", "has_sig": false, "md5_digest": "41c7199deb36c40e3be89c188a65cf22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 387907, "upload_time": "2019-04-01T11:55:28", "url": "https://files.pythonhosted.org/packages/7a/91/6cff5a742371c21f866b064dbe20d5f6b24ceb25b4cec31c2b835a9b9847/mezzanine_cartridge_api-1.2.5.tar.gz" } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "e68e7f9e903546b170f9645484eee3e2", "sha256": "f5af310e97ac34459e6c0a9ca79eaaa744bcb28294809dd478c1f97c53cd3b22" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.2.6.tar.gz", "has_sig": false, "md5_digest": "e68e7f9e903546b170f9645484eee3e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 387896, "upload_time": "2019-04-01T12:05:28", "url": "https://files.pythonhosted.org/packages/a7/f5/eb7b908859812797a4860aef591024137857ab20e78e082d9596efcf15f7/mezzanine_cartridge_api-1.2.6.tar.gz" } ], "1.2.8": [ { "comment_text": "", "digests": { "md5": "d84f83f35c8d7bbdca3d2da1b53813ec", "sha256": "b57a9e14098de58737a3e6b4d88e02e5421d741c4d368fdc9eb9fa966923c2af" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.2.8.tar.gz", "has_sig": false, "md5_digest": "d84f83f35c8d7bbdca3d2da1b53813ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 387882, "upload_time": "2019-04-01T12:18:49", "url": "https://files.pythonhosted.org/packages/5f/e1/b9dd9ce851d5a7b0f2c2d8b745aa0d28f045839ac996c94ee990c836409b/mezzanine_cartridge_api-1.2.8.tar.gz" } ], "1.2.9": [ { "comment_text": "", "digests": { "md5": "1f61e735a26756008c752c14cb60cb1e", "sha256": "571aefeddb042c5774d4309534f8c79f22efdc01251c34419a1dcb13676d5e0e" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.2.9.tar.gz", "has_sig": false, "md5_digest": "1f61e735a26756008c752c14cb60cb1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 663214, "upload_time": "2019-04-01T16:20:15", "url": "https://files.pythonhosted.org/packages/97/c3/793963671882b9e7dcdd745b94cc9485eb785e94b81f1afb263ea5d02b5d/mezzanine_cartridge_api-1.2.9.tar.gz" } ], "1.3.20": [ { "comment_text": "", "digests": { "md5": "1640f8c5a3ae8555481b978980d4f9ba", "sha256": "570cf15e9b90c9d90554a5f4c9810358503da17305f6ba5bfbd718d3ce6dd163" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.20.tar.gz", "has_sig": false, "md5_digest": "1640f8c5a3ae8555481b978980d4f9ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665438, "upload_time": "2019-04-08T04:21:45", "url": "https://files.pythonhosted.org/packages/72/96/c1e9419cc290097b73b322641cb4816b5b326e91ce0bf4c0ef70cd6f5cb7/mezzanine_cartridge_api-1.3.20.tar.gz" } ], "1.3.21": [ { "comment_text": "", "digests": { "md5": "248727e22c2524d2cd0fc9f173d2192c", "sha256": "f9245d2935dc5196f5f144c9454a959d3e1b0d9c62e240519d53b5d1a55508fb" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.21.tar.gz", "has_sig": false, "md5_digest": "248727e22c2524d2cd0fc9f173d2192c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665446, "upload_time": "2019-04-08T04:31:43", "url": "https://files.pythonhosted.org/packages/2e/5a/1f9af1efbfd8976c54dc1811cf09515b547e3f6775aa1c4980ae79000597/mezzanine_cartridge_api-1.3.21.tar.gz" } ], "1.3.22": [ { "comment_text": "", "digests": { "md5": "be3d0a2bff1c26c4d7837122026110bc", "sha256": "96f20cde2e269f6e46a8e60fa7d83c6fb49bb70bce720efdbea364672b859381" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.22.tar.gz", "has_sig": false, "md5_digest": "be3d0a2bff1c26c4d7837122026110bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665439, "upload_time": "2019-04-08T06:01:06", "url": "https://files.pythonhosted.org/packages/2c/7c/87a4affd7221f02f69664647a73137c57e8e6eb7a21284ee1efc637ed9bc/mezzanine_cartridge_api-1.3.22.tar.gz" } ], "1.3.23": [ { "comment_text": "", "digests": { "md5": "c69722e9a5cfe41eebf7fb218b38b88a", "sha256": "363d0c77b2afb9c9582301754254ccbcb51bc633927affdabc9d6cc09041700b" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.23.tar.gz", "has_sig": false, "md5_digest": "c69722e9a5cfe41eebf7fb218b38b88a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665439, "upload_time": "2019-04-09T11:40:29", "url": "https://files.pythonhosted.org/packages/29/2f/6895ead92b98e944a148a99a76d3094726a0a86cad9c4408c09b4609ff3a/mezzanine_cartridge_api-1.3.23.tar.gz" } ], "1.3.31": [ { "comment_text": "", "digests": { "md5": "8ebe648fb85bd95e6ff9eb69690fa875", "sha256": "996c556ec39b0769cc29fe5dd8d35f71c55a32ecd36866ac465cd593e16a7ab4" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.31.tar.gz", "has_sig": false, "md5_digest": "8ebe648fb85bd95e6ff9eb69690fa875", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665584, "upload_time": "2019-04-09T13:49:46", "url": "https://files.pythonhosted.org/packages/8c/dc/f25e203b9673168e9cd8980dc9b2385812b71cee0b5ddd6708e846e4bb8d/mezzanine_cartridge_api-1.3.31.tar.gz" } ], "1.3.32": [ { "comment_text": "", "digests": { "md5": "f6f22be033061e9b9e659ded51cc15ce", "sha256": "3b07e58fce0b62ea15b87362fcee6530861837a66e1d14455a84ee93264d0ab5" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.32.tar.gz", "has_sig": false, "md5_digest": "f6f22be033061e9b9e659ded51cc15ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665584, "upload_time": "2019-04-09T14:06:25", "url": "https://files.pythonhosted.org/packages/77/b5/e9e96fd95fb8997a2ae6b7fdbadd402e16963fbde609226f898dd0c95127/mezzanine_cartridge_api-1.3.32.tar.gz" } ], "1.3.33": [ { "comment_text": "", "digests": { "md5": "8ddbd4dee0171ac6a6ab007c646628f6", "sha256": "9893023511463b077e551e8a41baa95e0e7ebb1d4a9f2b3ea7953fa4eff2233a" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.33.tar.gz", "has_sig": false, "md5_digest": "8ddbd4dee0171ac6a6ab007c646628f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665583, "upload_time": "2019-04-09T14:12:51", "url": "https://files.pythonhosted.org/packages/7e/83/0f67a66701343f33eec2d3aff8f2e22b8855cea1b8a11e87353553c16596/mezzanine_cartridge_api-1.3.33.tar.gz" } ], "1.3.35": [ { "comment_text": "", "digests": { "md5": "4d08677a50a7b4aa4e835d8badc63775", "sha256": "b4b6ba4bbe6225c0901dbfd9a9bab8d1675a9a7c46c596130d1c4e3c4ace7a27" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.35.tar.gz", "has_sig": false, "md5_digest": "4d08677a50a7b4aa4e835d8badc63775", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665571, "upload_time": "2019-04-09T14:29:45", "url": "https://files.pythonhosted.org/packages/b3/db/bbc1cfe80c26c4a85920295a1ec87c479d6b9bd80e4b0d6d96a71ee405e4/mezzanine_cartridge_api-1.3.35.tar.gz" } ], "1.3.36": [ { "comment_text": "", "digests": { "md5": "d4e2755bdd60791d656b531b09ef5d24", "sha256": "07cb29dade61d568035cabe96244438665bf2128f1a86255b1ddaf084b4d7ecf" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.36.tar.gz", "has_sig": false, "md5_digest": "d4e2755bdd60791d656b531b09ef5d24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665572, "upload_time": "2019-04-09T14:42:03", "url": "https://files.pythonhosted.org/packages/b9/97/11f0150d393b7686429e3ba0f1ffd64ab692e6ab91a9bfa9a4a0c71b7512/mezzanine_cartridge_api-1.3.36.tar.gz" } ], "1.3.37": [ { "comment_text": "", "digests": { "md5": "0120a2cc0051dbd68ec3be968489921e", "sha256": "009bcea3b725dceb4b9ec647e6c5eb20ed9780b91229245f648b2338f9b50fc5" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.37.tar.gz", "has_sig": false, "md5_digest": "0120a2cc0051dbd68ec3be968489921e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665579, "upload_time": "2019-04-09T16:11:49", "url": "https://files.pythonhosted.org/packages/9b/f0/337353d3c7cf209ca846acd8f6399abcbdced9e9236e941f834c01608658/mezzanine_cartridge_api-1.3.37.tar.gz" } ], "1.3.38": [ { "comment_text": "", "digests": { "md5": "fd728c111ecf6eaa7ff8eebb518bf455", "sha256": "10c24c7e617a045d605ea8543affc4abd3a3b1c7a2fdf645e08ff482e5277508" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.38.tar.gz", "has_sig": false, "md5_digest": "fd728c111ecf6eaa7ff8eebb518bf455", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665571, "upload_time": "2019-04-09T18:27:52", "url": "https://files.pythonhosted.org/packages/c8/42/9f96e2dcfdada3670a001b2963e3a96d67727e73129d194214efb3fb6450/mezzanine_cartridge_api-1.3.38.tar.gz" } ], "1.3.39": [ { "comment_text": "", "digests": { "md5": "8c457026ce1d738c8a506609a976fbb0", "sha256": "c138189326bdb4aae4855d8580d6bf55c9094cafe94fbdce1ebfc92d4b3abd51" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.39.tar.gz", "has_sig": false, "md5_digest": "8c457026ce1d738c8a506609a976fbb0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665579, "upload_time": "2019-04-09T21:42:22", "url": "https://files.pythonhosted.org/packages/52/45/f71c0df0b4c8ae471fb06d9f2296167de5c7540ffc5c7fb6a2ab814df468/mezzanine_cartridge_api-1.3.39.tar.gz" } ], "1.3.41": [ { "comment_text": "", "digests": { "md5": "d4f23ab07ac577f48ba367960720f759", "sha256": "9c0190e109c4574fde3f6a8b49b04e3db6b8f1b4f8f69603310c8a5a1dbbf2c8" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.41.tar.gz", "has_sig": false, "md5_digest": "d4f23ab07ac577f48ba367960720f759", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665583, "upload_time": "2019-04-09T22:05:05", "url": "https://files.pythonhosted.org/packages/4c/f3/208ee515a12587ba6ecce7315774edbb2bcce5c7f807327694cbe1f17fb3/mezzanine_cartridge_api-1.3.41.tar.gz" } ], "1.3.42": [ { "comment_text": "", "digests": { "md5": "01a32ddd68fc5418e98ce44073f3446a", "sha256": "1fac36f61de5f7621665fea3a781647ac2dab448f05d898fc915691b657eb4bf" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.42.tar.gz", "has_sig": false, "md5_digest": "01a32ddd68fc5418e98ce44073f3446a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665670, "upload_time": "2019-04-10T03:29:55", "url": "https://files.pythonhosted.org/packages/57/07/c6f30a822df56caab294b506280a1110189d0427a7838b142f7c797606a6/mezzanine_cartridge_api-1.3.42.tar.gz" } ], "1.3.52": [ { "comment_text": "", "digests": { "md5": "bea74ac419fd169359c538fd548cf8fd", "sha256": "c359da6b5bd279ca1bc55e4f26d5e3f4a9f7d46cabad46d0525f7b5fb2d9e1f3" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.52.tar.gz", "has_sig": false, "md5_digest": "bea74ac419fd169359c538fd548cf8fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665996, "upload_time": "2019-04-12T01:50:41", "url": "https://files.pythonhosted.org/packages/ed/7b/cf797e65db77ac9a49c948a28fc0ca3aa7c29e02ceb35a7c5b7b07facac2/mezzanine_cartridge_api-1.3.52.tar.gz" } ], "1.3.53": [ { "comment_text": "", "digests": { "md5": "9550c060988e8484ffdebd5025c10680", "sha256": "0eb59ac7abcd0d8ec8d00b455bec7db4b26a8d03fb28f34cca9351244c7a3b95" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.53.tar.gz", "has_sig": false, "md5_digest": "9550c060988e8484ffdebd5025c10680", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665985, "upload_time": "2019-04-12T02:03:59", "url": "https://files.pythonhosted.org/packages/2d/dc/cfa15e1d13b51ee0d313a4e28c7a2aeb6fea98bb37b0364b06c5ef34f17f/mezzanine_cartridge_api-1.3.53.tar.gz" } ], "1.3.54": [ { "comment_text": "", "digests": { "md5": "b398af013e8b7f500eff6b18128f375d", "sha256": "19c7cb175b17ef8a7e872c39bc47fd27f3d87db0ed29f1baef1d36aeba7d4e98" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.54.tar.gz", "has_sig": false, "md5_digest": "b398af013e8b7f500eff6b18128f375d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 666016, "upload_time": "2019-04-12T02:33:36", "url": "https://files.pythonhosted.org/packages/2e/2d/cf5e078756a69df08cc2a807740873c98ce96f607ab02cdb023b46bcda37/mezzanine_cartridge_api-1.3.54.tar.gz" } ], "1.3.55": [ { "comment_text": "", "digests": { "md5": "871f65b86942da4b587a536c56ce8636", "sha256": "d005263cb27e78666f166f00ae54ba65c94cfc958ae2bdaed00fbca9e753fc36" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.55.tar.gz", "has_sig": false, "md5_digest": "871f65b86942da4b587a536c56ce8636", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 666044, "upload_time": "2019-04-12T02:39:18", "url": "https://files.pythonhosted.org/packages/5d/fe/e2ab8bf1c9dcaab99c7a5052cff452c4602e3a1c01cc461af0fe4e916fed/mezzanine_cartridge_api-1.3.55.tar.gz" } ], "1.3.56": [ { "comment_text": "", "digests": { "md5": "00138d869b80da0f1546e1f222a6410a", "sha256": "33c761f79735c5e4483c811649eaf7f66abc3f3d5aaa11ae88e07625a18b0fd0" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.56.tar.gz", "has_sig": false, "md5_digest": "00138d869b80da0f1546e1f222a6410a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 666042, "upload_time": "2019-04-12T03:04:16", "url": "https://files.pythonhosted.org/packages/55/f7/500235fba08d8e1b7f3159b87755a09444c508a04d9c6e4ca7b6373bb37e/mezzanine_cartridge_api-1.3.56.tar.gz" } ], "1.3.8": [ { "comment_text": "", "digests": { "md5": "1f4b33ec33b03409529d9f12b4412dbb", "sha256": "0adece399aee0f8e0b23ed561130d7b7baa23cf82071b32bef16d09c3df29e6c" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.3.8.tar.gz", "has_sig": false, "md5_digest": "1f4b33ec33b03409529d9f12b4412dbb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 664362, "upload_time": "2019-04-08T00:34:01", "url": "https://files.pythonhosted.org/packages/b7/56/24d54a262b3e69d69d067d93a611f5b35a34c36b538681c0b9df3fcb7abb/mezzanine_cartridge_api-1.3.8.tar.gz" } ], "1.5.10": [ { "comment_text": "", "digests": { "md5": "e0cc397134ba49ef57543bbb5667d01d", "sha256": "ed942bf07234f804e81c95d4b1e5bc084dc1e5fed76def770c18e0e50eff0510" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.5.10.tar.gz", "has_sig": false, "md5_digest": "e0cc397134ba49ef57543bbb5667d01d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 667237, "upload_time": "2019-04-14T08:21:50", "url": "https://files.pythonhosted.org/packages/78/4f/89f702babad736c41f77f85dad1e88573115d817e515b53f00ee3883b19d/mezzanine_cartridge_api-1.5.10.tar.gz" } ], "1.5.11": [ { "comment_text": "", "digests": { "md5": "491c68f89445c055fb5c6a115a7e53a4", "sha256": "605aba8a88fc9b80e1a369e0922818af858474a91e050487bbe5486b20332d0e" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.5.11.tar.gz", "has_sig": false, "md5_digest": "491c68f89445c055fb5c6a115a7e53a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 667715, "upload_time": "2019-04-14T17:21:15", "url": "https://files.pythonhosted.org/packages/d8/55/6fdac4f2d222711246f1cf35d9d6b2e6bfd93827a269a0155f1279c155cc/mezzanine_cartridge_api-1.5.11.tar.gz" } ], "1.5.12": [ { "comment_text": "", "digests": { "md5": "1d6dc549b0b3dde5c86fc9a06876d137", "sha256": "8c22ac606960d6674a372102df59dbce9e1a476f071690c67a8b7ca19bff8e08" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.5.12.tar.gz", "has_sig": false, "md5_digest": "1d6dc549b0b3dde5c86fc9a06876d137", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 667966, "upload_time": "2019-04-17T20:12:42", "url": "https://files.pythonhosted.org/packages/27/bd/6dba1ef15c994f1c566d6a5f113fffb7c30bb6ce8fc8ebeade16dc4fb934/mezzanine_cartridge_api-1.5.12.tar.gz" } ], "1.5.13": [ { "comment_text": "", "digests": { "md5": "67ac22fc43e2f454fe72f8867cc9ace9", "sha256": "63e819d9bce242d1afd2061a4844cfd44a5394372ecafa7513434c0036397f5b" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.5.13.tar.gz", "has_sig": false, "md5_digest": "67ac22fc43e2f454fe72f8867cc9ace9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 668019, "upload_time": "2019-04-17T21:50:51", "url": "https://files.pythonhosted.org/packages/b5/28/3733a6f5280a2f5908bc09c3601b620bcda3183749e9f8e483013920e9f9/mezzanine_cartridge_api-1.5.13.tar.gz" } ], "1.5.14": [ { "comment_text": "", "digests": { "md5": "71bd75b39b273b4ef07a11dbc3579180", "sha256": "81de74790df03427905f581e4e25e46de843161339f351db311e7c727f254db4" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.5.14.tar.gz", "has_sig": false, "md5_digest": "71bd75b39b273b4ef07a11dbc3579180", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 668044, "upload_time": "2019-04-17T22:31:45", "url": "https://files.pythonhosted.org/packages/af/1d/6965663d0e3fef0e4689f7c9a684e0ef56f6a68e1d66e93e1ac77cce81ca/mezzanine_cartridge_api-1.5.14.tar.gz" } ], "1.5.16": [ { "comment_text": "", "digests": { "md5": "f4848a3429145575a6337e73d8f6587e", "sha256": "1f45c44b1cfeabc09cbd444b2f31fe7f88330fbe71c323b5d9d9fa89983500e8" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.5.16.tar.gz", "has_sig": false, "md5_digest": "f4848a3429145575a6337e73d8f6587e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 668132, "upload_time": "2019-04-18T07:03:09", "url": "https://files.pythonhosted.org/packages/68/6f/6bdb57084ccb29b471473320cab434be5cd0b47696986a3cc2b13d4a8705/mezzanine_cartridge_api-1.5.16.tar.gz" } ], "1.5.17": [ { "comment_text": "", "digests": { "md5": "f22fd86429075e5dc4fcf391df4e6de1", "sha256": "2ae609e9d9fe67f03e3b75f84baef3599f9c8f7351c401a5eed1187c4a7585ea" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.5.17.tar.gz", "has_sig": false, "md5_digest": "f22fd86429075e5dc4fcf391df4e6de1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 668216, "upload_time": "2019-04-18T22:44:40", "url": "https://files.pythonhosted.org/packages/7a/d0/a63dbb9e2dbaedae2349e5e0bd3127837c5151d2e588a9249e6a376c0689/mezzanine_cartridge_api-1.5.17.tar.gz" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "b51796a60df9257c8e6dca786513af96", "sha256": "fa57a8c82f28221284cd20bd5d10e7f0e9aed0c9bfbd04691f135c023cceef7e" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.5.3.tar.gz", "has_sig": false, "md5_digest": "b51796a60df9257c8e6dca786513af96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 666696, "upload_time": "2019-04-14T04:36:58", "url": "https://files.pythonhosted.org/packages/32/d1/cf6c863e8474180c3a2be601ca8735beace9162b2bd6ad59bebeebbbbe74/mezzanine_cartridge_api-1.5.3.tar.gz" } ], "1.5.5": [ { "comment_text": "", "digests": { "md5": "5932b6206df7115ba6ca0177aa7b3b14", "sha256": "223f039f5862a79a0622ceb338592af36be87edadafa13a91ec6311f67ae1835" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.5.5.tar.gz", "has_sig": false, "md5_digest": "5932b6206df7115ba6ca0177aa7b3b14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 666682, "upload_time": "2019-04-14T05:06:01", "url": "https://files.pythonhosted.org/packages/a0/d1/41eecfb6cfcb03593ecdaa4f7178894e7c2f74b76cb6e4403eea39ec743e/mezzanine_cartridge_api-1.5.5.tar.gz" } ], "1.5.6": [ { "comment_text": "", "digests": { "md5": "669279d2279e32ccca3c2ae932f09d29", "sha256": "fbc51ddcd6d5d215479fd7a00a7e65841e6f6e57884b9c68c61051821e81d49d" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.5.6.tar.gz", "has_sig": false, "md5_digest": "669279d2279e32ccca3c2ae932f09d29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 666674, "upload_time": "2019-04-14T05:15:32", "url": "https://files.pythonhosted.org/packages/11/61/63beb137f65e6314de170026985217f3dc0568a6b019fa88715475ee66a0/mezzanine_cartridge_api-1.5.6.tar.gz" } ], "1.5.7": [ { "comment_text": "", "digests": { "md5": "f5ff1cb32ebe23539203f6c787eb517a", "sha256": "fe46af918c0021813a83471ce8b4d1fbf5b77d9edabaecffc1e4eeb85480d475" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.5.7.tar.gz", "has_sig": false, "md5_digest": "f5ff1cb32ebe23539203f6c787eb517a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 666756, "upload_time": "2019-04-14T05:40:27", "url": "https://files.pythonhosted.org/packages/b1/52/f118b6da68325543d312e091a66dca14a43d71b77709e05cb60b0c717cc4/mezzanine_cartridge_api-1.5.7.tar.gz" } ], "1.5.8": [ { "comment_text": "", "digests": { "md5": "1b269154f4d121c2d3b18356183e79b2", "sha256": "783d740fdaf2a1d75030d9bf22518adba9d7144449819389ab56494aa4d6cf42" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.5.8.tar.gz", "has_sig": false, "md5_digest": "1b269154f4d121c2d3b18356183e79b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 666816, "upload_time": "2019-04-14T06:03:52", "url": "https://files.pythonhosted.org/packages/b9/59/d8e8b52ecd3a50fe2f8fc2e27dce9a256ac3e06a561a791f723007daf300/mezzanine_cartridge_api-1.5.8.tar.gz" } ], "1.5.9": [ { "comment_text": "", "digests": { "md5": "f25d3f258b016a94b9cbc40dc2ce405a", "sha256": "15ec61661d97ee82daec25bb08a047a07a5fc3acf211befc1abd37427203de01" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.5.9.tar.gz", "has_sig": false, "md5_digest": "f25d3f258b016a94b9cbc40dc2ce405a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 667235, "upload_time": "2019-04-14T07:46:36", "url": "https://files.pythonhosted.org/packages/e3/4f/1e36e0a792dfe1f88d147c615ff39a0345fc6c322527cfe8f5d337e9f142/mezzanine_cartridge_api-1.5.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f22fd86429075e5dc4fcf391df4e6de1", "sha256": "2ae609e9d9fe67f03e3b75f84baef3599f9c8f7351c401a5eed1187c4a7585ea" }, "downloads": -1, "filename": "mezzanine_cartridge_api-1.5.17.tar.gz", "has_sig": false, "md5_digest": "f22fd86429075e5dc4fcf391df4e6de1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 668216, "upload_time": "2019-04-18T22:44:40", "url": "https://files.pythonhosted.org/packages/7a/d0/a63dbb9e2dbaedae2349e5e0bd3127837c5151d2e588a9249e6a376c0689/mezzanine_cartridge_api-1.5.17.tar.gz" } ] }