{ "info": { "author": "Steven Loria", "author_email": "sloria1@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "********************************************\nmarshmallow: simplified object serialization\n********************************************\n\n.. image:: https://badgen.net/pypi/v/marshmallow\n :target: https://pypi.org/project/marshmallow/\n :alt: Latest version\n\n.. image:: https://dev.azure.com/sloria/sloria/_apis/build/status/marshmallow-code.marshmallow?branchName=dev\n :target: https://dev.azure.com/sloria/sloria/_build/latest?definitionId=5&branchName=dev\n :alt: Build status\n\n.. image:: https://readthedocs.org/projects/marshmallow/badge/\n :target: https://marshmallow.readthedocs.io/\n :alt: Documentation\n\n.. image:: https://badgen.net/badge/code%20style/black/000\n :target: https://github.com/ambv/black\n :alt: code style: black\n\n\n**marshmallow** is an ORM/ODM/framework-agnostic library for converting complex datatypes, such as objects, to and from native Python datatypes.\n\n.. code-block:: python\n\n from datetime import date\n from marshmallow import Schema, fields, pprint\n\n\n class ArtistSchema(Schema):\n name = fields.Str()\n\n\n class AlbumSchema(Schema):\n title = fields.Str()\n release_date = fields.Date()\n artist = fields.Nested(ArtistSchema())\n\n\n bowie = dict(name=\"David Bowie\")\n album = dict(artist=bowie, title=\"Hunky Dory\", release_date=date(1971, 12, 17))\n\n schema = AlbumSchema()\n result = schema.dump(album)\n pprint(result, indent=2)\n # { 'artist': {'name': 'David Bowie'},\n # 'release_date': '1971-12-17',\n # 'title': 'Hunky Dory'}\n\n\nIn short, marshmallow schemas can be used to:\n\n- **Validate** input data.\n- **Deserialize** input data to app-level objects.\n- **Serialize** app-level objects to primitive Python types. The serialized objects can then be rendered to standard formats such as JSON for use in an HTTP API.\n\nGet It Now\n==========\n\n::\n\n $ pip install -U marshmallow\n\n\nDocumentation\n=============\n\nFull documentation is available at https://marshmallow.readthedocs.io/ .\n\nRequirements\n============\n\n- Python >= 3.5\n\nEcosystem\n=========\n\nA list of marshmallow-related libraries can be found at the GitHub wiki here:\n\nhttps://github.com/marshmallow-code/marshmallow/wiki/Ecosystem\n\nCredits\n=======\n\nContributors\n------------\n\nThis project exists thanks to all the people who contribute.\n\n**You're highly encouraged to participate in marshmallow's development.**\nCheck out the `Contributing Guidelines `_ to see how you can help.\n\nThank you to all who have already contributed to marshmallow!\n\n.. image:: https://opencollective.com/marshmallow/contributors.svg?width=890&button=false\n :target: https://marshmallow.readthedocs.io/en/latest/authors.html\n :alt: Contributors\n\nBackers\n-------\n\nIf you find marshmallow useful, please consider supporting the team with\na donation. Your donation helps move marshmallow forward.\n\nThank you to all our backers! [`Become a backer`_]\n\n.. _`Become a backer`: https://opencollective.com/marshmallow#backer\n\n.. image:: https://opencollective.com/marshmallow/backers.svg?width=890\n :target: https://opencollective.com/marshmallow#backers\n :alt: Backers\n\nSponsors\n--------\n\nSupport this project by becoming a sponsor (or ask your company to support this project by becoming a sponsor).\nYour logo will show up here with a link to your website. [`Become a sponsor`_]\n\n.. _`Become a sponsor`: https://opencollective.com/marshmallow#sponsor\n\n.. image:: https://opencollective.com/marshmallow/sponsor/0/avatar.svg\n :target: https://opencollective.com/marshmallow/sponsor/0/website\n :alt: Sponsors\n\n.. image:: https://opencollective.com/static/images/become_sponsor.svg\n :target: https://opencollective.com/marshmallow#sponsor\n :alt: Become a sponsor\n\n\nProfessional Support\n====================\n\nProfessionally-supported marshmallow is now available through the\n`Tidelift Subscription `_.\n\nTidelift gives software development teams a single source for purchasing and maintaining their software,\nwith professional-grade assurances from the experts who know it best,\nwhile seamlessly integrating with existing tools. [`Get professional support`_]\n\n.. _`Get professional support`: https://tidelift.com/subscription/pkg/pypi-marshmallow?utm_source=marshmallow&utm_medium=referral&utm_campaign=github\n\n.. image:: https://user-images.githubusercontent.com/2379650/45126032-50b69880-b13f-11e8-9c2c-abd16c433495.png\n :target: https://tidelift.com/subscription/pkg/pypi-marshmallow?utm_source=pypi-marshmallow&utm_medium=readme\n :alt: Get supported marshmallow with Tidelift\n\nSecurity Contact Information\n============================\n\nTo report a security vulnerability, please use the\n`Tidelift security contact `_.\nTidelift will coordinate the fix and disclosure.\n\nProject Links\n=============\n\n- Docs: https://marshmallow.readthedocs.io/\n- Changelog: https://marshmallow.readthedocs.io/en/latest/changelog.html\n- Contributing Guidelines: https://marshmallow.readthedocs.io/en/latest/contributing.html\n- PyPI: https://pypi.python.org/pypi/marshmallow\n- Issues: https://github.com/marshmallow-code/marshmallow/issues\n- Donate: https://opencollective.com/marshmallow\n\nLicense\n=======\n\nMIT licensed. See the bundled `LICENSE `_ file for more details.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/marshmallow-code/marshmallow", "keywords": "serialization,rest,json,api,marshal,marshalling,deserialization,validation,schema", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "marshmallow", "package_url": "https://pypi.org/project/marshmallow/", "platform": "", "project_url": "https://pypi.org/project/marshmallow/", "project_urls": { "Changelog": "https://marshmallow.readthedocs.io/en/latest/changelog.html", "Funding": "https://opencollective.com/marshmallow", "Homepage": "https://github.com/marshmallow-code/marshmallow", "Issues": "https://github.com/marshmallow-code/marshmallow/issues", "Tidelift": "https://tidelift.com/subscription/pkg/pypi-marshmallow?utm_source=pypi-marshmallow&utm_medium=pypi" }, "release_url": "https://pypi.org/project/marshmallow/3.2.1/", "requires_dist": [ "pytest ; extra == 'dev'", "pytz ; extra == 'dev'", "simplejson ; extra == 'dev'", "mypy (==0.730) ; extra == 'dev'", "flake8 (==3.7.8) ; extra == 'dev'", "flake8-bugbear (==19.8.0) ; extra == 'dev'", "pre-commit (~=1.17) ; extra == 'dev'", "tox ; extra == 'dev'", "sphinx (==2.2.0) ; extra == 'docs'", "sphinx-issues (==1.2.0) ; extra == 'docs'", "alabaster (==0.7.12) ; extra == 'docs'", "sphinx-version-warning (==1.1.2) ; extra == 'docs'", "mypy (==0.730) ; extra == 'lint'", "flake8 (==3.7.8) ; extra == 'lint'", "flake8-bugbear (==19.8.0) ; extra == 'lint'", "pre-commit (~=1.17) ; extra == 'lint'", "pytest ; extra == 'tests'", "pytz ; extra == 'tests'", "simplejson ; extra == 'tests'" ], "requires_python": ">=3.5", "summary": "A lightweight library for converting complex datatypes to and from native Python datatypes.", "version": "3.2.1" }, "last_serial": 5910190, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "46f63d6115650600b7ad84369bc20e5c", "sha256": "b2a6f1df3c475cd9c1ae29d9ef46ab1f24110bf7721d4e91c8ee90e2eaf604e8" }, "downloads": -1, "filename": "marshmallow-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "46f63d6115650600b7ad84369bc20e5c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 13326, "upload_time": "2013-11-11T04:26:59", "url": "https://files.pythonhosted.org/packages/be/cd/a4b993ec048239cb5f3a984ff6c892b3fb7a80628df7b0f1ecb3b6c27812/marshmallow-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b39d50e165c3b4e89a74376d24d2debd", "sha256": "7857de852b5170be1cab48d26c5eb1eeb5dbfb1037257680b6ca8de2b4157c33" }, "downloads": -1, "filename": "marshmallow-0.1.0.tar.gz", "has_sig": false, "md5_digest": "b39d50e165c3b4e89a74376d24d2debd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10447, "upload_time": "2013-11-11T04:26:56", "url": "https://files.pythonhosted.org/packages/ab/3c/1db68d3e9b391405f979a019c5455c6326261bb86c8655fb0f0d7e551e68/marshmallow-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "d8255a5535842d77a95596d14f4a6f88", "sha256": "744ddd5a1b6615af35172cf130c51a2717757e65e03e863ad51310e3ba7f0c77" }, "downloads": -1, "filename": "marshmallow-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d8255a5535842d77a95596d14f4a6f88", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 14189, "upload_time": "2013-11-12T04:34:29", "url": "https://files.pythonhosted.org/packages/e7/64/dd00803f85520006b8ffd593a65b5fff108061a083137efd64889a1d4b4e/marshmallow-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "87dcfea1f721baed840c0aeeb9ffc9c9", "sha256": "53382774bc00755c45ea72afb2f6b6d59d7126d823831725e28627902dac0238" }, "downloads": -1, "filename": "marshmallow-0.2.0.tar.gz", "has_sig": false, "md5_digest": "87dcfea1f721baed840c0aeeb9ffc9c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11173, "upload_time": "2013-11-12T04:34:26", "url": "https://files.pythonhosted.org/packages/95/01/58d55c88ea3e8e028259a6fcdf5007db7b07afa72ccb90028ec83b7df69f/marshmallow-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "604151acd42e17694c10008fabc29ae1", "sha256": "366c71f1d008ed4e865e2b2c5a2f2a5750627e621263628a55cbfa2e6d73961c" }, "downloads": -1, "filename": "marshmallow-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "604151acd42e17694c10008fabc29ae1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16484, "upload_time": "2013-11-12T23:59:19", "url": "https://files.pythonhosted.org/packages/6d/aa/92d71a193c5e732ff0b492dbbf08cce9f66084486f24a08fa8cfd57381ec/marshmallow-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3bea44ef745c5245d983a21bad05a0b5", "sha256": "910cdb45710849814be966be7cee4f6ba2cb4f58fc8392fa8aff4c6a1a4ad42b" }, "downloads": -1, "filename": "marshmallow-0.2.1.tar.gz", "has_sig": false, "md5_digest": "3bea44ef745c5245d983a21bad05a0b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12473, "upload_time": "2013-11-12T23:59:17", "url": "https://files.pythonhosted.org/packages/4f/ab/88c6e90d12c7400d206f249085c4a7176c58fb3fc99897f442f52945804e/marshmallow-0.2.1.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "62c97cd1d8a69def1c7955fd4ef13ee2", "sha256": "6758e39b20cd1e044cae04b2617f4193f2e3aceb3a5936974b7ac412f23133aa" }, "downloads": -1, "filename": "marshmallow-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "62c97cd1d8a69def1c7955fd4ef13ee2", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 19447, "upload_time": "2013-11-14T15:57:55", "url": "https://files.pythonhosted.org/packages/df/ea/4d9eb6bfe8e993ea32c1276a82e140c61f2525a72c69594055b2d8e9aef6/marshmallow-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b262208e54cc91fc957a7e98552a66dd", "sha256": "0f607057f69229c48d358fd8e098ddb70c9df3b1243b1f695e0ffcd1277493ca" }, "downloads": -1, "filename": "marshmallow-0.3.0.tar.gz", "has_sig": false, "md5_digest": "b262208e54cc91fc957a7e98552a66dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14681, "upload_time": "2013-11-14T15:57:53", "url": "https://files.pythonhosted.org/packages/b5/7c/2510fbe91d7a10b6a21c8e203f50ceb156cd05403e04da27606f0c02880c/marshmallow-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "028fdaefb56149f4e1a6727c077d68d3", "sha256": "bdb7d3cb58b84fe5cb073478d95613f51174050ebfdaadffac1550c70a2ffb81" }, "downloads": -1, "filename": "marshmallow-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "028fdaefb56149f4e1a6727c077d68d3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20419, "upload_time": "2013-11-16T17:56:42", "url": "https://files.pythonhosted.org/packages/a0/7f/353deed4e0910174f3008052d5ee1463a1dede7df2ae52e8ccfddfa1647c/marshmallow-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e21ba80efc462e9d3bc5faf160b0ff2a", "sha256": "441a2e4a4f259e7720e685d1c97481d93c628b80574b974df7dd82e2a0984132" }, "downloads": -1, "filename": "marshmallow-0.3.1.tar.gz", "has_sig": false, "md5_digest": "e21ba80efc462e9d3bc5faf160b0ff2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15582, "upload_time": "2013-11-16T17:56:35", "url": "https://files.pythonhosted.org/packages/7c/18/36c3db50397d2697e60f46a0ae3ecbee8d5c3cdfa79599338f67e63ca14e/marshmallow-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "c98798931b310d3eaa618bc317471cba", "sha256": "e6be2bb56f19fc6db8e8c33d8637a15d934436d5e6a1a1ffdb0c78785d4ab954" }, "downloads": -1, "filename": "marshmallow-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c98798931b310d3eaa618bc317471cba", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22231, "upload_time": "2013-11-25T01:08:48", "url": "https://files.pythonhosted.org/packages/0a/b4/42744295a8c6c1a72a83e841dbd5dded20337b4bfcbac644a6ed7af0728d/marshmallow-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b095eede4ee8a564627350cf8c0f2b53", "sha256": "63387a4ec90c5e7d6c9bcb3f45bc2f4b83357d554d51f128023955cc31565a39" }, "downloads": -1, "filename": "marshmallow-0.4.0.tar.gz", "has_sig": false, "md5_digest": "b095eede4ee8a564627350cf8c0f2b53", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17228, "upload_time": "2013-11-25T01:08:45", "url": "https://files.pythonhosted.org/packages/87/4b/3eee581b0d2e72cba0b2de459124ece2eade0c209027a7edc77aa12efcb8/marshmallow-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "7726ab8c6571c758b34c2f4fa4f31df0", "sha256": "928eeb25c1287b25bc7df88f5d693eeea42aad729d2b1268bdc44a15f3b8979c" }, "downloads": -1, "filename": "marshmallow-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7726ab8c6571c758b34c2f4fa4f31df0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22564, "upload_time": "2013-12-02T05:56:19", "url": "https://files.pythonhosted.org/packages/a9/70/04f19db6f180de0deea98118112b6baa1a872c496a2ee2b1b6097694f724/marshmallow-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "59b354c10bda3c9790b1967b0411c713", "sha256": "5a3d4ac576271aa4a6876f8c05d3b1f428edeff5ee1f8704454f6f6034f32748" }, "downloads": -1, "filename": "marshmallow-0.4.1.tar.gz", "has_sig": false, "md5_digest": "59b354c10bda3c9790b1967b0411c713", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17520, "upload_time": "2013-12-02T05:56:17", "url": "https://files.pythonhosted.org/packages/74/b4/b66eca89f55ed4ed7b2f9e6764d881fa7aa1a08d650323fb775df808be05/marshmallow-0.4.1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "30119e1c169f7d471a583ea6ea51fb21", "sha256": "dcfd2c88f67234ceaa4585b8e23f35d5e07a7d0443261ffd3b93abf205a6b265" }, "downloads": -1, "filename": "marshmallow-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "30119e1c169f7d471a583ea6ea51fb21", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24183, "upload_time": "2013-12-29T17:56:03", "url": "https://files.pythonhosted.org/packages/c9/4c/ae41163a6c342add5c4534056e245392c25a387e70c00810847ca6cc4eee/marshmallow-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "43b1dc8dc7e040e391309b3ea2ca29d7", "sha256": "1c1cdc82436ffb7a3a160fbbf35e1a27478ebba285217dd39f522ef252a7221a" }, "downloads": -1, "filename": "marshmallow-0.5.0.tar.gz", "has_sig": false, "md5_digest": "43b1dc8dc7e040e391309b3ea2ca29d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19046, "upload_time": "2013-12-29T17:56:00", "url": "https://files.pythonhosted.org/packages/77/6a/97d29ffb68871f7d17026825a7f6f4ded2d12c4f3f7a85d89c62f1ce232d/marshmallow-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "978f551be79809bdc57dc9569f288bb6", "sha256": "76b2a31201daf3df10d1ead332b5a2171bdcf8cca9c7efdcec30788535ed23a6" }, "downloads": -1, "filename": "marshmallow-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "978f551be79809bdc57dc9569f288bb6", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24585, "upload_time": "2014-02-03T02:06:01", "url": "https://files.pythonhosted.org/packages/65/08/c28bf4d816e5c78791229c34cf510e305e1158c05f199b010b32b552b759/marshmallow-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8b6bb353a381f4970ed6c25df087705", "sha256": "7397e40a5df78e43e010f2ee91a463ef50f5a2bc3a97b8391baaf0a349d7d8da" }, "downloads": -1, "filename": "marshmallow-0.5.1.tar.gz", "has_sig": false, "md5_digest": "b8b6bb353a381f4970ed6c25df087705", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19356, "upload_time": "2014-02-03T02:05:55", "url": "https://files.pythonhosted.org/packages/bc/e5/74428d6c86eb5a6ad26e8fec2ffade641c979d3d242bd0e8e115c20c6b08/marshmallow-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "6468fa653a39a8ad7b60aaed2e2dcf17", "sha256": "bf16638278517da75b0a808c7fc14246629fa05c2a85201e9a3ac9a5db6e2b69" }, "downloads": -1, "filename": "marshmallow-0.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6468fa653a39a8ad7b60aaed2e2dcf17", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 25078, "upload_time": "2014-02-10T13:19:51", "url": "https://files.pythonhosted.org/packages/07/83/149acacb438fa0a5d389d41a35d46daebe3c34a8629c40d17ef762d014f5/marshmallow-0.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ccf87cfa8408142e3fe2e1b2acdf9da9", "sha256": "c6d20b15e7e0d16c56a5a9f800819a12bcac0a09d37187c41eb24a22c2e845de" }, "downloads": -1, "filename": "marshmallow-0.5.2.tar.gz", "has_sig": false, "md5_digest": "ccf87cfa8408142e3fe2e1b2acdf9da9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20320, "upload_time": "2014-02-10T13:19:48", "url": "https://files.pythonhosted.org/packages/60/59/564f15f563d1364c132fac66ce4fbe3aa53cde840531d3443b1633ff7b0c/marshmallow-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "93a33daf02b4e90e0b49e5c7353808e9", "sha256": "7a8fc5fb29b233e73627a4e33a54415747e38a2fea959100e4703bf07c4ec482" }, "downloads": -1, "filename": "marshmallow-0.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "93a33daf02b4e90e0b49e5c7353808e9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 25603, "upload_time": "2014-03-03T00:41:18", "url": "https://files.pythonhosted.org/packages/ff/0b/57c3ec429f239a31c84bdb5781603e7b6d9104ed4b5fad4675ee43464b40/marshmallow-0.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d8d67b26ead69c32a90af244b016b164", "sha256": "2948839ab21cb8719b69edffb2c1c00462af2a84a4adc2a952cefad157640231" }, "downloads": -1, "filename": "marshmallow-0.5.3.tar.gz", "has_sig": false, "md5_digest": "d8d67b26ead69c32a90af244b016b164", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20664, "upload_time": "2014-03-03T00:41:15", "url": "https://files.pythonhosted.org/packages/15/de/396af252bc8555d1d9056af7462510327e89c1e6b3667cd7378dac874d0f/marshmallow-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "efd720485b3a3d2d7b5a2f6be8d7d4f1", "sha256": "3a0e74f75716e184dca28bace67617771f9593c0c395af4570955749e51fb64f" }, "downloads": -1, "filename": "marshmallow-0.5.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "efd720485b3a3d2d7b5a2f6be8d7d4f1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 25884, "upload_time": "2014-04-18T01:43:38", "url": "https://files.pythonhosted.org/packages/1d/d4/22f0d2ea076ac8eb2c668aa9dce6d18da19285f1ec1f9403d959c028e585/marshmallow-0.5.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "284d419933d55daabc27fe0b2b24addd", "sha256": "e6c3463de1e9321e4de9ab229fc3ff580dd725d19432cacb2c95a0b9cf03840b" }, "downloads": -1, "filename": "marshmallow-0.5.4.tar.gz", "has_sig": false, "md5_digest": "284d419933d55daabc27fe0b2b24addd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21164, "upload_time": "2014-04-18T01:43:31", "url": "https://files.pythonhosted.org/packages/11/9a/dd7222f3812bf7511e43b5925fa61313d82beb8437bdeea0d63cdcc375b2/marshmallow-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "b77ce318f28a1ded049274fb8d2e5e4a", "sha256": "2f105b7fddce8247ca66c6ccaea8c346d34cbd4300f8d54ab602937dac22bd49" }, "downloads": -1, "filename": "marshmallow-0.5.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b77ce318f28a1ded049274fb8d2e5e4a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 26933, "upload_time": "2014-05-03T00:16:10", "url": "https://files.pythonhosted.org/packages/fc/15/976e4d6c13fe29297deafcf01aa27db90555f77211bbdaf675c5b6b3a6c8/marshmallow-0.5.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d9caf425f600e8ef0f3db16ee9485c3c", "sha256": "13a8a3f7beb31badb4372dc77113748262b6fba4debebcae172f5b96c69799b5" }, "downloads": -1, "filename": "marshmallow-0.5.5.tar.gz", "has_sig": false, "md5_digest": "d9caf425f600e8ef0f3db16ee9485c3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22040, "upload_time": "2014-05-03T00:16:07", "url": "https://files.pythonhosted.org/packages/34/f6/677b362df32ffcd60c805fc8665ce6bb58999212bc8fc2a685867a6e994c/marshmallow-0.5.5.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "5392d1e50bc2c8e6f2001b557ebb69e5", "sha256": "9d0052219a5717f08031da65f3fdeadc014aaede4f54ca82cdf1073a1f651c36" }, "downloads": -1, "filename": "marshmallow-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5392d1e50bc2c8e6f2001b557ebb69e5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 28451, "upload_time": "2014-06-04T02:39:55", "url": "https://files.pythonhosted.org/packages/98/eb/310f8163a89cded9cff175c84a502eb22fe6147c87cd82f731f17989abdf/marshmallow-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dc7ed7bc15101107671c6a3cd4a40c9c", "sha256": "5a012cba7cba76a5e0a3345f7866a114899829fe7bef83bb2acc4fe641a5e9bd" }, "downloads": -1, "filename": "marshmallow-0.6.0.tar.gz", "has_sig": false, "md5_digest": "dc7ed7bc15101107671c6a3cd4a40c9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23698, "upload_time": "2014-06-04T02:39:52", "url": "https://files.pythonhosted.org/packages/08/42/3408bb4774b5b68e700561dfb5671484b0617c3dde82c8ddae77fe5956da/marshmallow-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "5597cfedf414d64e61bb2817e22a79d0", "sha256": "a3afa6b4a23181b360a11dddae36f0c0d660c168866cb344bedadba8a7cb0c55" }, "downloads": -1, "filename": "marshmallow-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5597cfedf414d64e61bb2817e22a79d0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29597, "upload_time": "2014-06-22T23:35:53", "url": "https://files.pythonhosted.org/packages/5a/d1/0071da9fe5c297b218a0ad17ac78b3fde8fd4e453eabbc934186ec7c45b6/marshmallow-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "af74256b41f334be560636e72159304e", "sha256": "7c05e346dbf1f4a64bbc1c12bbed96c58a78c5614ba4ebac0793c3809254b06a" }, "downloads": -1, "filename": "marshmallow-0.7.0.tar.gz", "has_sig": false, "md5_digest": "af74256b41f334be560636e72159304e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25090, "upload_time": "2014-06-22T23:35:50", "url": "https://files.pythonhosted.org/packages/22/c8/bedb04e746965b48d8e849183fa04d2dbba16701dca0bbdc46457d6bc84f/marshmallow-0.7.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "583aef78b45849e93497a9c73d438577", "sha256": "6451d92cbbc2fd86d8680c34d4aa809839804497cb4440589f9614c26e448e51" }, "downloads": -1, "filename": "marshmallow-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "583aef78b45849e93497a9c73d438577", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 45105, "upload_time": "2014-11-16T21:57:00", "url": "https://files.pythonhosted.org/packages/c3/02/0e4f532972412ffe5ddf14f85b10e30f231d5160c15f86efece4818e1c42/marshmallow-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7af4e8988e411bd9e8db4ff726e10830", "sha256": "d40a924baee0b102291ced3f074936cdf0bacddb56ad75d205af1bae2b54e1ed" }, "downloads": -1, "filename": "marshmallow-1.0.0.tar.gz", "has_sig": false, "md5_digest": "7af4e8988e411bd9e8db4ff726e10830", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36079, "upload_time": "2014-11-16T21:56:57", "url": "https://files.pythonhosted.org/packages/be/69/0ed0e68f4e59461f051d812fdc8a3066d7246ff9264d9c3865f340102913/marshmallow-1.0.0.tar.gz" } ], "1.0.0-a": [ { "comment_text": "", "digests": { "md5": "f31823e9787c5c623561d0a77d6d6fc5", "sha256": "0412d69681620ea29d203baa781b78d5412e93e6d3345c2a069d72224c05d57d" }, "downloads": -1, "filename": "marshmallow-1.0.0_a-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f31823e9787c5c623561d0a77d6d6fc5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 43260, "upload_time": "2014-10-19T18:10:33", "url": "https://files.pythonhosted.org/packages/43/e8/a8961268bb737476a7d1a8b678e9f6bdc5d99f0a8d18abe14673d349db33/marshmallow-1.0.0_a-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fc7902c88110d10626f23895eab47872", "sha256": "f5e172461e8ddfabcd727d6af483ae0fbec9ad5a083e23b6b877df16b56b2d14" }, "downloads": -1, "filename": "marshmallow-1.0.0-a.tar.gz", "has_sig": false, "md5_digest": "fc7902c88110d10626f23895eab47872", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34149, "upload_time": "2014-10-19T18:10:30", "url": "https://files.pythonhosted.org/packages/eb/49/2ddf209e4a393fa2720c5469a465243fc9b46e41bb884581d1b8ab8a2629/marshmallow-1.0.0-a.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "6b9f0115023102e251e095f9a4a13d17", "sha256": "508d1ae4daf03791bab1bf59ae033446b157e3a9f48b6f77bc5921c04eadab7e" }, "downloads": -1, "filename": "marshmallow-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6b9f0115023102e251e095f9a4a13d17", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 45284, "upload_time": "2014-11-19T03:39:59", "url": "https://files.pythonhosted.org/packages/da/97/d97e5701db4bac702f09500867ed8aa8ec2b20a5a8b2b81c3f558ce32369/marshmallow-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "479048ca4acf9926a8e91cd0340b3e4e", "sha256": "05fa159a2c60ed058c6fc0d6c078e2cd6b56ea7282328ee0db20bcf9287dd003" }, "downloads": -1, "filename": "marshmallow-1.0.1.tar.gz", "has_sig": false, "md5_digest": "479048ca4acf9926a8e91cd0340b3e4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36287, "upload_time": "2014-11-19T03:39:56", "url": "https://files.pythonhosted.org/packages/ef/e5/7ef523e8e955d81b71fb8e8eb3519ce4c7e1180d93608d806f03f45f97d3/marshmallow-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "4ad4f3cf98f06110947e2ad629ecd007", "sha256": "d45cd27a2952b7a43ace73e9b4518e2497353edf0d51b4256d0cbad88b68e47d" }, "downloads": -1, "filename": "marshmallow-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4ad4f3cf98f06110947e2ad629ecd007", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 47421, "upload_time": "2014-12-03T03:17:22", "url": "https://files.pythonhosted.org/packages/31/a4/73e8471b649a3aa906ce790e5f9a2e434e7582d30bc32c7e83553cd8be7d/marshmallow-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fd290da0acd22e9dbc1dff0a5de157c6", "sha256": "ae88b6ef4fc18877792316419d6f0edff8e9bd13f7d0874c59ce4ca8f9c6a158" }, "downloads": -1, "filename": "marshmallow-1.1.0.tar.gz", "has_sig": false, "md5_digest": "fd290da0acd22e9dbc1dff0a5de157c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38403, "upload_time": "2014-12-03T03:17:20", "url": "https://files.pythonhosted.org/packages/de/08/8ec6e4ac971255e8681f6fd0c6b66aa8dd23a986f0b735ddcacb5fc52782/marshmallow-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "f97e47a94d5c0176a067c21059b6112d", "sha256": "4ddc7f83964596521910493561b9290a3a2c9d697f759fdc8293a883ac391f66" }, "downloads": -1, "filename": "marshmallow-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f97e47a94d5c0176a067c21059b6112d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 42470, "upload_time": "2014-12-23T00:02:17", "url": "https://files.pythonhosted.org/packages/c6/aa/fa48846d4bd59682f6323ce5214134863ebcfadb9a1763c0660265fbfc46/marshmallow-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e00b0856e9dfeb70e36213c87aac903", "sha256": "6c2bfc60d16e8bafd6bfd981e61ef36937651810c835626dfb94e365dc48d3e2" }, "downloads": -1, "filename": "marshmallow-1.2.0.tar.gz", "has_sig": false, "md5_digest": "0e00b0856e9dfeb70e36213c87aac903", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37873, "upload_time": "2014-12-23T00:02:15", "url": "https://files.pythonhosted.org/packages/07/37/a1814c0d1f2e330c0079b5870c216f9d2de042a900457a731e45b75d45c8/marshmallow-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "240c4cabd1b2f809a5179030a8974fcf", "sha256": "9510833129927a211e96c16865a90294cf5be4dfc4b055d74dcbc86894ee9c1b" }, "downloads": -1, "filename": "marshmallow-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "240c4cabd1b2f809a5179030a8974fcf", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 42575, "upload_time": "2015-01-11T21:11:02", "url": "https://files.pythonhosted.org/packages/2a/bf/e8aeb280e6f5f9f8be8b143586d1aa73ff93b4cf77d0dfb62be4aeb2b015/marshmallow-1.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0946cc1c7c08ce8cdaef9ed9d206228e", "sha256": "d05523a3b89b21d639e24118e93c3ad677ea37dac1996c89c4cdeefe5ce9c518" }, "downloads": -1, "filename": "marshmallow-1.2.1.tar.gz", "has_sig": false, "md5_digest": "0946cc1c7c08ce8cdaef9ed9d206228e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38203, "upload_time": "2015-01-11T21:10:59", "url": "https://files.pythonhosted.org/packages/60/94/2d4e034e088db8339995d2b47c99426069b851a069646c35c3084d06b6e7/marshmallow-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "890d5328ed8a95bb132cc17e57693721", "sha256": "ea1258fe66f12e80e699f68f5f57f74b3c627e56653d95468d9ed0dbe8b83855" }, "downloads": -1, "filename": "marshmallow-1.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "890d5328ed8a95bb132cc17e57693721", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 42641, "upload_time": "2015-02-23T13:10:59", "url": "https://files.pythonhosted.org/packages/88/69/bb599baa3a97b5f68d62eba8b1bc2553776e4a408f53cd5eb93f4c19f218/marshmallow-1.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6f5322e868c9c40de3715216577b9da4", "sha256": "65ff2b777d225d022213738616e61475943077c0eb7e31bcff1971e9c34b0401" }, "downloads": -1, "filename": "marshmallow-1.2.2.tar.gz", "has_sig": false, "md5_digest": "6f5322e868c9c40de3715216577b9da4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38353, "upload_time": "2015-02-23T13:10:56", "url": "https://files.pythonhosted.org/packages/ce/54/00d46cc62e1f192d26350a576b9cd81f1bd4f29af0577b2c8b3541e5ae68/marshmallow-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "bb6259e218c3c248c79f9466042109b5", "sha256": "df3233c228f241847cb90a3e0b6df5e37fb4254d51eb857fefd441c770daa35a" }, "downloads": -1, "filename": "marshmallow-1.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bb6259e218c3c248c79f9466042109b5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 42780, "upload_time": "2015-03-16T01:36:30", "url": "https://files.pythonhosted.org/packages/4b/e3/6d40ae789b1dbf356455caf5f0842babea821e10c7a8c50a912f5d1d3a4a/marshmallow-1.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d95f7857aaf1cead4355c01075f52674", "sha256": "b353f692cc04527601d01dfc3c1271864771421b231d15ac64144d8593b2da37" }, "downloads": -1, "filename": "marshmallow-1.2.3.tar.gz", "has_sig": false, "md5_digest": "d95f7857aaf1cead4355c01075f52674", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38538, "upload_time": "2015-03-16T01:36:28", "url": "https://files.pythonhosted.org/packages/ee/41/e8b1852e04b1b5240679a6329f5573a275bc1cc98a3c12f2831445ae6bd3/marshmallow-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "fb62220e069527382cf956df3559ae3f", "sha256": "71ba68d2c3f3559cbd328923f948a4fbc45612d398e23f531f48b6edf5422adc" }, "downloads": -1, "filename": "marshmallow-1.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fb62220e069527382cf956df3559ae3f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 42747, "upload_time": "2015-03-22T20:17:20", "url": "https://files.pythonhosted.org/packages/44/f6/820ca42e0d76b7a7599b51299162ca464cc24a24f8bf2904fdb81786c0e5/marshmallow-1.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "da937af5f90097d1f5b8e9e632080e2a", "sha256": "d0e7cf72a28a7ce42f812332399473fe19567bca28688c75c689c0b034bc5eab" }, "downloads": -1, "filename": "marshmallow-1.2.4.tar.gz", "has_sig": false, "md5_digest": "da937af5f90097d1f5b8e9e632080e2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38599, "upload_time": "2015-03-22T20:17:17", "url": "https://files.pythonhosted.org/packages/e1/1c/0fa9542da05f9ebc7ae90f4b616f127b0a41d2598561227d66ddb8d064aa/marshmallow-1.2.4.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "dec249f06c870bbda05f9e670d129759", "sha256": "49b56d4172a21ac2b669b635e2c39814892aed7383e109129d47de4776b85203" }, "downloads": -1, "filename": "marshmallow-1.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dec249f06c870bbda05f9e670d129759", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 42784, "upload_time": "2015-04-25T19:20:33", "url": "https://files.pythonhosted.org/packages/2a/69/7cb9fdbb11aaef62ec497710ae164eaa7844e61aa43d847509ec832222e9/marshmallow-1.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7b3575dcce03c8c27c3ad599a1afd720", "sha256": "fb69a7c9aacc91c61e8be5da83cc8f722b83822e703d096a8de950006a84d8d7" }, "downloads": -1, "filename": "marshmallow-1.2.5.tar.gz", "has_sig": false, "md5_digest": "7b3575dcce03c8c27c3ad599a1afd720", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38701, "upload_time": "2015-04-25T19:20:30", "url": "https://files.pythonhosted.org/packages/53/84/7541419848d73950e382e9bb58012479ca27f434c3e2cece25820258afd8/marshmallow-1.2.5.tar.gz" } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "fe0a0a5a930c962aeddae1a71aabb01c", "sha256": "ba48c1908aa8171816956ba4d5a890c837dfebf72f99ba4f37603a6e668f3425" }, "downloads": -1, "filename": "marshmallow-1.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fe0a0a5a930c962aeddae1a71aabb01c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 47524, "upload_time": "2015-05-03T17:50:12", "url": "https://files.pythonhosted.org/packages/81/f5/c4aad4b34b54099dfe8295ec2a455c39087c0d84321db4ec9c3b79943440/marshmallow-1.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0debe1d2153d727e9b3aee62ba2417ad", "sha256": "60d6182c49e001ad921f1a132a5b7f8df0570905e72f30783dfecbcbe9ad8189" }, "downloads": -1, "filename": "marshmallow-1.2.6.tar.gz", "has_sig": false, "md5_digest": "0debe1d2153d727e9b3aee62ba2417ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38827, "upload_time": "2015-05-03T17:50:09", "url": "https://files.pythonhosted.org/packages/20/28/059de418200eb6edd1ec455b93295eac4e9b1c9ac992d1d44da0bef7363d/marshmallow-1.2.6.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "85f566182bf8a78024074b585f50b014", "sha256": "d3911d0ac7f74165d321d66dcf330aa0c1ade920516e895e00b0adb0058e15c1" }, "downloads": -1, "filename": "marshmallow-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "85f566182bf8a78024074b585f50b014", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44624, "upload_time": "2015-09-25T12:34:52", "url": "https://files.pythonhosted.org/packages/6c/de/1ce124edcb9207f6ea1a23fb04b5088dd0215562dd357cc0e8d15da9bd28/marshmallow-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4cb3ccc9d23f236a557058fa3c7d36af", "sha256": "5d51bf0ae7f6ac8235a7445955707a37669ebb20166efd6d0729ccb44476ee78" }, "downloads": -1, "filename": "marshmallow-2.0.0.tar.gz", "has_sig": false, "md5_digest": "4cb3ccc9d23f236a557058fa3c7d36af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126082, "upload_time": "2015-09-25T12:34:55", "url": "https://files.pythonhosted.org/packages/2b/cd/e24622e0ad98868042aeb70c281eb08f5dbc41f663aca631570667d145ea/marshmallow-2.0.0.tar.gz" } ], "2.0.0a1": [ { "comment_text": "", "digests": { "md5": "504e6f5f4035924187b57309cbe30131", "sha256": "4b9be507127695189ea5be97fb002e256563439078fca7149f956baa98925731" }, "downloads": -1, "filename": "marshmallow-2.0.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "504e6f5f4035924187b57309cbe30131", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 47801, "upload_time": "2015-04-25T19:45:27", "url": "https://files.pythonhosted.org/packages/75/12/99993e81ebf97ea65662000f21d5e21177be700def557ffbadad64ab99d5/marshmallow-2.0.0a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5218296054a28d68de40a61a71b355a4", "sha256": "003e080899fc1318d04e09c7082c79fe3ef3e378456f7703c3d643a80194087b" }, "downloads": -1, "filename": "marshmallow-2.0.0a1.tar.gz", "has_sig": false, "md5_digest": "5218296054a28d68de40a61a71b355a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43662, "upload_time": "2015-04-25T19:45:24", "url": "https://files.pythonhosted.org/packages/b1/ef/a6bd9d2fe6b5247873941da983e9bd6f5c513d96bd945622911f96b2ba44/marshmallow-2.0.0a1.tar.gz" } ], "2.0.0b1": [ { "comment_text": "", "digests": { "md5": "4e244d7d98dd680c2c43aceefcb649c4", "sha256": "053544b6854970be32043d53bfc648d1bcd0d6b5cd6cd966af208b59a71ccf8c" }, "downloads": -1, "filename": "marshmallow-2.0.0b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4e244d7d98dd680c2c43aceefcb649c4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 48293, "upload_time": "2015-04-26T16:23:41", "url": "https://files.pythonhosted.org/packages/d1/69/9adf6ab6f1795985b86de21c9e7c0779db4a767d24d985abae00fd4dacd8/marshmallow-2.0.0b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b03b95c51fb1cd3d3c13bb825d02894", "sha256": "70cfe6db8ea6be3c2dd05c9e0660184aa36729daf5a9c60fecd4591c12f56c46" }, "downloads": -1, "filename": "marshmallow-2.0.0b1.tar.gz", "has_sig": false, "md5_digest": "8b03b95c51fb1cd3d3c13bb825d02894", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44318, "upload_time": "2015-04-26T16:23:38", "url": "https://files.pythonhosted.org/packages/ab/33/408c8fc9f09cffe0a6169c58d3db7cfc66dba237618161e1fa0e95bd6ffe/marshmallow-2.0.0b1.tar.gz" } ], "2.0.0b2": [ { "comment_text": "", "digests": { "md5": "2c097ecf27a8a4e047017a3ee753eaa2", "sha256": "88f12ddf889ef0a081cd78bb1e924826677dced90f8992dae3653c2c27386d39" }, "downloads": -1, "filename": "marshmallow-2.0.0b2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2c097ecf27a8a4e047017a3ee753eaa2", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 48838, "upload_time": "2015-05-03T17:57:20", "url": "https://files.pythonhosted.org/packages/23/57/8caf6d898f32e7e4f933695793043bfa2d8f0334bf40c1bffd952b5e5368/marshmallow-2.0.0b2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b958adde7fe431a43de1c38d63cf6993", "sha256": "c4bb1b8569bef322fea40658e523a47d559488e615f5db5789f520564851eb46" }, "downloads": -1, "filename": "marshmallow-2.0.0b2.tar.gz", "has_sig": false, "md5_digest": "b958adde7fe431a43de1c38d63cf6993", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44986, "upload_time": "2015-05-03T17:57:17", "url": "https://files.pythonhosted.org/packages/c6/1d/73293ec4e63c42d9e8157ee5160330df197f7d8871dee09ec21110ab266e/marshmallow-2.0.0b2.tar.gz" } ], "2.0.0b3": [ { "comment_text": "", "digests": { "md5": "5a03abd03290316e90793a1800ad2964", "sha256": "a237a38334c8a6dfb42ff799c9ca7b080208148a62fe5a715d27d90ea04a8c68" }, "downloads": -1, "filename": "marshmallow-2.0.0b3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5a03abd03290316e90793a1800ad2964", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 49339, "upload_time": "2015-06-14T19:07:31", "url": "https://files.pythonhosted.org/packages/e2/e5/f63f3739f91fa1afbefec2a87ebcf85c90c9d08914f9a9518ae32d54a6f0/marshmallow-2.0.0b3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1fd506d5368824943636e01b9eb14061", "sha256": "5ff72af36963998f7460e2fea81ebc216d674afee04af4a4c8059c61058736e7" }, "downloads": -1, "filename": "marshmallow-2.0.0b3.tar.gz", "has_sig": false, "md5_digest": "1fd506d5368824943636e01b9eb14061", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46226, "upload_time": "2015-06-14T19:07:28", "url": "https://files.pythonhosted.org/packages/c0/3d/a5760718a92591a2fdedf04b0aaeca8eb4481e2447bc322012e81db7b0b0/marshmallow-2.0.0b3.tar.gz" } ], "2.0.0b4": [ { "comment_text": "", "digests": { "md5": "420cbf80033e442295dc80332fffcaa1", "sha256": "9e9e31c900c0a39a13cd70dad42597b73edf88fa5937fbe1d2caa6ec03a3ed68" }, "downloads": -1, "filename": "marshmallow-2.0.0b4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "420cbf80033e442295dc80332fffcaa1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 49220, "upload_time": "2015-07-08T01:49:21", "url": "https://files.pythonhosted.org/packages/42/88/c7e5c958de43871ce7d495faa080a4d667fb304995248e85dbdf519a482a/marshmallow-2.0.0b4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4cf071d22de98d4c394c1587d970e7bc", "sha256": "8afe3e80f262d8eb69ab3590fa50473736b68bf4f5b7513fa0d5b58302379159" }, "downloads": -1, "filename": "marshmallow-2.0.0b4.tar.gz", "has_sig": false, "md5_digest": "4cf071d22de98d4c394c1587d970e7bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46340, "upload_time": "2015-07-08T01:49:17", "url": "https://files.pythonhosted.org/packages/27/6d/239c8ee9a75c5b5dc4a0cfbe9176bac2e33e29e7258342041fc80a10c1e4/marshmallow-2.0.0b4.tar.gz" } ], "2.0.0b5": [ { "comment_text": "", "digests": { "md5": "088a075b894ee2caf5a37e0164959f75", "sha256": "017733520906ca33b4fa1f8ae938d9cafc4311142e3f18baec82749ff68ab228" }, "downloads": -1, "filename": "marshmallow-2.0.0b5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "088a075b894ee2caf5a37e0164959f75", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 49850, "upload_time": "2015-08-23T15:34:37", "url": "https://files.pythonhosted.org/packages/fc/72/26e134fa072e3cea832d0d926eb2042075780d9ff3b738af8771987f0ebf/marshmallow-2.0.0b5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "254171f6a81800365a56379822e68edb", "sha256": "b65e83d11c1b0bf300fc978ab2e7430bc143b7ee30b0f60e5305260b5f6cfba3" }, "downloads": -1, "filename": "marshmallow-2.0.0b5.tar.gz", "has_sig": false, "md5_digest": "254171f6a81800365a56379822e68edb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47413, "upload_time": "2015-08-23T15:34:33", "url": "https://files.pythonhosted.org/packages/26/59/7162a2187da01d15ac7bcf83461497e2ec0aaae54c55a7637e21b859a850/marshmallow-2.0.0b5.tar.gz" } ], "2.0.0rc1": [ { "comment_text": "", "digests": { "md5": "7f799b679aeed3c200511b736ef9931a", "sha256": "9fc2ae09e92a01253a64dc5eb121c059c8298e517371e751b2205b36f63c7b2f" }, "downloads": -1, "filename": "marshmallow-2.0.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7f799b679aeed3c200511b736ef9931a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 50134, "upload_time": "2015-09-14T02:31:15", "url": "https://files.pythonhosted.org/packages/ff/b6/23d27914c2c42d9997b25eda52ae83a1746c77e59233e407e7e838075cc8/marshmallow-2.0.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "119114d1a73c5ac810a04544c0816119", "sha256": "263836d1be4138c4f9bb4ca6897c260161610cfac57aac6f53b4e377793fe648" }, "downloads": -1, "filename": "marshmallow-2.0.0rc1.tar.gz", "has_sig": false, "md5_digest": "119114d1a73c5ac810a04544c0816119", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124807, "upload_time": "2015-09-14T02:31:11", "url": "https://files.pythonhosted.org/packages/9f/53/051ec4a8b960a2c41017b2c42f18229787f2a640efb8c5156df1f8dd6ea9/marshmallow-2.0.0rc1.tar.gz" } ], "2.0.0rc2": [ { "comment_text": "", "digests": { "md5": "af6458a6fd502015e4741b554fb41c5b", "sha256": "b2ec15da28eb056668e7691c91eb446b145cfa7b049fc2ba46b9826550ee5c60" }, "downloads": -1, "filename": "marshmallow-2.0.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "af6458a6fd502015e4741b554fb41c5b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45349, "upload_time": "2015-09-16T05:03:10", "url": "https://files.pythonhosted.org/packages/fd/16/1731e0b3af65ce5fe451317091c5cb038f48c39aa288bcc0273f0c302965/marshmallow-2.0.0rc2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7a9f9b05d4872913f434f621c2addf42", "sha256": "4b7f3fc65d874fe492904d4188c3e57fe63a7477d281482c00d705aed7691047" }, "downloads": -1, "filename": "marshmallow-2.0.0rc2.tar.gz", "has_sig": false, "md5_digest": "7a9f9b05d4872913f434f621c2addf42", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125716, "upload_time": "2015-09-16T05:03:14", "url": "https://files.pythonhosted.org/packages/9e/3a/f54516f04ba13c5b51a32e58105245cb0bf18187db98c231390a224b9820/marshmallow-2.0.0rc2.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "58018b403e0eb6813bfede0a341330d1", "sha256": "5643da35c466773fe78cd02e974403d3f5b8218bf8a71656692b400698f45ac7" }, "downloads": -1, "filename": "marshmallow-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "58018b403e0eb6813bfede0a341330d1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44687, "upload_time": "2015-10-01T01:51:38", "url": "https://files.pythonhosted.org/packages/d2/a4/c6d5486f823edef4db9522eca74661e4fb63a9a7f0f9e1bae80ad7d7265b/marshmallow-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "03e3a03618156ff766fec2c1c4f5267b", "sha256": "d7e98b83b552a1d3f1701577e39a6e2f79adbabd49646f85033ffcbd88b5c296" }, "downloads": -1, "filename": "marshmallow-2.1.0.tar.gz", "has_sig": false, "md5_digest": "03e3a03618156ff766fec2c1c4f5267b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126800, "upload_time": "2015-10-01T01:51:43", "url": "https://files.pythonhosted.org/packages/96/2c/6552f43e0973a5da69634daff360738cb31ff7666600997133cba6bd8cc1/marshmallow-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "23feb347a798423b76b9faf79dfe6f18", "sha256": "cce535c29d004ca2938627bbfc2fa530618352f418541c4b237574eea871dda1" }, "downloads": -1, "filename": "marshmallow-2.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "23feb347a798423b76b9faf79dfe6f18", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44701, "upload_time": "2015-10-08T00:47:20", "url": "https://files.pythonhosted.org/packages/46/84/581f4dd9ea45d788bdf093041bbd918a7bd2a5d7d41d4548135574e75722/marshmallow-2.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "841b653d4d66f795ca3a3a4e3493bde0", "sha256": "158ce9a9577b7550a8ed76245c5b22d9bde39fa7d5999f3333140949b7025ce5" }, "downloads": -1, "filename": "marshmallow-2.1.1.tar.gz", "has_sig": false, "md5_digest": "841b653d4d66f795ca3a3a4e3493bde0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127000, "upload_time": "2015-10-08T00:47:24", "url": "https://files.pythonhosted.org/packages/88/4e/977f668b4a5fa1d860e20956cf65b3a04df47998c1adb19d6a2da3786331/marshmallow-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "41de48c4b4b03f5d3a796217faccf745", "sha256": "88cb73e966808ffb87e376a1995129b38e76799d849182e9b2e90150a87332e8" }, "downloads": -1, "filename": "marshmallow-2.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "41de48c4b4b03f5d3a796217faccf745", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44735, "upload_time": "2015-10-15T00:45:10", "url": "https://files.pythonhosted.org/packages/21/d6/1026e8cb7f3bcee374a1f32976efb87b358950f1cfe10e7e3132a69900ec/marshmallow-2.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b6843a5aaffe057c6fdcb309fb9597fe", "sha256": "3c537701721164b7021d92d8cfff450ed5c1f7078c5ae3a8628bc78fece0f083" }, "downloads": -1, "filename": "marshmallow-2.1.2.tar.gz", "has_sig": false, "md5_digest": "b6843a5aaffe057c6fdcb309fb9597fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127111, "upload_time": "2015-10-15T00:45:17", "url": "https://files.pythonhosted.org/packages/29/34/7b80acc9e080ac7f7bf854925907be1df1be09f58b159d133ef55e0eb440/marshmallow-2.1.2.tar.gz" } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "bf98e9721dd852bb7bcf62193102fa5f", "sha256": "96f607150ed7126ed6b0293e823cdbba874657bb8db6d3557a4fa6ee3debabf3" }, "downloads": -1, "filename": "marshmallow-2.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bf98e9721dd852bb7bcf62193102fa5f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44848, "upload_time": "2015-10-18T22:34:28", "url": "https://files.pythonhosted.org/packages/f1/e7/3cd4c9b12e8d7092e96f0b3ca54a6be877e484326af88a3e18c8c28b935c/marshmallow-2.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "51c2a76f3eaf97af157a7d00bb093fde", "sha256": "06bf6b052ab95659031c5d59474f4f415a2184a29902e156e4d832ce0b78d3fa" }, "downloads": -1, "filename": "marshmallow-2.1.3.tar.gz", "has_sig": false, "md5_digest": "51c2a76f3eaf97af157a7d00bb093fde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127260, "upload_time": "2015-10-18T22:34:32", "url": "https://files.pythonhosted.org/packages/8c/11/fdd880906ef254e8fc3dfeeb05b1deae8e43df301e7a3a68739624810df0/marshmallow-2.1.3.tar.gz" } ], "2.10.0": [ { "comment_text": "", "digests": { "md5": "7dc16fe691b07559970316cb9a6062f2", "sha256": "0613a857ba1883ea79fe3d64440d19ecbf8a98507bb80f738f6c8185e58b48f4" }, "downloads": -1, "filename": "marshmallow-2.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7dc16fe691b07559970316cb9a6062f2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44687, "upload_time": "2016-09-05T18:17:34", "url": "https://files.pythonhosted.org/packages/6c/58/875104d881b8ad30c545c267c9bdc66cc9836d73071776738aa333408dac/marshmallow-2.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "098e4b06a5bf475378eb57145605c59e", "sha256": "4f9dc3d7afddf164e4d7ad758f5355fd8283de59b2a216cf2b0b298a27111f7c" }, "downloads": -1, "filename": "marshmallow-2.10.0.tar.gz", "has_sig": false, "md5_digest": "098e4b06a5bf475378eb57145605c59e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134456, "upload_time": "2016-09-05T18:17:37", "url": "https://files.pythonhosted.org/packages/61/10/eea202160e7d759c5f093d2e4a4b895a4b69f72ff5b1d926eb32c078a810/marshmallow-2.10.0.tar.gz" } ], "2.10.1": [ { "comment_text": "", "digests": { "md5": "077bb92557f4e0d3d7f11647056d8f19", "sha256": "fe273cb0b927b1e80a76beeb969d787e3fe03cafc6a3fe70587ba64d43349eb2" }, "downloads": -1, "filename": "marshmallow-2.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "077bb92557f4e0d3d7f11647056d8f19", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44721, "upload_time": "2016-09-15T03:38:25", "url": "https://files.pythonhosted.org/packages/61/7b/34b7a1e70dacf6c88af968fa8f52c5a43a573b7d2753ee0bfada719fc17d/marshmallow-2.10.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5e9828932e50d328ffd48c8098ce67ab", "sha256": "ee34223e65dd12d0fc964690f650da6ec9d07dfb015f3c11cd56e7b7cbba0d12" }, "downloads": -1, "filename": "marshmallow-2.10.1.tar.gz", "has_sig": false, "md5_digest": "5e9828932e50d328ffd48c8098ce67ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134991, "upload_time": "2016-09-15T03:38:27", "url": "https://files.pythonhosted.org/packages/e0/38/1f9a90d777c0597dafcf947dfd66486d6a707e5df87049921478117f242f/marshmallow-2.10.1.tar.gz" } ], "2.10.2": [ { "comment_text": "", "digests": { "md5": "7ff27c2fab9340153073d4e3aa8ca776", "sha256": "e184bf04d8743f945224b64f3d7e4bdbf27767cc32278de26db424332e379b9c" }, "downloads": -1, "filename": "marshmallow-2.10.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7ff27c2fab9340153073d4e3aa8ca776", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44791, "upload_time": "2016-09-25T16:51:55", "url": "https://files.pythonhosted.org/packages/54/ce/39256743e138f09aac3dd248ba3129a763b5704ccc8ceebf037547011d85/marshmallow-2.10.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1f1a4194e8faa62fc8c0282993e6787f", "sha256": "0a350d4290c5667d50daecb6c209b9913611484e5182d5a2999c354ce99b2c63" }, "downloads": -1, "filename": "marshmallow-2.10.2.tar.gz", "has_sig": false, "md5_digest": "1f1a4194e8faa62fc8c0282993e6787f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135522, "upload_time": "2016-09-25T16:51:58", "url": "https://files.pythonhosted.org/packages/58/10/ea7e89b55ce9e61fb127a836f33b54200559585b47f12160c8dee371a9a6/marshmallow-2.10.2.tar.gz" } ], "2.10.3": [ { "comment_text": "", "digests": { "md5": "b23ccfebbd430e30c7a7c7026c5681fb", "sha256": "ea863e01a415de6032b0f0c086f4c65d60f4ba804ea8f1ef831b507987b9238d" }, "downloads": -1, "filename": "marshmallow-2.10.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b23ccfebbd430e30c7a7c7026c5681fb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44809, "upload_time": "2016-10-02T19:04:52", "url": "https://files.pythonhosted.org/packages/92/e2/4e345844206c0770cfc5c630b883fee8304c748a84f7b3544eda57547f07/marshmallow-2.10.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1388ad963ea6cb6b8ca654a349876f8d", "sha256": "eff4eca3be23e934f0fbef48c96fdf5b9497552b2d58ebd0f212a2dff3a9e692" }, "downloads": -1, "filename": "marshmallow-2.10.3.tar.gz", "has_sig": false, "md5_digest": "1388ad963ea6cb6b8ca654a349876f8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135665, "upload_time": "2016-10-02T19:04:55", "url": "https://files.pythonhosted.org/packages/e2/dc/93c86583ca3abfeba4e8ada9c1dbeb4159cfbf7cbb1da255561bb6fe2555/marshmallow-2.10.3.tar.gz" } ], "2.10.4": [ { "comment_text": "", "digests": { "md5": "4d81c976e9180d772d844845ba7c1ae7", "sha256": "999e40a53d08d7b54c3d86462df2806366847262944823c8e847505b75c0d889" }, "downloads": -1, "filename": "marshmallow-2.10.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4d81c976e9180d772d844845ba7c1ae7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45033, "upload_time": "2016-11-18T13:31:05", "url": "https://files.pythonhosted.org/packages/a0/c8/7823e00013c5ef77df9838b74f855c1645642fd7e6d01f2fade382698327/marshmallow-2.10.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f4a5d7b0b487741871a3dd8e19921f60", "sha256": "338d2d34bf6de771a05e67556093d4fe12f023a9a253bf180c11893f276dd7ee" }, "downloads": -1, "filename": "marshmallow-2.10.4.tar.gz", "has_sig": false, "md5_digest": "f4a5d7b0b487741871a3dd8e19921f60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135875, "upload_time": "2016-11-18T13:31:07", "url": "https://files.pythonhosted.org/packages/6a/05/df86959e68ca1ef543306d11a85a9f73cb0976480138cc1bf37881b6b58b/marshmallow-2.10.4.tar.gz" } ], "2.10.5": [ { "comment_text": "", "digests": { "md5": "8452cb4dec2d974a4e8969835a3b3860", "sha256": "76722a4312affd9ed60e08f7e7b56dd37ee7bfbf43da03b86131a30a655afe37" }, "downloads": -1, "filename": "marshmallow-2.10.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8452cb4dec2d974a4e8969835a3b3860", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45035, "upload_time": "2016-12-20T02:43:41", "url": "https://files.pythonhosted.org/packages/cc/61/ba694f527bc77606b2975e9621f7b28240e899e61e59bce27a3f1b600df2/marshmallow-2.10.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a323886bf9fc0214d89b789a7eb9ddd3", "sha256": "5c44ad7ab7f326b9b7a9c6189ad39b21f399aefac9dbaa5f76317ad2dc5b2d50" }, "downloads": -1, "filename": "marshmallow-2.10.5.tar.gz", "has_sig": false, "md5_digest": "a323886bf9fc0214d89b789a7eb9ddd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 136199, "upload_time": "2016-12-20T02:43:43", "url": "https://files.pythonhosted.org/packages/9e/f7/78980fe7673a1bb28cbf18de4417a8e4d1e8c26ead6aebd282523adee09f/marshmallow-2.10.5.tar.gz" } ], "2.11.0": [ { "comment_text": "", "digests": { "md5": "9e70a504a4216ccf2237ca720380521e", "sha256": "a28f65477df036ce79f6b009a3a0627b28e4e9d64e7c6926bf0f5d7e5a0a2a18" }, "downloads": -1, "filename": "marshmallow-2.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9e70a504a4216ccf2237ca720380521e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45046, "upload_time": "2017-01-08T18:32:55", "url": "https://files.pythonhosted.org/packages/f7/30/59fa65b738db49b82192451a09827e89ae705dbc632473bba098c58e0396/marshmallow-2.11.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e8cc067c46d30641e0a465669516a3f9", "sha256": "dea77ac77163bf343e112949d93ecd774dba8aa0820abdd9dbe2ec34dab8b0be" }, "downloads": -1, "filename": "marshmallow-2.11.0.tar.gz", "has_sig": false, "md5_digest": "e8cc067c46d30641e0a465669516a3f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 136440, "upload_time": "2017-01-08T18:33:00", "url": "https://files.pythonhosted.org/packages/94/92/8dbbd3b5879bfb87abcd3d0682ab0c345186a5b27b4c7181cdc1b2148f8f/marshmallow-2.11.0.tar.gz" } ], "2.11.1": [ { "comment_text": "", "digests": { "md5": "514bb8ac2bc1ea61c953ae99aeca1cb8", "sha256": "8578eba89668adbfb4260fae7d2b568c0d718d9144269692c05541bee760608b" }, "downloads": -1, "filename": "marshmallow-2.11.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "514bb8ac2bc1ea61c953ae99aeca1cb8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45051, "upload_time": "2017-01-08T21:24:18", "url": "https://files.pythonhosted.org/packages/51/52/ebe69c46ca0f58644a4e862734bd7a675871a20863e5af92614a41a494c2/marshmallow-2.11.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d28a9f8e94a6d876fda6e132b66c63ad", "sha256": "c580bd9ad017bba76414739eac1d98ef94daa41e37306b0c6aebcd421e997857" }, "downloads": -1, "filename": "marshmallow-2.11.1.tar.gz", "has_sig": false, "md5_digest": "d28a9f8e94a6d876fda6e132b66c63ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 136633, "upload_time": "2017-01-08T21:24:25", "url": "https://files.pythonhosted.org/packages/9c/9a/80d8fdc567cf92f24f8a4777a9aeb6cf318d086a3490bdcfff54bd0b0fd4/marshmallow-2.11.1.tar.gz" } ], "2.12.0": [ { "comment_text": "", "digests": { "md5": "9b9302728ae49f49fa51e995f0393670", "sha256": "5aa73db7afe9ce0c3228fe5f34523c52267e3433b8a58a04df980df9ac5af07f" }, "downloads": -1, "filename": "marshmallow-2.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9b9302728ae49f49fa51e995f0393670", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45194, "upload_time": "2017-01-22T22:47:30", "url": "https://files.pythonhosted.org/packages/23/0c/2d648126390e9b927a4fdf45161390cfe8590da52f0bbc80871d434c0d14/marshmallow-2.12.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e0eccd7bf75ca42f712581c651361f0b", "sha256": "3e717e7a807232b871114e61d9ca3c9c756a44cd7162135a780a250036690eec" }, "downloads": -1, "filename": "marshmallow-2.12.0.tar.gz", "has_sig": false, "md5_digest": "e0eccd7bf75ca42f712581c651361f0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137280, "upload_time": "2017-01-22T22:47:31", "url": "https://files.pythonhosted.org/packages/0e/f3/702e09a72c4d7343bbd5f2793068db5fe7dd1dc06d55b69c3b98c7ecb231/marshmallow-2.12.0.tar.gz" } ], "2.12.1": [ { "comment_text": "", "digests": { "md5": "c6c090f792c977169ee46808a9d94d16", "sha256": "abab5d16dfad4c957358eb53461acc25b7cc2d5697827129f9b1b106ed09111e" }, "downloads": -1, "filename": "marshmallow-2.12.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c6c090f792c977169ee46808a9d94d16", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45198, "upload_time": "2017-01-24T02:24:00", "url": "https://files.pythonhosted.org/packages/31/7c/ca27c47f9da3232c9a3d5696bca3dbf7c5856aa0177b75722525b33b33fc/marshmallow-2.12.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7c57ccaa78897ca38e307fd2758b3806", "sha256": "f164dd0751fc50a111301124d52bb0401a6e5c09c644edb22d84a74b14131345" }, "downloads": -1, "filename": "marshmallow-2.12.1.tar.gz", "has_sig": false, "md5_digest": "7c57ccaa78897ca38e307fd2758b3806", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137430, "upload_time": "2017-01-24T02:24:01", "url": "https://files.pythonhosted.org/packages/92/b2/858ae104979055200daac3c4265b9f6a6f2ed5dbdea0e14161577e60d924/marshmallow-2.12.1.tar.gz" } ], "2.12.2": [ { "comment_text": "", "digests": { "md5": "af028dfe000fcb17c3a8f4b2d1b05a04", "sha256": "3eea5f0b224a412911af298c428ca145b7db6a5c9184bbe65dc4c216c33654b6" }, "downloads": -1, "filename": "marshmallow-2.12.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "af028dfe000fcb17c3a8f4b2d1b05a04", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45226, "upload_time": "2017-01-30T05:09:26", "url": "https://files.pythonhosted.org/packages/5e/38/87ee70e1c6124a13027fe2ecf2e6f15f76e4fd240566c8dda6bac6958caf/marshmallow-2.12.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f429986359d7ade655b60c890477162f", "sha256": "c4f7218683855cafb3f9907102d9dd702ba1002f56ac76ef2fac740b66fedf4c" }, "downloads": -1, "filename": "marshmallow-2.12.2.tar.gz", "has_sig": false, "md5_digest": "f429986359d7ade655b60c890477162f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137651, "upload_time": "2017-01-30T05:09:28", "url": "https://files.pythonhosted.org/packages/80/34/6f2ce90490a8d12564aa382a4af982bcc456ebf071d8c96ca377d86d32c8/marshmallow-2.12.2.tar.gz" } ], "2.13.0": [ { "comment_text": "", "digests": { "md5": "408e0aa7ce3b95b94f18215d74a6b8ab", "sha256": "0f1822fb98b09b6d523f9c5d6d53f5e62793a962e96a81ea8b776e634ff0fa3a" }, "downloads": -1, "filename": "marshmallow-2.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "408e0aa7ce3b95b94f18215d74a6b8ab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45310, "upload_time": "2017-02-18T17:59:04", "url": "https://files.pythonhosted.org/packages/c0/0f/002c605e0e38a9fd6dab89ba0b8160396153a9853084b383265156017ffe/marshmallow-2.13.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "681cdcffaa4289adb86ac2d88d3aed89", "sha256": "7e018658622fc7957fe0fefc2c6055db08b31906fa4ba5ca542b83f5c2a4260d" }, "downloads": -1, "filename": "marshmallow-2.13.0.tar.gz", "has_sig": false, "md5_digest": "681cdcffaa4289adb86ac2d88d3aed89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137830, "upload_time": "2017-02-18T17:59:06", "url": "https://files.pythonhosted.org/packages/e7/85/053c968d5e9a3b940f3e17e8e701649496660de8bfe20073d79528b1c0f5/marshmallow-2.13.0.tar.gz" } ], "2.13.1": [ { "comment_text": "", "digests": { "md5": "fb55b7c93590791944718b7dfee49504", "sha256": "5f7a9ab5d5f5583fe4e071fde98a472b04fd0df868ead83012f1a3e0e54d7cdf" }, "downloads": -1, "filename": "marshmallow-2.13.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fb55b7c93590791944718b7dfee49504", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45313, "upload_time": "2017-03-04T17:27:53", "url": "https://files.pythonhosted.org/packages/bd/0a/271d8c037b0957864d3b074fdf3d1374415d0d68803c3830edbca9689a6c/marshmallow-2.13.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "022f61bc48c20117165e032eedfe453a", "sha256": "cf7e35ddfe8b18f8de3058fffc621921c79bb07455ad3084bfbf64caca766711" }, "downloads": -1, "filename": "marshmallow-2.13.1.tar.gz", "has_sig": false, "md5_digest": "022f61bc48c20117165e032eedfe453a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137908, "upload_time": "2017-03-04T17:27:54", "url": "https://files.pythonhosted.org/packages/a1/d3/a3b3ca2703b622f1670f883ed029be67f2215b660c6c8076261c04fe53a3/marshmallow-2.13.1.tar.gz" } ], "2.13.2": [ { "comment_text": "", "digests": { "md5": "86817c5a7e1bbe8dfe51af55e6b89cf0", "sha256": "9e65209b56a95d10962564a3045ab47c2d5ba4484e8d56ceec8ddaf68f420365" }, "downloads": -1, "filename": "marshmallow-2.13.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "86817c5a7e1bbe8dfe51af55e6b89cf0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45318, "upload_time": "2017-03-10T04:51:12", "url": "https://files.pythonhosted.org/packages/47/f3/5b90d4a74f36a800a8aa3e4ff058160166f5b9517cf24b08eb3d465fe3e3/marshmallow-2.13.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e314fd56772bcf4048e16fb52894b21d", "sha256": "6ac09c20d54b4a3927a2047df721dd2e1d778d052848aa0ee978c40f7adc96f2" }, "downloads": -1, "filename": "marshmallow-2.13.2.tar.gz", "has_sig": false, "md5_digest": "e314fd56772bcf4048e16fb52894b21d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 138475, "upload_time": "2017-03-10T04:51:14", "url": "https://files.pythonhosted.org/packages/28/a9/82b045a35414b4fb70420b0cc46d2cc10befa5425893481c5860d109c701/marshmallow-2.13.2.tar.gz" } ], "2.13.3": [ { "comment_text": "", "digests": { "md5": "f05796867da69428dda8adc5cc1f935d", "sha256": "e48cf450dd548f778a836563e2779d08b115e329fe7316a275de4ba600c377c7" }, "downloads": -1, "filename": "marshmallow-2.13.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f05796867da69428dda8adc5cc1f935d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45338, "upload_time": "2017-03-11T16:40:22", "url": "https://files.pythonhosted.org/packages/ab/f0/ecea6637b066e7f3d54b99b1b973d9aec6f472ebf076f3da14d24d721c49/marshmallow-2.13.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "58f51d307bbba640c2f53d8b962b7c76", "sha256": "41b07838d99166cfef90c0382b5b7ffc52a00e16dd3ab7d03be9438def28f424" }, "downloads": -1, "filename": "marshmallow-2.13.3.tar.gz", "has_sig": false, "md5_digest": "58f51d307bbba640c2f53d8b962b7c76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 138614, "upload_time": "2017-03-11T16:40:23", "url": "https://files.pythonhosted.org/packages/e6/f7/3c77f36c1768c235ce1c8940e6b61f16ae770a58bf16c006fc430a82ec3b/marshmallow-2.13.3.tar.gz" } ], "2.13.4": [ { "comment_text": "", "digests": { "md5": "1434e96de0e718a1f78989904c8a56a0", "sha256": "d88c8d25f636377c00ae85dda7030ff6f7553a9aec7dcd29094126c05b82b36b" }, "downloads": -1, "filename": "marshmallow-2.13.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1434e96de0e718a1f78989904c8a56a0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45608, "upload_time": "2017-03-20T01:21:56", "url": "https://files.pythonhosted.org/packages/94/a3/cb6315e56ed827bac84029a3558f1c42249cc36b355d3435f68181059e7b/marshmallow-2.13.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6e696588796fc07b5af820b287341d59", "sha256": "670da20927ff375db05e14601f22a08d52bf35df2c6b0101d840f42dc6c80e8f" }, "downloads": -1, "filename": "marshmallow-2.13.4.tar.gz", "has_sig": false, "md5_digest": "6e696588796fc07b5af820b287341d59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139071, "upload_time": "2017-03-20T01:21:58", "url": "https://files.pythonhosted.org/packages/ea/3a/4d08a08198c07845560b38b43429bd03192c326fc0d22fd5976a26c645d4/marshmallow-2.13.4.tar.gz" } ], "2.13.5": [ { "comment_text": "", "digests": { "md5": "3dc33b235c569e15dd45d5d51bfd32ee", "sha256": "f16c8959ee7a1dbdb794d2bc171aeb2c3d6105a32318b5128e95ae538dca395b" }, "downloads": -1, "filename": "marshmallow-2.13.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3dc33b235c569e15dd45d5d51bfd32ee", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45764, "upload_time": "2017-04-13T01:12:54", "url": "https://files.pythonhosted.org/packages/91/17/35f5c96b096eb5fd579839cfef559715b6100bfa3c7a3569505a57eecaef/marshmallow-2.13.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "24bc372cf1e6a6957714e17994aa3267", "sha256": "2f72131c0d01079b2f306d0ffe1e59b2ef42a3b247f8d87a283a2abb67fb1911" }, "downloads": -1, "filename": "marshmallow-2.13.5.tar.gz", "has_sig": false, "md5_digest": "24bc372cf1e6a6957714e17994aa3267", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139240, "upload_time": "2017-04-13T01:12:56", "url": "https://files.pythonhosted.org/packages/12/6e/a6cb97543e1885719043026d281ec7335233d89ac5ca8f42909ba4a81472/marshmallow-2.13.5.tar.gz" } ], "2.13.6": [ { "comment_text": "", "digests": { "md5": "5fc02040a0d3db52a9666d6c4fb55dfe", "sha256": "9f95c0d9ca063310a96134b55b12edfc3a1d963faa7b320e0d02352d11e0fecf" }, "downloads": -1, "filename": "marshmallow-2.13.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5fc02040a0d3db52a9666d6c4fb55dfe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45776, "upload_time": "2017-08-16T12:36:02", "url": "https://files.pythonhosted.org/packages/d9/c8/ca1b28ff43640341f1436bd9296d497a365f2299d358e15ebd32d07ba914/marshmallow-2.13.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc2287e53aade035b39d0abad460a0af", "sha256": "e3e83f11cade65fc78482a7620f01f82080f032b5fb51756e396635ebc711c75" }, "downloads": -1, "filename": "marshmallow-2.13.6.tar.gz", "has_sig": false, "md5_digest": "cc2287e53aade035b39d0abad460a0af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 138739, "upload_time": "2017-08-16T12:36:03", "url": "https://files.pythonhosted.org/packages/4c/01/32c42e43b9170de1e2cfd6da66211fb96cc98dc77a1f4a61574b2103f0ea/marshmallow-2.13.6.tar.gz" } ], "2.14.0": [ { "comment_text": "", "digests": { "md5": "002db722b7c18428a466091afbfb9425", "sha256": "3f2b795b9b0db24f92d7e2dcaa5c1dfef4a08312a0e5c738386e7aa04ec357c1" }, "downloads": -1, "filename": "marshmallow-2.14.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "002db722b7c18428a466091afbfb9425", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45993, "upload_time": "2017-10-23T23:21:55", "url": "https://files.pythonhosted.org/packages/2d/8f/a74d08f712b6a668b107e4b522023b94abfa5a1cfefe3a1828606becd800/marshmallow-2.14.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "de5927d712c945afbe2684af09da8cc2", "sha256": "09943a460026b9a61c3f4cedd0e5ccfed7cfce3271debd19e3f97df561088718" }, "downloads": -1, "filename": "marshmallow-2.14.0.tar.gz", "has_sig": false, "md5_digest": "de5927d712c945afbe2684af09da8cc2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139045, "upload_time": "2017-10-23T23:21:57", "url": "https://files.pythonhosted.org/packages/7c/37/9a20a08093550ba39a96ce2143be662ae149641d2e1ed4ca4c00ac2bbd53/marshmallow-2.14.0.tar.gz" } ], "2.15.0": [ { "comment_text": "", "digests": { "md5": "51ecc2904c4ac046c1bcd2ffc13f9db7", "sha256": "8740ada95f47fa19f905772aa4932dc5512226a90c30da5672d6d6bf3dd791a7" }, "downloads": -1, "filename": "marshmallow-2.15.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "51ecc2904c4ac046c1bcd2ffc13f9db7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 46027, "upload_time": "2017-12-02T23:14:52", "url": "https://files.pythonhosted.org/packages/d0/bf/e6a2cf591f33613fdd2ba3f017f4c9d8f6a553de22753362b420d07e7eb0/marshmallow-2.15.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3f5bd77a6df1f3c9cc8d5c80e11876da", "sha256": "d3f31fe7be2106b1d783cbd0765ef4e1c6615505514695f33082805f929dd584" }, "downloads": -1, "filename": "marshmallow-2.15.0.tar.gz", "has_sig": false, "md5_digest": "3f5bd77a6df1f3c9cc8d5c80e11876da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139263, "upload_time": "2017-12-02T23:14:54", "url": "https://files.pythonhosted.org/packages/dc/34/b99d68c78378783c96254cebdf82b6ffa887a1f0e955ec5362eff2f1b2c2/marshmallow-2.15.0.tar.gz" } ], "2.15.1": [ { "comment_text": "", "digests": { "md5": "6ff6e2b4c93c217271dfcc1b74440f5d", "sha256": "a3fe4bc61c4f6902b5cc95bd34cd0803e2a09ae0ea6bf09eb8f491acebe6934c" }, "downloads": -1, "filename": "marshmallow-2.15.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6ff6e2b4c93c217271dfcc1b74440f5d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43973, "upload_time": "2018-04-26T02:14:27", "url": "https://files.pythonhosted.org/packages/55/9a/b9c3e87f6fa124bacff09ce2848abd9a2cd11e8710adddaba8d915d2e2ad/marshmallow-2.15.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fb3cac2c63528eaad5da1a9c98b421c4", "sha256": "b73361eab812af97eaf8e8691333a1096787968450051d132c8b9fb90aa1db5a" }, "downloads": -1, "filename": "marshmallow-2.15.1.tar.gz", "has_sig": false, "md5_digest": "fb3cac2c63528eaad5da1a9c98b421c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144042, "upload_time": "2018-04-26T02:14:28", "url": "https://files.pythonhosted.org/packages/09/bd/c5788ffd89aa447810616fd957e4d60510fbd44302034502bd98c352d426/marshmallow-2.15.1.tar.gz" } ], "2.15.2": [ { "comment_text": "", "digests": { "md5": "5ebd78629ab85d82daa13437e7cd7ba6", "sha256": "0466c523c00bd6f1dcb6523cec016e20ffa9738d5abfaf618cd6b1142b9dc766" }, "downloads": -1, "filename": "marshmallow-2.15.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5ebd78629ab85d82daa13437e7cd7ba6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43959, "upload_time": "2018-05-11T02:35:33", "url": "https://files.pythonhosted.org/packages/78/b5/cdea7457eaaec84dd51c853f44198b9f28ad5f7c6699d625bd767a380207/marshmallow-2.15.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "11afa56d5256126ffccc2ede62789868", "sha256": "4c9978eddbc521674505ed38109cd8b92c8baa6f0a386a52356666c74e586d1e" }, "downloads": -1, "filename": "marshmallow-2.15.2.tar.gz", "has_sig": false, "md5_digest": "11afa56d5256126ffccc2ede62789868", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144483, "upload_time": "2018-05-11T02:35:35", "url": "https://files.pythonhosted.org/packages/bd/58/64f9bbd173529c02e7e977dff26f4602706236dd54834fc0dc96685ad43c/marshmallow-2.15.2.tar.gz" } ], "2.15.3": [ { "comment_text": "", "digests": { "md5": "8892880fff79f63547a13858f2accf60", "sha256": "c231784b5a5d2b26e50c90f3038004a3552ec27658cde6e0a5a7279d0c5a8e26" }, "downloads": -1, "filename": "marshmallow-2.15.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8892880fff79f63547a13858f2accf60", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44469, "upload_time": "2018-05-20T17:54:12", "url": "https://files.pythonhosted.org/packages/bd/c0/b176d4bcb59e973e23029573785ca3dd3a908dac26915f67004dd4ffc356/marshmallow-2.15.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "57610b484a9f11d356d98040d79e658b", "sha256": "171f409d48b44786b7df2793cbd7f1a9062f0fe2c14d547da536b5010f671ade" }, "downloads": -1, "filename": "marshmallow-2.15.3.tar.gz", "has_sig": false, "md5_digest": "57610b484a9f11d356d98040d79e658b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 145730, "upload_time": "2018-05-20T17:54:14", "url": "https://files.pythonhosted.org/packages/97/e5/03fdf9acc5f8524a95563e7aae15e7a295fc869f4ab1671cb38cb439606e/marshmallow-2.15.3.tar.gz" } ], "2.15.4": [ { "comment_text": "", "digests": { "md5": "b0ca54fa911d4c92bfd5d6203137ab99", "sha256": "57a107cfd58e9ed52dd355c65444e983d064fdcf63214a487d7305a2d24680db" }, "downloads": -1, "filename": "marshmallow-2.15.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b0ca54fa911d4c92bfd5d6203137ab99", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44512, "upload_time": "2018-08-04T13:04:10", "url": "https://files.pythonhosted.org/packages/67/7d/5435c399acecd4398d77ef31ea80e02cee5368599ce6a980f9014e8ec5fd/marshmallow-2.15.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7925cd1d9dff0701ed71b8046fbf034", "sha256": "0f3776aa5b5405f6000c9304841abe6d4d708bb08207fc89a5ecd86622ec9e54" }, "downloads": -1, "filename": "marshmallow-2.15.4.tar.gz", "has_sig": false, "md5_digest": "c7925cd1d9dff0701ed71b8046fbf034", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 145970, "upload_time": "2018-08-04T13:04:11", "url": "https://files.pythonhosted.org/packages/d1/9b/155bf679393197f8c1c001e075598ddf632b94722fe4b41ad272860103da/marshmallow-2.15.4.tar.gz" } ], "2.15.5": [ { "comment_text": "", "digests": { "md5": "e2cf7e6ec9b42fd783cdaa94d39cdf53", "sha256": "08b9b928f4afac524dd47cfd1509782f6d7b278e65f25847df9d1a7d8facccf4" }, "downloads": -1, "filename": "marshmallow-2.15.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e2cf7e6ec9b42fd783cdaa94d39cdf53", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44858, "upload_time": "2018-09-15T20:49:16", "url": "https://files.pythonhosted.org/packages/d5/32/57d464c250d7a15705d8eb3be9b8b002c611e414940d452b8756e3879bcd/marshmallow-2.15.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "baa75983a215117fd8dcc81ffa502634", "sha256": "06404c9f104a12cfaa9ceb79378a9834952265540306df344833c5dc59f07fa1" }, "downloads": -1, "filename": "marshmallow-2.15.5.tar.gz", "has_sig": false, "md5_digest": "baa75983a215117fd8dcc81ffa502634", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147122, "upload_time": "2018-09-15T20:49:18", "url": "https://files.pythonhosted.org/packages/e6/57/633bc03f0b494e3f936aa5ac3a31434e1ea004cbad7fd96a5fe6b0a973ea/marshmallow-2.15.5.tar.gz" } ], "2.15.6": [ { "comment_text": "", "digests": { "md5": "715f0281f8e7517a306a018f20fcc4f4", "sha256": "276db2f676763649262cd957757298329b07a20be513c1880e2763a0523260bf" }, "downloads": -1, "filename": "marshmallow-2.15.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "715f0281f8e7517a306a018f20fcc4f4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44958, "upload_time": "2018-09-21T02:59:24", "url": "https://files.pythonhosted.org/packages/3f/4d/cb555dfc2e2f926179884665fa1e6ae6b8f8102e4f8228b73e2a30eb0ee0/marshmallow-2.15.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8883e0fdcd1d838d92b01de566a3d56", "sha256": "485ac6ed0dff5e1af6ea1e3a54425a448968f581b065424c89a5375e4d4866fd" }, "downloads": -1, "filename": "marshmallow-2.15.6.tar.gz", "has_sig": false, "md5_digest": "b8883e0fdcd1d838d92b01de566a3d56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147534, "upload_time": "2018-09-21T02:59:25", "url": "https://files.pythonhosted.org/packages/82/1d/df35c86a25fed29a044b0d79b32529beb7eb8b00399e1e40aa0440c7786c/marshmallow-2.15.6.tar.gz" } ], "2.16.0": [ { "comment_text": "", "digests": { "md5": "31ae6e606efeba2afc19224e408c0223", "sha256": "ec7a8d0101c0175480684f8b6431ec52dc0b3e05bbd780643c2ee7df7735f148" }, "downloads": -1, "filename": "marshmallow-2.16.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "31ae6e606efeba2afc19224e408c0223", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49203, "upload_time": "2018-10-11T01:05:36", "url": "https://files.pythonhosted.org/packages/e0/63/5e998725dacfeb60404366cf55dc7b753b3de29e46e38da8f55199838320/marshmallow-2.16.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c62bfcf6116ee40ce2671b9afb55b80a", "sha256": "24a76fdc8857344fe896faa99b589ce10f44c691ce511fee37775757d482f036" }, "downloads": -1, "filename": "marshmallow-2.16.0.tar.gz", "has_sig": false, "md5_digest": "c62bfcf6116ee40ce2671b9afb55b80a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 148151, "upload_time": "2018-10-11T01:05:38", "url": "https://files.pythonhosted.org/packages/81/34/c44caa515a9b3fd2a9f100be304041984df441c5d3f9307c5ed5f0b66379/marshmallow-2.16.0.tar.gz" } ], "2.16.1": [ { "comment_text": "", "digests": { "md5": "2d65de57cc703273209e387927142825", "sha256": "ce79c55b3581b35e689ae427674207ce1ead00f098bb71b1fa58cfc39b0bbe50" }, "downloads": -1, "filename": "marshmallow-2.16.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2d65de57cc703273209e387927142825", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49141, "upload_time": "2018-10-23T03:59:16", "url": "https://files.pythonhosted.org/packages/a1/9f/8c9011dd85afb2aa852602bd1187081072e00cae1fc153a6afd47494e4b8/marshmallow-2.16.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac6df199ce948da3cab4f05074f9e1c0", "sha256": "b334bf0f4af48689b2148206e29220dfd14c3065590df7d24301c0199476aa04" }, "downloads": -1, "filename": "marshmallow-2.16.1.tar.gz", "has_sig": false, "md5_digest": "ac6df199ce948da3cab4f05074f9e1c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 148154, "upload_time": "2018-10-23T03:59:17", "url": "https://files.pythonhosted.org/packages/c4/72/011706e8d78b1e8cbd5b8a596ce42d693fb3df68f54b97975f9dd9967e81/marshmallow-2.16.1.tar.gz" } ], "2.16.2": [ { "comment_text": "", "digests": { "md5": "ee0b3c2b7533213ba9f0fe2a40f47dc8", "sha256": "44decd9e1174f66043b6746f825830af7b291141518d3ae218a466af5acc6e8f" }, "downloads": -1, "filename": "marshmallow-2.16.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ee0b3c2b7533213ba9f0fe2a40f47dc8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49209, "upload_time": "2018-10-31T01:11:19", "url": "https://files.pythonhosted.org/packages/c2/fc/6463b9d060e1f331ce0cfb7c844e69aa7b5f20aa62784e364d57c3b49ac8/marshmallow-2.16.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b10c10ec02599a9a45f259024c77b130", "sha256": "2480fd8b70273470cbdd04b97a24a8175f03fe23e6d2498789b44eb6f90e664b" }, "downloads": -1, "filename": "marshmallow-2.16.2.tar.gz", "has_sig": false, "md5_digest": "b10c10ec02599a9a45f259024c77b130", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 148780, "upload_time": "2018-10-31T01:11:21", "url": "https://files.pythonhosted.org/packages/78/8f/8d15e6362264097c5bb57edd3ece087c1adee905bce97ed8fd3e728e81be/marshmallow-2.16.2.tar.gz" } ], "2.16.3": [ { "comment_text": "", "digests": { "md5": "618438f34cbfbc37f0f298be45d4eae7", "sha256": "a2052f62b18f6dad520f465e437f63ab8812423975d48b9ebd30a735466e782a" }, "downloads": -1, "filename": "marshmallow-2.16.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "618438f34cbfbc37f0f298be45d4eae7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49264, "upload_time": "2018-11-02T01:06:45", "url": "https://files.pythonhosted.org/packages/6e/12/2a4239760bc78564434d1daecd9a504e7b6efb4f5722d5388b74407bb3b3/marshmallow-2.16.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7f99675e93fec16e5b1a93c1c260c6b", "sha256": "e1b79eb3b815b49918c64114dda691b8767b48a1f66dd1d8c0cd5842b74257c2" }, "downloads": -1, "filename": "marshmallow-2.16.3.tar.gz", "has_sig": false, "md5_digest": "c7f99675e93fec16e5b1a93c1c260c6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149211, "upload_time": "2018-11-02T01:06:47", "url": "https://files.pythonhosted.org/packages/45/8a/8014a6d68601d769dd22fd90b27c1784e64add5323390e7bbea897f347d3/marshmallow-2.16.3.tar.gz" } ], "2.17.0": [ { "comment_text": "", "digests": { "md5": "9ddb3eafc258be2b627381052584b5aa", "sha256": "abeebcb93e624c197302ce246d765dc2e2fea78220d1b8261d746d2216cfba0a" }, "downloads": -1, "filename": "marshmallow-2.17.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9ddb3eafc258be2b627381052584b5aa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49820, "upload_time": "2018-12-26T17:18:20", "url": "https://files.pythonhosted.org/packages/2a/27/d9dd5d27f618fd38ae7ae232b2a8bd60055c7208526898fa5bd764cb67bb/marshmallow-2.17.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3230bcb268a74b82540a30541368c909", "sha256": "f8191486c56c6bb821d7b23a9c88ad2056faaf2f095d002beef2883e21a75d93" }, "downloads": -1, "filename": "marshmallow-2.17.0.tar.gz", "has_sig": false, "md5_digest": "3230bcb268a74b82540a30541368c909", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154605, "upload_time": "2018-12-26T17:18:22", "url": "https://files.pythonhosted.org/packages/45/05/6682f50f12fbc15748a998eb316ea7afddc339f6de7afb56a5064db23ba7/marshmallow-2.17.0.tar.gz" } ], "2.18.0": [ { "comment_text": "", "digests": { "md5": "ce90f33a18f74c271b9edda217620f9e", "sha256": "d072db26baf2b0de886ad58f12360610d7bdea439e975a0179d1da82340c4f72" }, "downloads": -1, "filename": "marshmallow-2.18.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ce90f33a18f74c271b9edda217620f9e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50112, "upload_time": "2019-01-14T00:18:34", "url": "https://files.pythonhosted.org/packages/9a/3c/4cc463c53136dc503f9ee234c4a6592e1c7411cb362f844e80df70361f29/marshmallow-2.18.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e6aac4f1057285f9495b6db7f08588db", "sha256": "958e6640bec9a04ca15701e3d99b12c4269d0f43be596f00eeca1f2baf530abc" }, "downloads": -1, "filename": "marshmallow-2.18.0.tar.gz", "has_sig": false, "md5_digest": "e6aac4f1057285f9495b6db7f08588db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155144, "upload_time": "2019-01-14T00:18:36", "url": "https://files.pythonhosted.org/packages/ad/0b/5799965d1c6d5f608d684e2c0dce8a828e0309a3bfe8327d9418a89f591c/marshmallow-2.18.0.tar.gz" } ], "2.18.1": [ { "comment_text": "", "digests": { "md5": "346a0c30bcfd373debe6ea8dfe63fa86", "sha256": "f72a206432a3369dd72824564d18d915761e07805c05f00d0dcc7885fac1e385" }, "downloads": -1, "filename": "marshmallow-2.18.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "346a0c30bcfd373debe6ea8dfe63fa86", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50025, "upload_time": "2019-02-15T21:55:52", "url": "https://files.pythonhosted.org/packages/cf/b4/8dba044bc512583845aa83f7e3a988bda8df2ca4263dc9326927aea17f50/marshmallow-2.18.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "02a89cc25f04bd29bf04ead2044cd5b7", "sha256": "6eeaf1301a5f5942bfe8ab2c2eaf03feb793072b56d5fae563638bddd7bb62e6" }, "downloads": -1, "filename": "marshmallow-2.18.1.tar.gz", "has_sig": false, "md5_digest": "02a89cc25f04bd29bf04ead2044cd5b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155154, "upload_time": "2019-02-15T21:55:54", "url": "https://files.pythonhosted.org/packages/67/1c/3087554df28f52f7e447b46c0793c3b85548b814e64ccaba2be02b341631/marshmallow-2.18.1.tar.gz" } ], "2.19.0": [ { "comment_text": "", "digests": { "md5": "de3be627f11052147035ff03c40cafff", "sha256": "f8e51314623247b5c444e460b2bbb04aee102ca1ce7fb27bb16e3107cb81dfe9" }, "downloads": -1, "filename": "marshmallow-2.19.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "de3be627f11052147035ff03c40cafff", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50058, "upload_time": "2019-03-08T04:44:36", "url": "https://files.pythonhosted.org/packages/45/93/772a9b20e94d6bc16b7a0dfbd36e8738011ed5d952cf81644a91e5c9ff88/marshmallow-2.19.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3132dd82dde8862821e9b81b01da16c3", "sha256": "f2668d41a817aaaf6106d9922479bd1a97cae240dfac0eb7e320e0c29148a084" }, "downloads": -1, "filename": "marshmallow-2.19.0.tar.gz", "has_sig": false, "md5_digest": "3132dd82dde8862821e9b81b01da16c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155231, "upload_time": "2019-03-08T04:44:38", "url": "https://files.pythonhosted.org/packages/58/6e/3cfbbbf481bcfbdfe28d4bb8cd3a69372a4ccaaf4f54e72b5ea106fabd6e/marshmallow-2.19.0.tar.gz" } ], "2.19.1": [ { "comment_text": "", "digests": { "md5": "e9bb77b4e997bce640590f9f3fc2baa7", "sha256": "01412e979b45c003aeb3632718780b15b01566ae0182cc9232434b30f6b85e1b" }, "downloads": -1, "filename": "marshmallow-2.19.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e9bb77b4e997bce640590f9f3fc2baa7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49971, "upload_time": "2019-03-16T20:10:03", "url": "https://files.pythonhosted.org/packages/77/a3/4a9bf148dbe336ad068cc413f3683f9c275ea31f94ec05d19ea75f580b7b/marshmallow-2.19.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3858b14c43d4da1eb43e5c08948fea64", "sha256": "8a1a2e13c6a621f4970faf21e5d9b146e451e779d0f334a96eae4fcdef53455f" }, "downloads": -1, "filename": "marshmallow-2.19.1.tar.gz", "has_sig": false, "md5_digest": "3858b14c43d4da1eb43e5c08948fea64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155449, "upload_time": "2019-03-16T20:10:05", "url": "https://files.pythonhosted.org/packages/c4/f1/10a5d6598837dcc99cc97b132b611207d31f9adf86c5f2d436a04c796a1d/marshmallow-2.19.1.tar.gz" } ], "2.19.2": [ { "comment_text": "", "digests": { "md5": "12b90cb9423b51851d62dc66275fc9ee", "sha256": "0e497a6447ffaad55578138ca512752de7a48d12f444996ededc3d6bf8a09ca2" }, "downloads": -1, "filename": "marshmallow-2.19.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "12b90cb9423b51851d62dc66275fc9ee", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50021, "upload_time": "2019-03-30T16:19:49", "url": "https://files.pythonhosted.org/packages/bc/b4/f54f8533aad0645431bfda2cc3d20913a305779c80f8cb71229e8b615c5b/marshmallow-2.19.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "15aa6df24da69d47eca042cfac8216fa", "sha256": "e21a4dea20deb167c723e0ffb13f4cf33bcbbeb8a334e92406a3308cedea2826" }, "downloads": -1, "filename": "marshmallow-2.19.2.tar.gz", "has_sig": false, "md5_digest": "15aa6df24da69d47eca042cfac8216fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155568, "upload_time": "2019-03-30T16:19:52", "url": "https://files.pythonhosted.org/packages/df/74/e7fda51f05297c7ea2098c98c807602d0c24bc07e7e789c70ae37c2a8a14/marshmallow-2.19.2.tar.gz" } ], "2.19.3": [ { "comment_text": "", "digests": { "md5": "bc36a94a0ca4348d2c919403412cf143", "sha256": "cb1e88b8b098ee6d0fb984e40762cb94e200c067426e43496e55b82b563feabf" }, "downloads": -1, "filename": "marshmallow-2.19.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bc36a94a0ca4348d2c919403412cf143", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49981, "upload_time": "2019-06-15T16:06:22", "url": "https://files.pythonhosted.org/packages/67/21/5655668f3725fbb9872a77e409fabe2530fd3024c7e5c666b5ca2d6178fa/marshmallow-2.19.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c0b1f880975d4ed8e86824a4be0c3140", "sha256": "e726944748d4b729b2f320926a78df7565fe651beca8b52be5869ed827f96300" }, "downloads": -1, "filename": "marshmallow-2.19.3.tar.gz", "has_sig": false, "md5_digest": "c0b1f880975d4ed8e86824a4be0c3140", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155607, "upload_time": "2019-06-15T16:06:25", "url": "https://files.pythonhosted.org/packages/5c/51/e4c704b5cc55b7eb49b659fdc6081d865e3649ba9b23df87fea9c55b69b8/marshmallow-2.19.3.tar.gz" } ], "2.19.4": [ { "comment_text": "", "digests": { "md5": "fbcf3f948f81bd9440fe1a8f3035fd5c", "sha256": "d4fa1ade6e1a9fe1a70e3c82f958d1c3ca5f61c6ae85e9ee4f86c63c7ed5ec89" }, "downloads": -1, "filename": "marshmallow-2.19.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fbcf3f948f81bd9440fe1a8f3035fd5c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50011, "upload_time": "2019-06-17T03:37:01", "url": "https://files.pythonhosted.org/packages/a3/3c/3afb8d954886690781270703cc2d9eb408a087fea79dff9979ebbb266322/marshmallow-2.19.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "808f5c23131a9e39560c97959191acd5", "sha256": "3102fb073bfbe61fb8117662e896c5b185330d0151aeaaaa4c88bd7979df4c57" }, "downloads": -1, "filename": "marshmallow-2.19.4.tar.gz", "has_sig": false, "md5_digest": "808f5c23131a9e39560c97959191acd5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155721, "upload_time": "2019-06-17T03:37:03", "url": "https://files.pythonhosted.org/packages/34/c4/d022ed3f2ff586ca3e521365bed0799d9c1c62bedf57c343b33297318e95/marshmallow-2.19.4.tar.gz" } ], "2.19.5": [ { "comment_text": "", "digests": { "md5": "e1cbbfc2f3d9cd2ee8b66c614431baed", "sha256": "a4d99922116a76e5abd8f997ec0519086e24814b7e1e1344bebe2a312ba50235" }, "downloads": -1, "filename": "marshmallow-2.19.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e1cbbfc2f3d9cd2ee8b66c614431baed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50089, "upload_time": "2019-06-18T12:59:10", "url": "https://files.pythonhosted.org/packages/77/0b/ee5a4d0b7bc88bb3b59a25fb40e1811810c039f7faa1e87dcdcbcb1fdc33/marshmallow-2.19.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ed1fa824c05c124570b578a1cfbb8d9c", "sha256": "9cedfc5b6f568d57e8a2cf3d293fbd81b05e5ef557854008d03e25660a39ccfd" }, "downloads": -1, "filename": "marshmallow-2.19.5.tar.gz", "has_sig": false, "md5_digest": "ed1fa824c05c124570b578a1cfbb8d9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155874, "upload_time": "2019-06-18T12:59:12", "url": "https://files.pythonhosted.org/packages/19/d4/db55b1dbde3fc704d6e6d86ae770ba55981c25b3f597770c6aaa06fe8f20/marshmallow-2.19.5.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "59a268d3d3bfa43b013eee62dfb74685", "sha256": "90db8ae552ad62eb9b022a651c64c6846d4a93534c191bbc1464a17d35883734" }, "downloads": -1, "filename": "marshmallow-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "59a268d3d3bfa43b013eee62dfb74685", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43850, "upload_time": "2015-10-26T22:41:13", "url": "https://files.pythonhosted.org/packages/19/2f/8882963961caf32b319834952037bf599d7345d279f601939e9068bdb4f3/marshmallow-2.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2aee42ff6e06d7c20a588ad277d1b62f", "sha256": "944daf8d1d86e203ec580b74cf9108673c96c40fffad4b88d27331cb6ee75cca" }, "downloads": -1, "filename": "marshmallow-2.2.0.tar.gz", "has_sig": false, "md5_digest": "2aee42ff6e06d7c20a588ad277d1b62f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126426, "upload_time": "2015-10-26T22:41:18", "url": "https://files.pythonhosted.org/packages/7f/79/14a615f9beab59a191eaf67255d528bf6ac1694805c6599af03db79c65c7/marshmallow-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "7b56ea505113ab50f8d31434f2f696af", "sha256": "d0b3200ad5ad5574a24469c4b1687a2e95f221cc67b00c424d1dad78e85e7954" }, "downloads": -1, "filename": "marshmallow-2.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b56ea505113ab50f8d31434f2f696af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43865, "upload_time": "2015-11-12T04:46:47", "url": "https://files.pythonhosted.org/packages/02/23/61d793406f28d615187f62f93880cdbfff271ba34cdaeab605bf4e7d9881/marshmallow-2.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "75811e1e8c840867e7c142f6a866d2ba", "sha256": "141b96424a7bc15e5c39af0da9a596b6a5056c62c2135687c10c44cb1fcb7fcd" }, "downloads": -1, "filename": "marshmallow-2.2.1.tar.gz", "has_sig": false, "md5_digest": "75811e1e8c840867e7c142f6a866d2ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126624, "upload_time": "2015-11-12T04:46:52", "url": "https://files.pythonhosted.org/packages/aa/ea/3775d61de79032da2bb63a2801d17a10da8c06c7ba1fab59279294ff9edb/marshmallow-2.2.1.tar.gz" } ], "2.20.0": [ { "comment_text": "", "digests": { "md5": "9e6aba2ad8f5b4177b16b4a483d7eef6", "sha256": "ebeb2b3b41580ed89fe1e695b567bd8509a62ecb85fe89e33a8d7fa486badd41" }, "downloads": -1, "filename": "marshmallow-2.20.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9e6aba2ad8f5b4177b16b4a483d7eef6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50125, "upload_time": "2019-08-10T13:04:10", "url": "https://files.pythonhosted.org/packages/a0/99/da01cc588404eff6c4b91a92ebe2ab2e51bf02b383df7a955b2c35d15641/marshmallow-2.20.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df220aba7f00082a986aa9a34dca3fab", "sha256": "6f027308cddb25b74f8245b833a355e65b21b362f38773b40325ff9b5da6c959" }, "downloads": -1, "filename": "marshmallow-2.20.0.tar.gz", "has_sig": false, "md5_digest": "df220aba7f00082a986aa9a34dca3fab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152327, "upload_time": "2019-08-10T13:04:12", "url": "https://files.pythonhosted.org/packages/16/16/d1785e853c3c9ae179c75be5cb086fb9a0d5bb11365d3a13f103795ec95f/marshmallow-2.20.0.tar.gz" } ], "2.20.1": [ { "comment_text": "", "digests": { "md5": "0e0ca0b717f1c7fff4c6577c590ae3f3", "sha256": "b240f5e14bc641c257f4b7bda3951d7e71963ebf66bd519078267f1f961cbd15" }, "downloads": -1, "filename": "marshmallow-2.20.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0e0ca0b717f1c7fff4c6577c590ae3f3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50129, "upload_time": "2019-08-13T04:42:00", "url": "https://files.pythonhosted.org/packages/7e/eb/6ba57915a0c4b5eabb8112433f50d9862354fe13ae69d7bd102452a1c2ac/marshmallow-2.20.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b7f31b758503167b808e0499b372ba4b", "sha256": "43bef4d33b7adb1f66eba8074095208b38dec96bed51f7a9bf2e687750f226d8" }, "downloads": -1, "filename": "marshmallow-2.20.1.tar.gz", "has_sig": false, "md5_digest": "b7f31b758503167b808e0499b372ba4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152424, "upload_time": "2019-08-13T04:42:02", "url": "https://files.pythonhosted.org/packages/ad/cf/7888a584757339d4853cae1e9edbffe282331d296102d275be8bd08a838d/marshmallow-2.20.1.tar.gz" } ], "2.20.2": [ { "comment_text": "", "digests": { "md5": "f00b18ee0866475b3a649ab6131efc5a", "sha256": "8a1ee88594c983336acba749d1788950d095f96538ba193fda882844c5d35129" }, "downloads": -1, "filename": "marshmallow-2.20.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f00b18ee0866475b3a649ab6131efc5a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50130, "upload_time": "2019-08-20T09:44:01", "url": "https://files.pythonhosted.org/packages/37/ee/ac9932793478432f0ba1bdc0451be244b4dc2b73c0036bd08c40bddfe2f2/marshmallow-2.20.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ee3a52f252ef104e6ee3cfcccc504713", "sha256": "a339159e422a055269f5625df51fbdc7fb20512cfffa08451cd5727783ddca39" }, "downloads": -1, "filename": "marshmallow-2.20.2.tar.gz", "has_sig": false, "md5_digest": "ee3a52f252ef104e6ee3cfcccc504713", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152437, "upload_time": "2019-08-20T09:44:04", "url": "https://files.pythonhosted.org/packages/d8/3c/00435a8cd9b653938baa46fe3c03c90f469bb9dc835ca2b2d3eb50caccee/marshmallow-2.20.2.tar.gz" } ], "2.20.3": [ { "comment_text": "", "digests": { "md5": "8ba9a75e01667af6626eef7c444a8713", "sha256": "dfe3669c787dddef23b795c351e3a463217f125d3c2635d10b373cd6ec7c13dd" }, "downloads": -1, "filename": "marshmallow-2.20.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8ba9a75e01667af6626eef7c444a8713", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50138, "upload_time": "2019-09-04T12:34:00", "url": "https://files.pythonhosted.org/packages/45/1c/8bcd49a62807c3df330dc470a4e04060d0437015e9a078e1968aba93c645/marshmallow-2.20.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "503bba107149e6f7f5e6faa0d267967c", "sha256": "864f518292cc159b3daa4f3e6023d05274fb2cb7edcf15149e2a953f79cf7b24" }, "downloads": -1, "filename": "marshmallow-2.20.3.tar.gz", "has_sig": false, "md5_digest": "503bba107149e6f7f5e6faa0d267967c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152524, "upload_time": "2019-09-04T12:34:02", "url": "https://files.pythonhosted.org/packages/bf/b5/11d7fb5902a600466b1e8c70c370224d0cdf681cedc17a9038753127e36a/marshmallow-2.20.3.tar.gz" } ], "2.20.4": [ { "comment_text": "", "digests": { "md5": "2e0b34dad165684612576f8e7d21eda7", "sha256": "3c0148787dd8f2595404b1705a5e1b2f5e70106495684f9c173606df52343e9d" }, "downloads": -1, "filename": "marshmallow-2.20.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2e0b34dad165684612576f8e7d21eda7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50153, "upload_time": "2019-09-12T01:50:12", "url": "https://files.pythonhosted.org/packages/68/6d/4d00c06eab621534766448bf61faf6e4b91e4cdf2f790108b91d20ff9b0b/marshmallow-2.20.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bf5d03b32ad0563dbf62c15492ba8a66", "sha256": "4cedf271014c503cbf464780c8913df01045746e4d254937a2adc3509c393a80" }, "downloads": -1, "filename": "marshmallow-2.20.4.tar.gz", "has_sig": false, "md5_digest": "bf5d03b32ad0563dbf62c15492ba8a66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152703, "upload_time": "2019-09-12T01:50:14", "url": "https://files.pythonhosted.org/packages/0e/85/86e67b645dc7c7fb2beaacffb34978863699ced3d60a167f9277d69605d5/marshmallow-2.20.4.tar.gz" } ], "2.20.5": [ { "comment_text": "", "digests": { "md5": "8d9e22b6cfb30a17c0f4919547f7e8aa", "sha256": "f88fdf8b9cad487bf74cc03382e0e3792dd740144d4ef3395d74b03f31dcd9cf" }, "downloads": -1, "filename": "marshmallow-2.20.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8d9e22b6cfb30a17c0f4919547f7e8aa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50176, "upload_time": "2019-09-15T20:16:44", "url": "https://files.pythonhosted.org/packages/e3/07/c7a12d21619abeedf5fca7381f4cf3fa798a26e8d92ad66bc73f5fc58fc1/marshmallow-2.20.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "31db580a5c63cbe9312ed99ec3f2a677", "sha256": "ee20892f41b2ac51f9f1927f30696a2fb91b99fe9e12bf54624e78654612cba7" }, "downloads": -1, "filename": "marshmallow-2.20.5.tar.gz", "has_sig": false, "md5_digest": "31db580a5c63cbe9312ed99ec3f2a677", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152733, "upload_time": "2019-09-15T20:16:46", "url": "https://files.pythonhosted.org/packages/da/f1/99a0fcf54d349f615d43addd3911f63d979775a11d94ffab0f33cd71099d/marshmallow-2.20.5.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "a1fb212a5ef5fe19a4d32fd86f9261bc", "sha256": "79db62d4255071461a0880a3285a9f764e14b7619bdd578235b90476bd0cb1a2" }, "downloads": -1, "filename": "marshmallow-2.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a1fb212a5ef5fe19a4d32fd86f9261bc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44141, "upload_time": "2015-11-23T04:08:32", "url": "https://files.pythonhosted.org/packages/4a/58/dfdbd59fc76c24d8c5c8e8526fd2f6fd042c30e5b5687443b39c0d40f40a/marshmallow-2.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8e3d771336f6172ffd106dabb4a5496", "sha256": "2b3c754317accb5ec5045cbb0c04170f0560d95e0ababa45ce76b882efc7a76e" }, "downloads": -1, "filename": "marshmallow-2.3.0.tar.gz", "has_sig": false, "md5_digest": "b8e3d771336f6172ffd106dabb4a5496", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128376, "upload_time": "2015-11-23T04:08:45", "url": "https://files.pythonhosted.org/packages/23/b9/e07e3cd224a0608fb945e04861daf82148dd0c0aac76eef495fa821f005b/marshmallow-2.3.0.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "2ba780ea785811f41309304c22d64e59", "sha256": "a1fdb8ebff0efa9d5e21f9f697dc9a4791c9c3ef43a9d825e2912cdd259c1768" }, "downloads": -1, "filename": "marshmallow-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2ba780ea785811f41309304c22d64e59", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44288, "upload_time": "2015-12-06T17:51:19", "url": "https://files.pythonhosted.org/packages/41/6a/4bfd68e1076bb0935d4e2e86ef434e5826f919493c72afc78c0b8f4ebed9/marshmallow-2.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "432263d58e327dacee15e39d885c008f", "sha256": "3df4ef2e9e2fe57469e18c3f2e1856345c78a0a8d5e92805c155cab61ccb52a0" }, "downloads": -1, "filename": "marshmallow-2.4.0.tar.gz", "has_sig": false, "md5_digest": "432263d58e327dacee15e39d885c008f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129000, "upload_time": "2015-12-06T17:51:25", "url": "https://files.pythonhosted.org/packages/68/66/0f7614c6d01b2665540aa9739894b6c00a40e05c4e8ee83c05feb23208a7/marshmallow-2.4.0.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "be2a9714db295fa1d16e76a71a8cf444", "sha256": "f15926d33c81545f75597e7f16e58085a686d15994181f190dd1e0b17a9935c4" }, "downloads": -1, "filename": "marshmallow-2.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "be2a9714db295fa1d16e76a71a8cf444", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44282, "upload_time": "2015-12-08T04:36:09", "url": "https://files.pythonhosted.org/packages/52/a5/130a31d31367a1cb80ccf846af8ffcaabac4a9f28c5bb847f739dc4692ad/marshmallow-2.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1b12f0808a925564ce17fa4e42b8cb22", "sha256": "706e9f482b9db3aa5f0d0b1452d914af6d5c281bbd4ab06542897d97860a8235" }, "downloads": -1, "filename": "marshmallow-2.4.1.tar.gz", "has_sig": false, "md5_digest": "1b12f0808a925564ce17fa4e42b8cb22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129145, "upload_time": "2015-12-08T04:36:15", "url": "https://files.pythonhosted.org/packages/91/b7/ed8a6040f9b2f057751f8be6597f89251581177cc820fe40de0587c8e8e4/marshmallow-2.4.1.tar.gz" } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "61669ba5b68ec1c34cb1072a002b29f1", "sha256": "0097db28f2e0e67034c67253255cb277e26d4f34aa5dfcef3d9e0512d6021682" }, "downloads": -1, "filename": "marshmallow-2.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "61669ba5b68ec1c34cb1072a002b29f1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44257, "upload_time": "2015-12-09T05:42:55", "url": "https://files.pythonhosted.org/packages/56/0e/9aa0a55305bab93abe4ca742707af4aa4ef30a9e21ba3966e4fd24de2c5b/marshmallow-2.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "63d409d1eb32e32687dd5677ddfe0cdb", "sha256": "40649f7ec079d967a59fb19c3756cb33e2fe3fefac68f3d74acc8bb48dc978f9" }, "downloads": -1, "filename": "marshmallow-2.4.2.tar.gz", "has_sig": false, "md5_digest": "63d409d1eb32e32687dd5677ddfe0cdb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129378, "upload_time": "2015-12-09T05:43:00", "url": "https://files.pythonhosted.org/packages/a5/21/bddcc6fdb502b0b32433c5f9fd87a65fe84f1d19d117c1aff09502a76590/marshmallow-2.4.2.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "a4ae24999a5d398f5a7ef6cc2535ec78", "sha256": "cd60aa2b9a2700bf804ac459253dee8efb553e75a22fdb28ef81c316219e8b63" }, "downloads": -1, "filename": "marshmallow-2.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a4ae24999a5d398f5a7ef6cc2535ec78", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44770, "upload_time": "2016-01-16T23:32:31", "url": "https://files.pythonhosted.org/packages/d9/40/11068e50c15d5b35f1eadfafee7fa5cba3074a822dbac108f7d377747fdb/marshmallow-2.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8ebcde9b6ac594b5cbf39f73bd6cf076", "sha256": "5531c7474875dce687dfa89b7f647a9a00b978f17efc54552ba99f7af26cac9b" }, "downloads": -1, "filename": "marshmallow-2.5.0.tar.gz", "has_sig": false, "md5_digest": "8ebcde9b6ac594b5cbf39f73bd6cf076", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 130226, "upload_time": "2016-01-16T23:32:40", "url": "https://files.pythonhosted.org/packages/2c/10/9c535c105c3c436b8773abee8061ac3ba5e17fb204031a67a0c959289556/marshmallow-2.5.0.tar.gz" } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "5af989cbd2b1478e7b1c1fa563fc52b6", "sha256": "3511492c4b0a235ee189afe24ca8b7f390bdcd01a0adc19b988cd7f0f6534f2d" }, "downloads": -1, "filename": "marshmallow-2.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5af989cbd2b1478e7b1c1fa563fc52b6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44979, "upload_time": "2016-02-02T03:01:29", "url": "https://files.pythonhosted.org/packages/33/44/c3bdd4222909b6452ebe5c028ea5dbe7e9409307b3b933026218c677fcf1/marshmallow-2.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fd876557367a94bbeb0790dd6d65ecab", "sha256": "acd5aa88c9089b2a44d30ddc30c24bfac6435a56ea1fb45923fcf367b037b363" }, "downloads": -1, "filename": "marshmallow-2.6.0.tar.gz", "has_sig": false, "md5_digest": "fd876557367a94bbeb0790dd6d65ecab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 130860, "upload_time": "2016-02-02T03:01:38", "url": "https://files.pythonhosted.org/packages/d4/e3/3fe336d15004fa288c0816c6063fd215b6eff2a72b65884a104395e71385/marshmallow-2.6.0.tar.gz" } ], "2.6.1": [ { "comment_text": "", "digests": { "md5": "fa79f374156ec3b8e2c26f9f0dd504a7", "sha256": "9fe672f85f0b883f01bed791d8203d4c9b42e62886f3c2aece474a96da233aa4" }, "downloads": -1, "filename": "marshmallow-2.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fa79f374156ec3b8e2c26f9f0dd504a7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44993, "upload_time": "2016-03-18T02:30:32", "url": "https://files.pythonhosted.org/packages/12/4e/cdb10edd6403ae35d1c21033623aa62c8b439e7056a07557e74e54db0ff2/marshmallow-2.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1f252952118cc433d029bb4f0f44ada4", "sha256": "148d9fafbac38c88e1abd949b1780b2b5f3ab1f3523f6cccbbd468c9e4e3a45d" }, "downloads": -1, "filename": "marshmallow-2.6.1.tar.gz", "has_sig": false, "md5_digest": "1f252952118cc433d029bb4f0f44ada4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 131052, "upload_time": "2016-03-18T02:30:40", "url": "https://files.pythonhosted.org/packages/11/ce/627f36d3ad656fbb6d5c409495675e9c8c9694b1c28e6faf63a66f990143/marshmallow-2.6.1.tar.gz" } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "d0c53b7984daa0d637b96c62322b5bbd", "sha256": "7611af1a409044e0a4cc9d7ea536a748f83e7ae0b820f4c346544ca4b59df5e7" }, "downloads": -1, "filename": "marshmallow-2.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d0c53b7984daa0d637b96c62322b5bbd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45083, "upload_time": "2016-04-04T22:40:24", "url": "https://files.pythonhosted.org/packages/84/3e/20d65d36b2f5fa0dda6d5dd3a2ba6cc14140e4632d7079a2df971b804e4b/marshmallow-2.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ea85d8c6298e48a30605017067b768c", "sha256": "f3ad24f3282eb0559e85cb8cc1c0a96ff675fcfcd95105552b93b9bfc75e88d7" }, "downloads": -1, "filename": "marshmallow-2.7.0.tar.gz", "has_sig": false, "md5_digest": "2ea85d8c6298e48a30605017067b768c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 131615, "upload_time": "2016-04-04T22:40:36", "url": "https://files.pythonhosted.org/packages/03/ae/5525c3854e6e932ebc47eb720ff40cd57eae9394fb43f451b5c7c135ef4f/marshmallow-2.7.0.tar.gz" } ], "2.7.1": [ { "comment_text": "", "digests": { "md5": "11d64149f044158d3d51efe25fbe824f", "sha256": "72d3d1817a1e8a8d3f7f3427a131bc5a91d36227d91cf6afd09a60bbb57b51e7" }, "downloads": -1, "filename": "marshmallow-2.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "11d64149f044158d3d51efe25fbe824f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45094, "upload_time": "2016-04-09T01:11:49", "url": "https://files.pythonhosted.org/packages/92/19/4ddcad9dd9de591ead1feabd56f04e46a90b7e80cfb0b4d93ed016c6a65e/marshmallow-2.7.1-py2.py3-none-any.whl" } ], "2.7.2": [ { "comment_text": "", "digests": { "md5": "dcddf07b25c936f1fae5928026478b06", "sha256": "3eda6b2d1bca4993a0244c415b90d5ac984353faa2d4dd8b2f647574fc5ca1e9" }, "downloads": -1, "filename": "marshmallow-2.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dcddf07b25c936f1fae5928026478b06", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43801, "upload_time": "2016-04-28T03:37:24", "url": "https://files.pythonhosted.org/packages/f4/8e/72d84bbf8e26291e7bd2f464d531ebf089b46305997169a8269a95ec0216/marshmallow-2.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6b93167dba628314d66213cdf432af29", "sha256": "291f04d77332843e65dda06253174951c87d4b685ac0cea77415168fc6c76f71" }, "downloads": -1, "filename": "marshmallow-2.7.2.tar.gz", "has_sig": false, "md5_digest": "6b93167dba628314d66213cdf432af29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 131774, "upload_time": "2016-04-28T03:37:30", "url": "https://files.pythonhosted.org/packages/1c/1d/51ed9afd232691eaace459004cc5a6b7f7e177c0a7f2c1275d6f76e59f19/marshmallow-2.7.2.tar.gz" } ], "2.7.3": [ { "comment_text": "", "digests": { "md5": "36887d70d673778f8ddc36176f5b1b85", "sha256": "028ccc21e3985f6efbb9aacb0944f31f7a16ef8335be47b8ddb6e096c456931b" }, "downloads": -1, "filename": "marshmallow-2.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "36887d70d673778f8ddc36176f5b1b85", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43800, "upload_time": "2016-05-06T01:50:46", "url": "https://files.pythonhosted.org/packages/39/8b/cbb04e90e656a283b7a4c5ff6a2267b537b8f5aff47518eb5daf0e9d58d8/marshmallow-2.7.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1f38a03f66978625270993dc1522bd63", "sha256": "3e71d5544860a5fc07cefb0b4e1f65924fdef877767042a1e957cc63a4765f1e" }, "downloads": -1, "filename": "marshmallow-2.7.3.tar.gz", "has_sig": false, "md5_digest": "1f38a03f66978625270993dc1522bd63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 131831, "upload_time": "2016-05-06T01:50:51", "url": "https://files.pythonhosted.org/packages/2b/b9/00d0e21bcabc30aeef422049908bcf369eaa70faab1309a197e8c1451689/marshmallow-2.7.3.tar.gz" } ], "2.8.0": [ { "comment_text": "", "digests": { "md5": "c6d6a1d1ee0344e53d226fbdd41b74ea", "sha256": "ec2ca5d5166c849c7c713dfa882eae944b8f07d39c24518363b74d6cba431a54" }, "downloads": -1, "filename": "marshmallow-2.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c6d6a1d1ee0344e53d226fbdd41b74ea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44249, "upload_time": "2016-06-24T02:04:35", "url": "https://files.pythonhosted.org/packages/70/c7/7be1d40a1adcfe5971f56452d1e71da8e88f98c257c037d58818ff32d73a/marshmallow-2.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "204513fc123a3d9bdd7b63b9747f02e6", "sha256": "7c519e0e4c74270bae8dfb20b611910cfb4b78e02ecc1c8c4e3fbc58de2698df" }, "downloads": -1, "filename": "marshmallow-2.8.0.tar.gz", "has_sig": false, "md5_digest": "204513fc123a3d9bdd7b63b9747f02e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 132836, "upload_time": "2016-06-24T02:04:39", "url": "https://files.pythonhosted.org/packages/4f/64/9393d77847d86981c84b88bbea627d30ff71b5ab1402636b366f73737817/marshmallow-2.8.0.tar.gz" } ], "2.9.0": [ { "comment_text": "", "digests": { "md5": "12b96697cee54a4213df64bfb765830d", "sha256": "e981b5bfbe69c5dda229fca6dfcdd331785ad8089e2dad6cb2634b01608d41a7" }, "downloads": -1, "filename": "marshmallow-2.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "12b96697cee54a4213df64bfb765830d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44434, "upload_time": "2016-07-07T03:40:34", "url": "https://files.pythonhosted.org/packages/19/ca/38bfd623f60217e878c4206128e6a4550f509f300c2280cce2f522417d87/marshmallow-2.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "15ebc05a75de782116ab1d5eee807e73", "sha256": "4ef51025bfe84639f2dc42ea29c06fd6a487231b12d48a81ac9a24dbeb7b1b9f" }, "downloads": -1, "filename": "marshmallow-2.9.0.tar.gz", "has_sig": false, "md5_digest": "15ebc05a75de782116ab1d5eee807e73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133269, "upload_time": "2016-07-07T03:40:38", "url": "https://files.pythonhosted.org/packages/3c/08/12d7d988c540184616bbb7c6635bbae6f7c558db84979bc7a9fdaa0a5f7c/marshmallow-2.9.0.tar.gz" } ], "2.9.1": [ { "comment_text": "", "digests": { "md5": "96f720a61ba6c88fe826121f297b1d0f", "sha256": "0068b4162923c78562cf688bd61cd033e0d9a28b27b75f39eaf68453e252adba" }, "downloads": -1, "filename": "marshmallow-2.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "96f720a61ba6c88fe826121f297b1d0f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44483, "upload_time": "2016-07-22T02:32:41", "url": "https://files.pythonhosted.org/packages/28/71/cc6529697bb80c0408e60e0dbb2e8deb5c855a14d14e3649132f00eb45de/marshmallow-2.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "40dd6cf7f75955c3994b452da56be050", "sha256": "dcee3529deefb037e58d203d81f3629194a1777f3420429e8e26cc070df5bc10" }, "downloads": -1, "filename": "marshmallow-2.9.1.tar.gz", "has_sig": false, "md5_digest": "40dd6cf7f75955c3994b452da56be050", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133475, "upload_time": "2016-07-22T02:32:44", "url": "https://files.pythonhosted.org/packages/86/bc/8858c00703ba9e9dad7d61bf668cd496fd81b0c5c7ecdfc5d41534d38cf2/marshmallow-2.9.1.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "99bb8b064d64989f979bc19ba6b7371e", "sha256": "e5e9fd0c2e919b4ece915eb30808206349a49a45df72e99ed20e27a9053d574b" }, "downloads": -1, "filename": "marshmallow-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "99bb8b064d64989f979bc19ba6b7371e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 43213, "upload_time": "2019-08-18T22:34:13", "url": "https://files.pythonhosted.org/packages/ad/a6/ba5008fb93498f2352a6a65c9c4842da7060be676a4219d68a5700a5f549/marshmallow-3.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c2a88b1ac65c1e25e52d4b7a6b36e0d4", "sha256": "fa2d8a4b61d09b0e161a14acc5ad8ab7aaaf1477f3dd52819ddd6c6c8275733a" }, "downloads": -1, "filename": "marshmallow-3.0.0.tar.gz", "has_sig": false, "md5_digest": "c2a88b1ac65c1e25e52d4b7a6b36e0d4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 168015, "upload_time": "2019-08-18T22:34:16", "url": "https://files.pythonhosted.org/packages/f5/46/e8659771d3d0b5a255300bdcbaa68577ffd2f8c400dab72336f73f6e8620/marshmallow-3.0.0.tar.gz" } ], "3.0.0a1": [ { "comment_text": "", "digests": { "md5": "3349d0b8c50e97e5cc1865b6ca45ad32", "sha256": "89b994a30db9d3770fd1c24e7db732087d60c908376005ed465aa95331b8bb53" }, "downloads": -1, "filename": "marshmallow-3.0.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3349d0b8c50e97e5cc1865b6ca45ad32", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 42650, "upload_time": "2017-02-26T19:24:15", "url": "https://files.pythonhosted.org/packages/a5/24/fc1f2e438eeef67124e1ce3e39d6a791ebc1821a440aba6ef97ab0f4639b/marshmallow-3.0.0a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc0aca0d84acb1f0b2bd8e5cb35d1416", "sha256": "8f041b4e983b3215ec1ed9820cff0a2f4fa5798f93e8c4c6f0dcd46d08216682" }, "downloads": -1, "filename": "marshmallow-3.0.0a1.tar.gz", "has_sig": false, "md5_digest": "bc0aca0d84acb1f0b2bd8e5cb35d1416", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137249, "upload_time": "2017-02-26T19:24:16", "url": "https://files.pythonhosted.org/packages/c6/ad/c88576e017d839610e75087f70d22e25946b78832aa8ba1481c08fb6af17/marshmallow-3.0.0a1.tar.gz" } ], "3.0.0b1": [ { "comment_text": "", "digests": { "md5": "a3ed54f389da2588b7ddba29ca78b4f6", "sha256": "81b1e2b87e44dd1da0e1d9d61cce05b7c755efd04d29aa4bbc6d1a01dc03a24c" }, "downloads": -1, "filename": "marshmallow-3.0.0b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a3ed54f389da2588b7ddba29ca78b4f6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 42806, "upload_time": "2017-03-10T05:07:14", "url": "https://files.pythonhosted.org/packages/9b/1b/cf1b55b416a0c29e326e033aada8134b8d6ee8010bc4b068be9b7bc921ff/marshmallow-3.0.0b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7a994551a24cf2c8f298fa89a047256d", "sha256": "4169892eecd9d156e6261f9a5e0199ccf857786d0e5fb595c46d63c476b8f83f" }, "downloads": -1, "filename": "marshmallow-3.0.0b1.tar.gz", "has_sig": false, "md5_digest": "7a994551a24cf2c8f298fa89a047256d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 138679, "upload_time": "2017-03-10T05:07:16", "url": "https://files.pythonhosted.org/packages/96/ef/1385a06e8eeba65b48cbdf9be110ce5b0b113aebedd01778279ddff3f5c8/marshmallow-3.0.0b1.tar.gz" } ], "3.0.0b10": [ { "comment_text": "", "digests": { "md5": "601ec5a60fd8e2d8bba012757ff93c20", "sha256": "be2541dfd0fe7fdbb6ab83ab187e5190dfe2e169b68bb6ff982b06fad5bdb7e0" }, "downloads": -1, "filename": "marshmallow-3.0.0b10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "601ec5a60fd8e2d8bba012757ff93c20", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41505, "upload_time": "2018-05-11T02:54:02", "url": "https://files.pythonhosted.org/packages/40/43/ccfb94cb930a387f75c6ef8a1fa05145d46261ae58918a4018f5d4905a72/marshmallow-3.0.0b10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f4178172c12d26bb65a808b070191f33", "sha256": "adf7e8784573b86825df1c8167318a018ff9e357b07bb7ebc1d07de80b824bcb" }, "downloads": -1, "filename": "marshmallow-3.0.0b10.tar.gz", "has_sig": false, "md5_digest": "f4178172c12d26bb65a808b070191f33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149772, "upload_time": "2018-05-11T02:54:03", "url": "https://files.pythonhosted.org/packages/ef/fe/a3015bd5b5747030476deb96c738950d2d5770376feefe98f30432f9cef1/marshmallow-3.0.0b10.tar.gz" } ], "3.0.0b11": [ { "comment_text": "", "digests": { "md5": "a8cd95cb071632660142f4e95d72f3a5", "sha256": "6ead3c21519714521882f2d76082f6d7cb51be2b6c443bdeea70248f8f3be012" }, "downloads": -1, "filename": "marshmallow-3.0.0b11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a8cd95cb071632660142f4e95d72f3a5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 42047, "upload_time": "2018-05-20T18:22:02", "url": "https://files.pythonhosted.org/packages/22/b8/d5ca4215091448097fc9b0a2d1cfd2597801340a248ee0dcecf85d253500/marshmallow-3.0.0b11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "87e4b27ce1d96a1cf40cbadf7e1ad0f1", "sha256": "c6b162ce3544cb4acbe8ce7676ec61aac9fa0a69714be10ded5163e7195d4e11" }, "downloads": -1, "filename": "marshmallow-3.0.0b11.tar.gz", "has_sig": false, "md5_digest": "87e4b27ce1d96a1cf40cbadf7e1ad0f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 151558, "upload_time": "2018-05-20T18:22:04", "url": "https://files.pythonhosted.org/packages/00/37/f49771cd996ffa2b480495efdad608b8ab22ffd565dfc486330896be82a8/marshmallow-3.0.0b11.tar.gz" } ], "3.0.0b12": [ { "comment_text": "", "digests": { "md5": "464671fbe4f29e270c8811b24d045992", "sha256": "dee61f63579ab69b9bed628709c4e33ad8da80aea2f40c7a64584537aade47ed" }, "downloads": -1, "filename": "marshmallow-3.0.0b12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "464671fbe4f29e270c8811b24d045992", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 42625, "upload_time": "2018-07-05T02:24:26", "url": "https://files.pythonhosted.org/packages/fb/b6/090cf1bd5abb93973b06aa73921c8473cf91c1f0ac37f61d97fc0c1f72cd/marshmallow-3.0.0b12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "18cba88e502d5f04663a4382f683ce2f", "sha256": "29fe07df512746856459addf8531f7902b5e28bead17afc21204590953963906" }, "downloads": -1, "filename": "marshmallow-3.0.0b12.tar.gz", "has_sig": false, "md5_digest": "18cba88e502d5f04663a4382f683ce2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153870, "upload_time": "2018-07-05T02:24:27", "url": "https://files.pythonhosted.org/packages/8d/76/bd42bdf1af15d28640ca54b059d463670ca4f1ce011c2362edb84c3cde48/marshmallow-3.0.0b12.tar.gz" } ], "3.0.0b13": [ { "comment_text": "", "digests": { "md5": "6a1506e4e75b9ac0090f7d453644eb41", "sha256": "b21b56e6fe6ba4c96692ae0dff68698599fa88e2461d5cc6adf099a9349187d4" }, "downloads": -1, "filename": "marshmallow-3.0.0b13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a1506e4e75b9ac0090f7d453644eb41", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 42664, "upload_time": "2018-08-04T16:54:16", "url": "https://files.pythonhosted.org/packages/07/12/f26d93ac47e7a69b4bf6203376d22ea0af4c96c99f9cf296c2a8b1e35620/marshmallow-3.0.0b13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e813802a2ed928cea3add345ad78741a", "sha256": "77a3bf034dd25e53736eb11a216b2eaa9d132ec4e9a7bbc5f4a10bc52fbbc636" }, "downloads": -1, "filename": "marshmallow-3.0.0b13.tar.gz", "has_sig": false, "md5_digest": "e813802a2ed928cea3add345ad78741a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154930, "upload_time": "2018-08-04T16:54:18", "url": "https://files.pythonhosted.org/packages/13/53/e9555a89b6ced06aab18c9615c91445ffedf32661881ef294780ee9cff17/marshmallow-3.0.0b13.tar.gz" } ], "3.0.0b14": [ { "comment_text": "", "digests": { "md5": "ae361d51b979315b778a72751a1fe564", "sha256": "264d8d2b516ad9f7517133bdc8a012964083926ac1605b1f970960211712743e" }, "downloads": -1, "filename": "marshmallow-3.0.0b14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ae361d51b979315b778a72751a1fe564", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43456, "upload_time": "2018-09-15T21:09:00", "url": "https://files.pythonhosted.org/packages/e9/b7/f81f467ac04545d5d64e938872e1a5ad1ccbfee158a5f2f63199e07058ec/marshmallow-3.0.0b14-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "167dfd2e7b3e01a051ffdb8aaa4381b4", "sha256": "e396f59373649556e335776bf6f4ba2635fdd761b5183569e5673a56dc982fb6" }, "downloads": -1, "filename": "marshmallow-3.0.0b14.tar.gz", "has_sig": false, "md5_digest": "167dfd2e7b3e01a051ffdb8aaa4381b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157412, "upload_time": "2018-09-15T21:09:01", "url": "https://files.pythonhosted.org/packages/01/1a/8bd4ed53232973a55ad9d8b995a56a33228de6c9d369f886e6fe75630511/marshmallow-3.0.0b14.tar.gz" } ], "3.0.0b15": [ { "comment_text": "", "digests": { "md5": "82fd182719d93674487ce629608374b2", "sha256": "55718a6b63372866282b1b14dafae00576cc91c5e35edb4be2be4a402b53e34c" }, "downloads": -1, "filename": "marshmallow-3.0.0b15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "82fd182719d93674487ce629608374b2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43492, "upload_time": "2018-09-19T03:55:30", "url": "https://files.pythonhosted.org/packages/65/b9/babd9101a1bfedcc8520c04bd41c4de64cce4f06caaecca0a7253596a770/marshmallow-3.0.0b15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3a870582a8c04592dcc7fac3be35461c", "sha256": "0de936756260fdcf7091acfbd3c86ff476cea1ea15634229091c69232c854d6e" }, "downloads": -1, "filename": "marshmallow-3.0.0b15.tar.gz", "has_sig": false, "md5_digest": "3a870582a8c04592dcc7fac3be35461c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157962, "upload_time": "2018-09-19T03:55:31", "url": "https://files.pythonhosted.org/packages/5e/2a/5793edeb5d8721ce14be0b2fe9f30575418ba578a33c4a33c3ba5aeedbe5/marshmallow-3.0.0b15.tar.gz" } ], "3.0.0b16": [ { "comment_text": "", "digests": { "md5": "c6adc4e00831870d1989dd6736aa0bf6", "sha256": "43069edb633a39cbfaeb57b89b6bc01c7a96dcf75e518fb366f7c172090974e8" }, "downloads": -1, "filename": "marshmallow-3.0.0b16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c6adc4e00831870d1989dd6736aa0bf6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43532, "upload_time": "2018-09-21T01:27:25", "url": "https://files.pythonhosted.org/packages/78/f7/6914c463be6ff3443b2a2319fab770084e88c387b5ab3c51bbf35f75c20a/marshmallow-3.0.0b16-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7fedd08c35ee3e0726de9e5a2f87517b", "sha256": "c2f7ae91cf320ba3c9178a4f1e383cbacac2cbb012444e1669691c97becd457b" }, "downloads": -1, "filename": "marshmallow-3.0.0b16.tar.gz", "has_sig": false, "md5_digest": "7fedd08c35ee3e0726de9e5a2f87517b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158252, "upload_time": "2018-09-21T01:27:27", "url": "https://files.pythonhosted.org/packages/ac/49/1af418f6fc122c9a2b50c256181096ca8178c599fac9779809a3c4c8cc93/marshmallow-3.0.0b16.tar.gz" } ], "3.0.0b17": [ { "comment_text": "", "digests": { "md5": "6a27b498e6e552d33f928355858e415f", "sha256": "1ca4820515332fe61cd83551afd791dd0ee16fc70cf57883f6735e5b1d9d50ed" }, "downloads": -1, "filename": "marshmallow-3.0.0b17-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a27b498e6e552d33f928355858e415f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47752, "upload_time": "2018-10-13T22:25:44", "url": "https://files.pythonhosted.org/packages/a0/dd/c7b7652cc088f6f421639a04546bb000d8efa5059f9e2992dd69403c7af3/marshmallow-3.0.0b17-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e3ea783cd8fa8bb5285468976fce12e1", "sha256": "e076fae11bcdd6ee94b2c78d670c2ca35583dd97cc5f1d646b851c9f53368f0a" }, "downloads": -1, "filename": "marshmallow-3.0.0b17.tar.gz", "has_sig": false, "md5_digest": "e3ea783cd8fa8bb5285468976fce12e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159772, "upload_time": "2018-10-13T22:25:45", "url": "https://files.pythonhosted.org/packages/3d/01/96d774293bcff2a7de20f801f2b8f51b31f722cc1bc8d707b2675ffd3356/marshmallow-3.0.0b17.tar.gz" } ], "3.0.0b18": [ { "comment_text": "", "digests": { "md5": "f77180ce81f94034d3eb5cdfd3bfbdd0", "sha256": "c250f37ac0e249a8287394a60d91f6240b674642ad999e66cd09463dbccd1d4f" }, "downloads": -1, "filename": "marshmallow-3.0.0b18-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f77180ce81f94034d3eb5cdfd3bfbdd0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47526, "upload_time": "2018-10-16T00:19:46", "url": "https://files.pythonhosted.org/packages/12/f2/ba8e7abb89b7d3570b0879ceeec6f930efef7da96d7464f7479855f8b87b/marshmallow-3.0.0b18-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "643a2d4952631e9a4e499ba2fff9ec24", "sha256": "82b201ad767eb54de371c08cb1db6ca4ad2a728fa41b831e3781bf944815eb38" }, "downloads": -1, "filename": "marshmallow-3.0.0b18.tar.gz", "has_sig": false, "md5_digest": "643a2d4952631e9a4e499ba2fff9ec24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159708, "upload_time": "2018-10-16T00:19:48", "url": "https://files.pythonhosted.org/packages/c9/c5/14f7d5041456eca351ae35ffb35270214d7c8e4c3c20e97df3e2c2d09b94/marshmallow-3.0.0b18.tar.gz" } ], "3.0.0b19": [ { "comment_text": "", "digests": { "md5": "8c2f9ca4cb24efbae1272f68ff38cf3a", "sha256": "81884e930c1db72d8b8e3d8d2d090f2f43427e5c11c37f703b29879980491ab6" }, "downloads": -1, "filename": "marshmallow-3.0.0b19-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8c2f9ca4cb24efbae1272f68ff38cf3a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48076, "upload_time": "2018-10-25T03:17:36", "url": "https://files.pythonhosted.org/packages/60/00/4f792fdbb7f0f243ce7fdb729bee3a8afde968e4bfda8365d47a9367a787/marshmallow-3.0.0b19-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "07727d4be5daba5cf8cbfea654adf76c", "sha256": "5e0053c86e3abaa72a03bbe0021ec97270c13fd6400b682eb1aeaf24b871bc8a" }, "downloads": -1, "filename": "marshmallow-3.0.0b19.tar.gz", "has_sig": false, "md5_digest": "07727d4be5daba5cf8cbfea654adf76c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161637, "upload_time": "2018-10-25T03:17:38", "url": "https://files.pythonhosted.org/packages/13/90/f7708f61e49ac2e412c341aa29ecb38d0dccbca1b02295ab1a68ac4ec8ef/marshmallow-3.0.0b19.tar.gz" } ], "3.0.0b2": [ { "comment_text": "", "digests": { "md5": "3145ffb9f6a650e3714f036e968af496", "sha256": "0e8c3cc6630778e3c5e2be0537c47971032cbe5759fdaa627a056ddf3563bbce" }, "downloads": -1, "filename": "marshmallow-3.0.0b2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3145ffb9f6a650e3714f036e968af496", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43215, "upload_time": "2017-03-20T01:33:58", "url": "https://files.pythonhosted.org/packages/be/ae/94a6d1854be8ded2528cd29fde90c70dc30a360b11ef71cfe9c5e7000ff9/marshmallow-3.0.0b2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "58ad7d3ae90d15b1168266e5e0a6e440", "sha256": "a995d8bbf82f5f0a215e45ae0d15135de536d72f49dc730239f9b3d5dcbe7685" }, "downloads": -1, "filename": "marshmallow-3.0.0b2.tar.gz", "has_sig": false, "md5_digest": "58ad7d3ae90d15b1168266e5e0a6e440", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 140009, "upload_time": "2017-03-20T01:34:01", "url": "https://files.pythonhosted.org/packages/fa/12/4a837dc26173819a29e713cbfb490a83d5296545abbe53422d7b14604d8f/marshmallow-3.0.0b2.tar.gz" } ], "3.0.0b20": [ { "comment_text": "", "digests": { "md5": "611d0eba56e8476005e3a33c9ef63d0b", "sha256": "5a65e5c7e9b4e050c989e09d7353eeb91d313d39dfcfa6540aa27f39bfb00b4e" }, "downloads": -1, "filename": "marshmallow-3.0.0b20-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "611d0eba56e8476005e3a33c9ef63d0b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48292, "upload_time": "2018-11-02T01:38:17", "url": "https://files.pythonhosted.org/packages/c3/52/eb101cd372d82260877a6adeeb638642d33c2339e6483a27de01bb72ecc0/marshmallow-3.0.0b20-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e9435a278861e05e0166fac37d0b4768", "sha256": "0a96d88418c4e7c50a39a734c4ed3d2a991a37e6b7a8970dbbdb8ccb7f08ecb0" }, "downloads": -1, "filename": "marshmallow-3.0.0b20.tar.gz", "has_sig": false, "md5_digest": "e9435a278861e05e0166fac37d0b4768", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162453, "upload_time": "2018-11-02T01:38:18", "url": "https://files.pythonhosted.org/packages/9b/dd/c6125334e434794754bf7fdc85bd9a26bdd3b1734471562a2b1ccd6e5802/marshmallow-3.0.0b20.tar.gz" } ], "3.0.0b3": [ { "comment_text": "", "digests": { "md5": "3ce4c166abe87ff7d93dbf4f14b36238", "sha256": "d8258a1775ab3aad92ebd6ce87ef161566d9c54b97274bed8888cf7cfa5adfdc" }, "downloads": -1, "filename": "marshmallow-3.0.0b3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3ce4c166abe87ff7d93dbf4f14b36238", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43573, "upload_time": "2017-08-20T16:47:24", "url": "https://files.pythonhosted.org/packages/fa/ce/d722cb41bf11533088067e19dd2e7f2abfd917dcb2e0ee0ce357168a8acb/marshmallow-3.0.0b3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fcbd181bf303ba3bb47cf1416b250f3b", "sha256": "4dfbebd9572cbc53c0f2ead10d9fcf1d207653e69c90fe362d686e1f64ccac1e" }, "downloads": -1, "filename": "marshmallow-3.0.0b3.tar.gz", "has_sig": false, "md5_digest": "fcbd181bf303ba3bb47cf1416b250f3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 141414, "upload_time": "2017-08-20T16:47:26", "url": "https://files.pythonhosted.org/packages/60/97/fe8046349283313a9edaa0bb5c959f2bed6af0a49bd68b4537747bea7ab4/marshmallow-3.0.0b3.tar.gz" } ], "3.0.0b4": [ { "comment_text": "", "digests": { "md5": "dec8b0755a45b26cace4ea61c32ab380", "sha256": "c53b8c86827a16e14d1082f12b971e7afffc793183285785f0b01ad905c29bd6" }, "downloads": -1, "filename": "marshmallow-3.0.0b4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dec8b0755a45b26cace4ea61c32ab380", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43806, "upload_time": "2017-10-23T23:36:00", "url": "https://files.pythonhosted.org/packages/ff/02/776f98b26812fc206a60c0366f9d6326b5b6a4158e80abf122669819bad0/marshmallow-3.0.0b4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6eea8a9391f627136d63032df6a71c26", "sha256": "ba8130b57947ce1d2f6cc00382e00530ceedac43a77a03400f127a71225ff5b8" }, "downloads": -1, "filename": "marshmallow-3.0.0b4.tar.gz", "has_sig": false, "md5_digest": "6eea8a9391f627136d63032df6a71c26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 142286, "upload_time": "2017-10-23T23:36:01", "url": "https://files.pythonhosted.org/packages/48/05/edec98ef18e0b676e3ed89c563e75fda7b577c74f3d6a56eb887c523b4e2/marshmallow-3.0.0b4.tar.gz" } ], "3.0.0b5": [ { "comment_text": "", "digests": { "md5": "252cd317957fb2a83f63c9c283d65ed0", "sha256": "cfd9c20225f3acd7457bf72fea931852cc8bf5a511cb75dd546cec773fb19a0a" }, "downloads": -1, "filename": "marshmallow-3.0.0b5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "252cd317957fb2a83f63c9c283d65ed0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44358, "upload_time": "2017-12-30T19:00:32", "url": "https://files.pythonhosted.org/packages/7f/31/a9e75aa74347bdefc078ed61e33ba6e2ba8c38d78f6578204ce300c11ff8/marshmallow-3.0.0b5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f2217fb8e26675e57549cca9d578dc3f", "sha256": "5175ce78ed1ec9693730d119f7f2fd3bde22162e63ec559b5bf0ccd7dbfa4ea0" }, "downloads": -1, "filename": "marshmallow-3.0.0b5.tar.gz", "has_sig": false, "md5_digest": "f2217fb8e26675e57549cca9d578dc3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 143648, "upload_time": "2017-12-30T19:00:34", "url": "https://files.pythonhosted.org/packages/31/9c/8d1f437e1eb53a5b7fa6af98da2df83188dda1f4c04ea64cf166a33d14ee/marshmallow-3.0.0b5.tar.gz" } ], "3.0.0b6": [ { "comment_text": "", "digests": { "md5": "8e2b24c1c4321e13fbbf19240fca347e", "sha256": "fa705c4c5d24afd13e628473ca20b35cf1115b65f77bd17333a084c6ce0339f0" }, "downloads": -1, "filename": "marshmallow-3.0.0b6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8e2b24c1c4321e13fbbf19240fca347e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44290, "upload_time": "2018-01-12T19:20:15", "url": "https://files.pythonhosted.org/packages/25/09/cc95038571bf05e3228bc983140937dee00eb7015672313b022ff91024bd/marshmallow-3.0.0b6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "484270bcd0c64509f3acb78e0ea69d41", "sha256": "461e327f4ec716069a4b18cb6049227463b9ac5ef162ee2e9fe81bfa9230ac85" }, "downloads": -1, "filename": "marshmallow-3.0.0b6.tar.gz", "has_sig": false, "md5_digest": "484270bcd0c64509f3acb78e0ea69d41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144146, "upload_time": "2018-01-12T19:20:16", "url": "https://files.pythonhosted.org/packages/18/eb/12064afba56a9799eb629758ae3541f5ee199f87887407ed473518619c8d/marshmallow-3.0.0b6.tar.gz" } ], "3.0.0b7": [ { "comment_text": "", "digests": { "md5": "1b362729fbe54e55d5dec98c058b0ef4", "sha256": "0d049fdce4a3eecd91261188befeaeb937e1977fae6dbb86279b3eec8cb7feeb" }, "downloads": -1, "filename": "marshmallow-3.0.0b7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1b362729fbe54e55d5dec98c058b0ef4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44022, "upload_time": "2018-02-03T18:02:54", "url": "https://files.pythonhosted.org/packages/00/b2/b4db6b0328b4a02044afdb5afd32dbed5a10db525843b12f6326b5e8a245/marshmallow-3.0.0b7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b4be6a3bdb293a191ca48b148e70aaa0", "sha256": "dac05fc434aa21ba46e7a7d468c844c899e44f42380fba04dd896253fd7d7d52" }, "downloads": -1, "filename": "marshmallow-3.0.0b7.tar.gz", "has_sig": false, "md5_digest": "b4be6a3bdb293a191ca48b148e70aaa0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 148697, "upload_time": "2018-02-03T18:02:55", "url": "https://files.pythonhosted.org/packages/79/0d/672ed20d09159d161c93e52bf666aab86fb35b550136c7f745a58d8e0499/marshmallow-3.0.0b7.tar.gz" } ], "3.0.0b8": [ { "comment_text": "", "digests": { "md5": "c0fdb05be13964eb142b05fd093160eb", "sha256": "4293185d8069ab4363f6359bc9fcfdc8be2fd2c593318d36ea391b93b632241b" }, "downloads": -1, "filename": "marshmallow-3.0.0b8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c0fdb05be13964eb142b05fd093160eb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43548, "upload_time": "2018-03-24T16:41:00", "url": "https://files.pythonhosted.org/packages/0b/66/39fca5bbce1d221c8711c5f8cdc78da41c1bb53298c71b2f697757e5a540/marshmallow-3.0.0b8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "69264a8621d0e5b2b2d9f334d00e719e", "sha256": "5ea1340c1a17c560e05db1be8ba32908d557a309c7e490ba863bb781728603a1" }, "downloads": -1, "filename": "marshmallow-3.0.0b8.tar.gz", "has_sig": false, "md5_digest": "69264a8621d0e5b2b2d9f334d00e719e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 148882, "upload_time": "2018-03-24T16:41:01", "url": "https://files.pythonhosted.org/packages/f0/e5/729e28e144df022ca2b6b11ab21fcae684fdee220c75a130ca2f9454355b/marshmallow-3.0.0b8.tar.gz" } ], "3.0.0b9": [ { "comment_text": "", "digests": { "md5": "b6261675b524d451f8b0b95afb00e712", "sha256": "dcaa1cb13fc54db23c66e5fd56a666dadc4c9a4e99b8e465d4f69cccb1e91696" }, "downloads": -1, "filename": "marshmallow-3.0.0b9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b6261675b524d451f8b0b95afb00e712", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41494, "upload_time": "2018-04-26T02:32:44", "url": "https://files.pythonhosted.org/packages/c6/8f/1cbdb31d542ba5293c7449449db0a74ea995de37a7e1eb1318b50776b063/marshmallow-3.0.0b9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "02001cd3db42a9f48f368a3f47cff29a", "sha256": "cbedade4d2d7cdd88110de3645e67b63efbec13ad191fcbb3b8f958ad01ffa06" }, "downloads": -1, "filename": "marshmallow-3.0.0b9.tar.gz", "has_sig": false, "md5_digest": "02001cd3db42a9f48f368a3f47cff29a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149419, "upload_time": "2018-04-26T02:32:45", "url": "https://files.pythonhosted.org/packages/c4/9e/8075208ad89ad06831e1570fa176457821b07a2414277926b5a0f398db4c/marshmallow-3.0.0b9.tar.gz" } ], "3.0.0rc1": [ { "comment_text": "", "digests": { "md5": "3723bf2a5076b7d88499de82fc883adb", "sha256": "9aa50624253e654ae97a22854e37287042911c15fb23932be357e56df33c2d51" }, "downloads": -1, "filename": "marshmallow-3.0.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3723bf2a5076b7d88499de82fc883adb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48333, "upload_time": "2018-11-30T03:55:53", "url": "https://files.pythonhosted.org/packages/0b/c7/743cdcdb2b85b1c11cbbb9a787037ad1e6991ff029cad7cba88a948c607f/marshmallow-3.0.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b891d595ca3f73a235ae6171bf664b9f", "sha256": "7adba78acbce1a812185ab8139d2c80223387d751f8c558d53eceb8aecf7cae5" }, "downloads": -1, "filename": "marshmallow-3.0.0rc1.tar.gz", "has_sig": false, "md5_digest": "b891d595ca3f73a235ae6171bf664b9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 164161, "upload_time": "2018-11-30T03:55:55", "url": "https://files.pythonhosted.org/packages/c0/d8/18f53148d8ceb75efcbc44c11114f39407f4dd614d73a2e9e08208f3ae14/marshmallow-3.0.0rc1.tar.gz" } ], "3.0.0rc2": [ { "comment_text": "", "digests": { "md5": "2ebf7cefdffd128ed91292f7bfb13ea2", "sha256": "3133fb98afd627dcd8c06e4705f0ecea1b28003a53820d0266fa6c0ff7cf215c" }, "downloads": -1, "filename": "marshmallow-3.0.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2ebf7cefdffd128ed91292f7bfb13ea2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44354, "upload_time": "2019-01-03T15:58:55", "url": "https://files.pythonhosted.org/packages/23/15/7484cb4b1e3a6c022eed861184b864c20d7bfe0ed4b83ac21ff9a07774bc/marshmallow-3.0.0rc2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "19d689b54864bfd6f77e98c56cb6e061", "sha256": "6489e72ea75a30cb07686ce01e24bf65fc7f42edf429153a70abb9e38e56ef52" }, "downloads": -1, "filename": "marshmallow-3.0.0rc2.tar.gz", "has_sig": false, "md5_digest": "19d689b54864bfd6f77e98c56cb6e061", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 166813, "upload_time": "2019-01-03T15:58:57", "url": "https://files.pythonhosted.org/packages/aa/57/9a9f93996ca7064aec17cba39a1435a51e17989813aba74e24b38ec1a709/marshmallow-3.0.0rc2.tar.gz" } ], "3.0.0rc3": [ { "comment_text": "", "digests": { "md5": "8fb051ff45cfb5fa2b58d37a2d9232bb", "sha256": "313836a251e67d2ef06631f3bddfffdd7d1c5b16b4efc76244afa6218c5e17b0" }, "downloads": -1, "filename": "marshmallow-3.0.0rc3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8fb051ff45cfb5fa2b58d37a2d9232bb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44029, "upload_time": "2019-01-14T00:23:32", "url": "https://files.pythonhosted.org/packages/1f/a7/ff0493a489c4ea9fe3dde999997940fddb269528609e5bcd32f5f92be302/marshmallow-3.0.0rc3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "75e2386a5210286e9dd44a01bc6c1041", "sha256": "c850c60dbb840860f58f161b81ae25cf84807eeae3f9a1d9a2f8c704d6bd2b80" }, "downloads": -1, "filename": "marshmallow-3.0.0rc3.tar.gz", "has_sig": false, "md5_digest": "75e2386a5210286e9dd44a01bc6c1041", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 168004, "upload_time": "2019-01-14T00:23:34", "url": "https://files.pythonhosted.org/packages/47/6b/112cd89b1d23f68735871e5f19000a9442ca9b85909952191d37269a5c72/marshmallow-3.0.0rc3.tar.gz" } ], "3.0.0rc4": [ { "comment_text": "", "digests": { "md5": "600e35ff8151396bf4b5884ad62d0739", "sha256": "b41cc52fe0491bdb8aa3e2186ca57d478d9ef69dba87fe37d309aa8a08fd30dd" }, "downloads": -1, "filename": "marshmallow-3.0.0rc4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "600e35ff8151396bf4b5884ad62d0739", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44727, "upload_time": "2019-02-08T14:03:50", "url": "https://files.pythonhosted.org/packages/59/ef/887fa252964e8960237edaf12877419fd78b8e4513ae5ea86034f2ae95c4/marshmallow-3.0.0rc4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac4bcfdc5c48a5c82304063c30dfb361", "sha256": "7f9aba737a59dd3c6c6c79846f1df2fbfe036c17f038bbc2c83911b7304a90e1" }, "downloads": -1, "filename": "marshmallow-3.0.0rc4.tar.gz", "has_sig": false, "md5_digest": "ac4bcfdc5c48a5c82304063c30dfb361", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 169505, "upload_time": "2019-02-08T14:03:52", "url": "https://files.pythonhosted.org/packages/aa/1c/9b1d93cc6d3f8e8d21ce5fed0bf680ec8dcc9d014707cdc34edd719a6089/marshmallow-3.0.0rc4.tar.gz" } ], "3.0.0rc5": [ { "comment_text": "", "digests": { "md5": "c5b28b5bf6e644f923c68540879e2a43", "sha256": "e23b8618275225ec111225dc01301e1cc0c3cbb4e41307b35136f891a29d3949" }, "downloads": -1, "filename": "marshmallow-3.0.0rc5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c5b28b5bf6e644f923c68540879e2a43", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44234, "upload_time": "2019-03-30T16:22:45", "url": "https://files.pythonhosted.org/packages/fd/91/06f9a52d8647fc7bebf24e3745f8eea4e2495006676353d3494d2f1afa93/marshmallow-3.0.0rc5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "846ff9411ec40e95cd581f1a88804320", "sha256": "ea2a241f2ea69bb0863f2c00b907a8e22d7dd8b6d5b9960135906037c9dd7068" }, "downloads": -1, "filename": "marshmallow-3.0.0rc5.tar.gz", "has_sig": false, "md5_digest": "846ff9411ec40e95cd581f1a88804320", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 166684, "upload_time": "2019-03-30T16:22:46", "url": "https://files.pythonhosted.org/packages/71/78/b27626d937534d513b7de5a3210c071bc2de0721bdc72594e7d9d42beea2/marshmallow-3.0.0rc5.tar.gz" } ], "3.0.0rc6": [ { "comment_text": "", "digests": { "md5": "adfcfa2660fa737ed076535bfe05e8dc", "sha256": "5e0b15f33c6e227b51e1fbe29a306676686f3c3a3bf7fe0aca005144c3e74d7c" }, "downloads": -1, "filename": "marshmallow-3.0.0rc6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "adfcfa2660fa737ed076535bfe05e8dc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 42755, "upload_time": "2019-05-05T20:20:21", "url": "https://files.pythonhosted.org/packages/dd/d6/b6b2b90a9e10edf99a8bea3bc5200619829f04c9d9c0c5b3839d68baf072/marshmallow-3.0.0rc6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b4fc7e7ca1eefe7ed20c3253fb665688", "sha256": "8c6a22cfc9ca33945e2707c771c44030a035be96082a18643d431280b9b8f08e" }, "downloads": -1, "filename": "marshmallow-3.0.0rc6.tar.gz", "has_sig": false, "md5_digest": "b4fc7e7ca1eefe7ed20c3253fb665688", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 165531, "upload_time": "2019-05-05T20:20:22", "url": "https://files.pythonhosted.org/packages/91/0d/c91fc9cbc7e737ddc01d5b55900d7611ea52bd24c0660ea2e4df1a3e0ac9/marshmallow-3.0.0rc6.tar.gz" } ], "3.0.0rc7": [ { "comment_text": "", "digests": { "md5": "dd3f5143858cebab27903440c425fb6b", "sha256": "1ba81630e38a4c143faf54833357758d0b013ba8b0707b115f795153e970e5c4" }, "downloads": -1, "filename": "marshmallow-3.0.0rc7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dd3f5143858cebab27903440c425fb6b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 42981, "upload_time": "2019-06-15T18:33:24", "url": "https://files.pythonhosted.org/packages/6d/bd/bc54cc59e1ce5a6bf92f546098911f0e6ef68160354430fcd17c8cc912b2/marshmallow-3.0.0rc7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "860ac858b1ffc71058fae12456799a00", "sha256": "f8dcb1f1fb9ebd26b2edc91878f32a229a3c079520611a21955bf9d73be2ab41" }, "downloads": -1, "filename": "marshmallow-3.0.0rc7.tar.gz", "has_sig": false, "md5_digest": "860ac858b1ffc71058fae12456799a00", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 166645, "upload_time": "2019-06-15T18:33:26", "url": "https://files.pythonhosted.org/packages/9c/f0/05282a6745086e4918f6b364e0da83b6347c7f66a97205003223c8ab28ac/marshmallow-3.0.0rc7.tar.gz" } ], "3.0.0rc8": [ { "comment_text": "", "digests": { "md5": "ebeea9df80bf17c0de57298137cf91d0", "sha256": "290fcfaff7b716836d6026c6eb698ebc4078046db30af213274fb9a01fa7b6b8" }, "downloads": -1, "filename": "marshmallow-3.0.0rc8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ebeea9df80bf17c0de57298137cf91d0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 43148, "upload_time": "2019-07-04T19:42:49", "url": "https://files.pythonhosted.org/packages/bc/e2/71825cd6ed8232c446e839dcfdd44ba7c0a861accff12490e5f8b499906e/marshmallow-3.0.0rc8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4a633d3d36eac511ad2cab1ac8062b0", "sha256": "ca6713682cb9ec8829c1688461ca5667e3b575945b53a3ea06ed654a0f05dc91" }, "downloads": -1, "filename": "marshmallow-3.0.0rc8.tar.gz", "has_sig": false, "md5_digest": "d4a633d3d36eac511ad2cab1ac8062b0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 167630, "upload_time": "2019-07-04T19:42:51", "url": "https://files.pythonhosted.org/packages/7f/9e/6984cc7c8a5c96ac9526771e3433770375ef7fd25363d605b10041d5aeb4/marshmallow-3.0.0rc8.tar.gz" } ], "3.0.0rc9": [ { "comment_text": "", "digests": { "md5": "adb459d16aa37d62e5017aaa841be020", "sha256": "bc91e3f90e86133241ac62ea0dd35217d631a207e8628430bc66c347dbe12f7d" }, "downloads": -1, "filename": "marshmallow-3.0.0rc9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "adb459d16aa37d62e5017aaa841be020", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 42779, "upload_time": "2019-07-31T13:32:43", "url": "https://files.pythonhosted.org/packages/32/d8/62ae7ef9e7aee32242310b149f87f787fa0b21e12c3a82e47fea36987a16/marshmallow-3.0.0rc9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b6b4b33b5b8f9b1279a0bd54a7c77f0", "sha256": "7ea8540fc7e35be3b0af8b017313944b984d5acdb118b4ba3c270ac9611765c7" }, "downloads": -1, "filename": "marshmallow-3.0.0rc9.tar.gz", "has_sig": false, "md5_digest": "9b6b4b33b5b8f9b1279a0bd54a7c77f0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 166939, "upload_time": "2019-07-31T13:32:45", "url": "https://files.pythonhosted.org/packages/4c/47/b0f718375908c47b0e61840dbf772e1df59a2fb539eb17b8ac940ad978de/marshmallow-3.0.0rc9.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "472f7b80da6154df05aa999a32f825f7", "sha256": "fcfc9ffd75a883da06f30f604a4e81dd0b56eb9438f4d0a8de6bbaa163ce9ec3" }, "downloads": -1, "filename": "marshmallow-3.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "472f7b80da6154df05aa999a32f825f7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 43208, "upload_time": "2019-08-21T17:56:24", "url": "https://files.pythonhosted.org/packages/c7/0d/d6dc4b049dc180956b3a00e490653a9f8f1057f3d838c1485f6000a11fd5/marshmallow-3.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff5d4cba305c74a42a4e73e1cc07f6b1", "sha256": "23f684b54b1955ebd5bdfbdda4062e438ef86218f14f1a356f570cdf0c016ab3" }, "downloads": -1, "filename": "marshmallow-3.0.1.tar.gz", "has_sig": false, "md5_digest": "ff5d4cba305c74a42a4e73e1cc07f6b1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 168186, "upload_time": "2019-08-21T17:56:25", "url": "https://files.pythonhosted.org/packages/e3/3f/791be443ce17d2b44965d9349432ca548833e7b063ae372f0b3d0dc3b7ec/marshmallow-3.0.1.tar.gz" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "a5583e72b9bad725b4b3dcd3fd6c3281", "sha256": "238131053cdd6a04773ddcbb1faa42d46ba931f2fa9a845ca7f3e47cd8077074" }, "downloads": -1, "filename": "marshmallow-3.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a5583e72b9bad725b4b3dcd3fd6c3281", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 43387, "upload_time": "2019-09-04T12:49:22", "url": "https://files.pythonhosted.org/packages/95/50/37c6ac534a584872a0d5e09a15357bf04c53d4d15991efe421dce128c57d/marshmallow-3.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "47d1fb4d5d0cedc41d3cf29f0da53fc8", "sha256": "33155c0d25671e30243ead12f34f4b57949809eb43dc36c2c0eb9296be801ce1" }, "downloads": -1, "filename": "marshmallow-3.0.2.tar.gz", "has_sig": false, "md5_digest": "47d1fb4d5d0cedc41d3cf29f0da53fc8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 168727, "upload_time": "2019-09-04T12:49:24", "url": "https://files.pythonhosted.org/packages/05/f9/9f023b711ac9fc1f29e98d4751a8869521417c271a2b059f620951f8d1ef/marshmallow-3.0.2.tar.gz" } ], "3.0.3": [ { "comment_text": "", "digests": { "md5": "b6261dd36528ab436a6191589d044de5", "sha256": "159c3ed37094d66867bbacdf2e7effd7c7ad88c6b11f9b398ff5ea1d118508c3" }, "downloads": -1, "filename": "marshmallow-3.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b6261dd36528ab436a6191589d044de5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 43406, "upload_time": "2019-09-05T01:44:14", "url": "https://files.pythonhosted.org/packages/c2/44/5dfc33a946213eebb7d9fb0952b5bd5a04a34a3ecff3e6344e4d4b58a060/marshmallow-3.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e15b73871f6979fdfa1cae6b39e7a2f", "sha256": "51188df086da5c427c3c193faddf7f95857ee4053dbf2d083e5cbfd846b2fb29" }, "downloads": -1, "filename": "marshmallow-3.0.3.tar.gz", "has_sig": false, "md5_digest": "8e15b73871f6979fdfa1cae6b39e7a2f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 168839, "upload_time": "2019-09-05T01:44:16", "url": "https://files.pythonhosted.org/packages/36/01/c46fdcd4acd72e1fcff74ce37b6b9cdaf19bcf2e633dba91af8821ef93df/marshmallow-3.0.3.tar.gz" } ], "3.0.4": [ { "comment_text": "", "digests": { "md5": "140ad6adfd371d3c1f537139cca68d1c", "sha256": "76603a8a7517e753ff4ab811b8b987bc14cba206cf0aa7473142120dee6b9a78" }, "downloads": -1, "filename": "marshmallow-3.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "140ad6adfd371d3c1f537139cca68d1c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 43581, "upload_time": "2019-09-12T02:08:19", "url": "https://files.pythonhosted.org/packages/cd/f1/046616545a38d05288765dbcd040e43fd6500412514740fef75408efd61b/marshmallow-3.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bfc2a677d93ccfe415407c729e8aadba", "sha256": "5d6412948383b8d628b9d267045e83a5c4c387300ee7d7d57edc93d375be2660" }, "downloads": -1, "filename": "marshmallow-3.0.4.tar.gz", "has_sig": false, "md5_digest": "bfc2a677d93ccfe415407c729e8aadba", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 168688, "upload_time": "2019-09-12T02:08:21", "url": "https://files.pythonhosted.org/packages/dc/e5/db8286d5c5d4209bcdca89c160c22fe96f5bf033f6c6db21f7d34f561579/marshmallow-3.0.4.tar.gz" } ], "3.0.5": [ { "comment_text": "", "digests": { "md5": "02afbc398e682fd4da636972946e0a60", "sha256": "4b790b6910c0261d22de296ed42569affcbd80097eb770eb6088a79bef69c330" }, "downloads": -1, "filename": "marshmallow-3.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "02afbc398e682fd4da636972946e0a60", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 43610, "upload_time": "2019-09-13T02:57:37", "url": "https://files.pythonhosted.org/packages/ea/43/6d61ca1a4de901701e20f5cf3a15332df4447391fa2258f4e7d87019b14d/marshmallow-3.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3e3d06d0691e0fe4706e434178fffbd9", "sha256": "fe31ac05fbde972909a752d12b808cbbc15a50ed0a692410e1b227ff10b483ff" }, "downloads": -1, "filename": "marshmallow-3.0.5.tar.gz", "has_sig": false, "md5_digest": "3e3d06d0691e0fe4706e434178fffbd9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 168970, "upload_time": "2019-09-13T02:57:39", "url": "https://files.pythonhosted.org/packages/93/03/e06b165d8611f7985a4d2f58b3e2ba6e66d4ad4cdc818c32a01d647e5680/marshmallow-3.0.5.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "98639ef8c674046e4ff168ef6adbf1f8", "sha256": "65bdcf66dd338aee9104eaae209ac970c56d41f2ae77778596c32af59fdfaa49" }, "downloads": -1, "filename": "marshmallow-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "98639ef8c674046e4ff168ef6adbf1f8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 44725, "upload_time": "2019-09-15T20:36:53", "url": "https://files.pythonhosted.org/packages/46/f2/5d89a0288e5e6f4846d47122d84331906f55968019d8b6848a979758721d/marshmallow-3.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "acc0e57a3e79638abbe6886bbbff1612", "sha256": "c1e78710709733a553deff59ba90d72677684a32f5a998b68c44e67e3876f5cb" }, "downloads": -1, "filename": "marshmallow-3.1.0.tar.gz", "has_sig": false, "md5_digest": "acc0e57a3e79638abbe6886bbbff1612", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 170136, "upload_time": "2019-09-15T20:36:55", "url": "https://files.pythonhosted.org/packages/5f/14/95e8476e0ffadb69b254f74d09524717806e09ed3cbc08f1535ee0296e50/marshmallow-3.1.0.tar.gz" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "ce77d40f0613a57556e1d44e19edd192", "sha256": "afec49590bae715f6365ccc777e457b2811c00eacea0a6130f3155efd94dc363" }, "downloads": -1, "filename": "marshmallow-3.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ce77d40f0613a57556e1d44e19edd192", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 44640, "upload_time": "2019-09-16T12:40:45", "url": "https://files.pythonhosted.org/packages/09/3a/2ec5dae517897b39628878f33e969c28d5917d82ee134a6aeac2c48d8a6d/marshmallow-3.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0d0085e6b487ce9b152f9130827cc599", "sha256": "d89fd236e8fabf5808b6d7c344303fb308ba56891698ee7654cf7ff9f56ec4fc" }, "downloads": -1, "filename": "marshmallow-3.1.1.tar.gz", "has_sig": false, "md5_digest": "0d0085e6b487ce9b152f9130827cc599", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 166214, "upload_time": "2019-09-16T12:40:48", "url": "https://files.pythonhosted.org/packages/2a/66/e65d34072cda669acfacc63840975ebddeec9b9015437fcea12378b6a87c/marshmallow-3.1.1.tar.gz" } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "cf0e43b2921f207e824bb8add489361d", "sha256": "801a7c70f0596b812a086773b9d7ba85b4bbad1becab14cde460ab7798511409" }, "downloads": -1, "filename": "marshmallow-3.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cf0e43b2921f207e824bb8add489361d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 45472, "upload_time": "2019-09-17T13:59:32", "url": "https://files.pythonhosted.org/packages/ae/a2/6d063881c972bd68e4cc880d0a81da032a937a9ca502761c713f201eb232/marshmallow-3.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c8ea240c720507a9c23cc1ff9a4db7b", "sha256": "6dca0125320c15795c4f2dfe8f2f5c37a96916e7a09a123eba05ef24d3126b94" }, "downloads": -1, "filename": "marshmallow-3.2.0.tar.gz", "has_sig": false, "md5_digest": "0c8ea240c720507a9c23cc1ff9a4db7b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 166811, "upload_time": "2019-09-17T13:59:35", "url": "https://files.pythonhosted.org/packages/4d/b4/a071a6c9a8d554371d982701347fe818886b6a75385a8ce18aa5de7f9fd1/marshmallow-3.2.0.tar.gz" } ], "3.2.1": [ { "comment_text": "", "digests": { "md5": "c6277392e0103675907a55dc451e8ce4", "sha256": "077b4612f5d3b9333b736fdc6b963d2b46d409070f44ff3e6c4109645c673e83" }, "downloads": -1, "filename": "marshmallow-3.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c6277392e0103675907a55dc451e8ce4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 45469, "upload_time": "2019-10-01T03:36:30", "url": "https://files.pythonhosted.org/packages/78/8c/aa99cd72e69ce14c754a4df752a57faffbd698b14a6fda598a3950273e99/marshmallow-3.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "237f9f1a7cf56751a79d088c3c9a781e", "sha256": "9a2f3e8ea5f530a9664e882d7d04b58650f46190178b2264c72b7d20399d28f0" }, "downloads": -1, "filename": "marshmallow-3.2.1.tar.gz", "has_sig": false, "md5_digest": "237f9f1a7cf56751a79d088c3c9a781e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 166807, "upload_time": "2019-10-01T03:36:32", "url": "https://files.pythonhosted.org/packages/d1/c1/66711e6dc7c2cb665435382636a03bed30dcc2fca12fa09500ce0059b1f8/marshmallow-3.2.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c6277392e0103675907a55dc451e8ce4", "sha256": "077b4612f5d3b9333b736fdc6b963d2b46d409070f44ff3e6c4109645c673e83" }, "downloads": -1, "filename": "marshmallow-3.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c6277392e0103675907a55dc451e8ce4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 45469, "upload_time": "2019-10-01T03:36:30", "url": "https://files.pythonhosted.org/packages/78/8c/aa99cd72e69ce14c754a4df752a57faffbd698b14a6fda598a3950273e99/marshmallow-3.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "237f9f1a7cf56751a79d088c3c9a781e", "sha256": "9a2f3e8ea5f530a9664e882d7d04b58650f46190178b2264c72b7d20399d28f0" }, "downloads": -1, "filename": "marshmallow-3.2.1.tar.gz", "has_sig": false, "md5_digest": "237f9f1a7cf56751a79d088c3c9a781e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 166807, "upload_time": "2019-10-01T03:36:32", "url": "https://files.pythonhosted.org/packages/d1/c1/66711e6dc7c2cb665435382636a03bed30dcc2fca12fa09500ce0059b1f8/marshmallow-3.2.1.tar.gz" } ] }