{ "info": { "author": "Steven Loria", "author_email": "sloria1@gmail.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "*******************\nmarshmallow-jsonapi\n*******************\n\n.. image:: https://badgen.net/pypi/v/marshmallow-jsonapi\n :target: https://pypi.org/project/marshmallow-jsonapi/\n :alt: PyPI version\n\n.. image:: https://dev.azure.com/sloria/sloria/_apis/build/status/marshmallow-code.marshmallow-jsonapi?branchName=dev\n :target: https://dev.azure.com/sloria/sloria/_build/latest?definitionId=7&branchName=dev\n :alt: Build status\n\n.. image:: https://readthedocs.org/projects/marshmallow-jsonapi/badge/\n :target: https://marshmallow-jsonapi.readthedocs.io/\n :alt: Documentation\n\n.. image:: https://badgen.net/badge/marshmallow/2,3?list=1\n :target: https://marshmallow.readthedocs.io/en/latest/upgrading.html\n :alt: marshmallow 2/3 compatible\n\n.. image:: https://badgen.net/badge/code%20style/black/000\n :target: https://github.com/ambv/black\n :alt: code style: black\n\nHomepage: http://marshmallow-jsonapi.readthedocs.io/\n\nJSON API 1.0 (`https://jsonapi.org `_) formatting with `marshmallow `_.\n\nmarshmallow-jsonapi provides a simple way to produce JSON API-compliant data in any Python web framework.\n\n.. code-block:: python\n\n from marshmallow_jsonapi import Schema, fields\n\n\n class PostSchema(Schema):\n id = fields.Str(dump_only=True)\n title = fields.Str()\n\n author = fields.Relationship(\n \"/authors/{author_id}\", related_url_kwargs={\"author_id\": \"\"}\n )\n\n comments = fields.Relationship(\n \"/posts/{post_id}/comments\",\n related_url_kwargs={\"post_id\": \"\"},\n # Include resource linkage\n many=True,\n include_resource_linkage=True,\n type_=\"comments\",\n )\n\n class Meta:\n type_ = \"posts\"\n\n\n post_schema = PostSchema()\n post_schema.dump(post)\n # {\n # \"data\": {\n # \"id\": \"1\",\n # \"type\": \"posts\"\n # \"attributes\": {\n # \"title\": \"JSON API paints my bikeshed!\"\n # },\n # \"relationships\": {\n # \"author\": {\n # \"links\": {\n # \"related\": \"/authors/9\"\n # }\n # },\n # \"comments\": {\n # \"links\": {\n # \"related\": \"/posts/1/comments/\"\n # }\n # \"data\": [\n # {\"id\": 5, \"type\": \"comments\"},\n # {\"id\": 12, \"type\": \"comments\"}\n # ],\n # }\n # },\n # }\n # }\n\nInstallation\n============\n::\n\n pip install marshmallow-jsonapi\n\n\nDocumentation\n=============\n\nFull documentation is available at https://marshmallow-jsonapi.readthedocs.io/.\n\nRequirements\n============\n\n- Python >= 3.6\n\nProject Links\n=============\n\n- Docs: http://marshmallow-jsonapi.readthedocs.io/\n- Changelog: http://marshmallow-jsonapi.readthedocs.io/en/latest/changelog.html\n- Contributing Guidelines: https://marshmallow-jsonapi.readthedocs.io/en/latest/contributing.html\n- PyPI: https://pypi.python.org/pypi/marshmallow-jsonapi\n- Issues: https://github.com/marshmallow-code/marshmallow-jsonapi/issues\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-jsonapi", "keywords": "marshmallow-jsonapi marshmallow marshalling serialization jsonapi deserialization validation", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "marshmallow-jsonapi", "package_url": "https://pypi.org/project/marshmallow-jsonapi/", "platform": "", "project_url": "https://pypi.org/project/marshmallow-jsonapi/", "project_urls": { "Bug Reports": "https://github.com/marshmallow-code/marshmallow-jsonapi/issues", "Funding": "https://opencollective.com/marshmallow", "Homepage": "https://github.com/marshmallow-code/marshmallow-jsonapi" }, "release_url": "https://pypi.org/project/marshmallow-jsonapi/0.22.0/", "requires_dist": [ "marshmallow (>=2.15.2)", "pytest ; extra == 'dev'", "mock ; extra == 'dev'", "faker (==2.0.1) ; extra == 'dev'", "Flask (==1.1.1) ; extra == 'dev'", "flake8 (==3.7.8) ; extra == 'dev'", "flake8-bugbear (==19.8.0) ; extra == 'dev'", "pre-commit (~=1.18) ; extra == 'dev'", "tox ; extra == 'dev'", "flake8 (==3.7.8) ; extra == 'lint'", "flake8-bugbear (==19.8.0) ; extra == 'lint'", "pre-commit (~=1.18) ; extra == 'lint'", "pytest ; extra == 'tests'", "mock ; extra == 'tests'", "faker (==2.0.1) ; extra == 'tests'", "Flask (==1.1.1) ; extra == 'tests'" ], "requires_python": ">=3.6", "summary": "JSON API 1.0 (https://jsonapi.org) formatting with marshmallow", "version": "0.22.0" }, "last_serial": 5832331, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "e79578ce6c42153072ff958fc84aed35", "sha256": "f6a73fe5871f744a6349913aa8378b52139e136b8bc8d166511f34822d694b6d" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e79578ce6c42153072ff958fc84aed35", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 9993, "upload_time": "2015-09-12T22:34:09", "url": "https://files.pythonhosted.org/packages/da/0f/a34157e539d1a279b009782bfb689e4096dfe81309dbfc351a9b48d13fea/marshmallow_jsonapi-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e341c3de31e9cfb9aeec2a300676d247", "sha256": "9799516982688d4be69cbe10770b59140a83549b1748b77e739f89911f672f8f" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.1.0.tar.gz", "has_sig": false, "md5_digest": "e341c3de31e9cfb9aeec2a300676d247", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13769, "upload_time": "2015-09-12T22:34:01", "url": "https://files.pythonhosted.org/packages/6d/00/d02d95a483e98598a61f4fc8a616301f35ede5be4c135dfae87d206e2fe3/marshmallow-jsonapi-0.1.0.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "8aefa6cf5585642abf45ca99c6e2e5e4", "sha256": "56ee19907705592cc0a1ca3f22ed4373c07b2268aea4ae5d43b79ca75e512a83" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8aefa6cf5585642abf45ca99c6e2e5e4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14968, "upload_time": "2017-01-05T11:12:31", "url": "https://files.pythonhosted.org/packages/3f/71/9bb2382b05943a5937297548b48c0bb9e37d19515077cd991286c951ca0f/marshmallow_jsonapi-0.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "61b63d126447a5312e7cde80be7d1a87", "sha256": "7558a647b21b63888313b1ef350569c970681fc02948655c48811c80e48df2fb" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.10.0.tar.gz", "has_sig": false, "md5_digest": "61b63d126447a5312e7cde80be7d1a87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27200, "upload_time": "2017-01-05T11:12:33", "url": "https://files.pythonhosted.org/packages/75/22/990d112a26e3cd66c91ba37f5cd2153660302279892850e2f29c9668e9a7/marshmallow-jsonapi-0.10.0.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "8f6fc828c1eba68d4433c7145dff4808", "sha256": "0d6ef2db03401b0639b575fde2ec388e53950b03e310b6afa476d47dcc7f3b46" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8f6fc828c1eba68d4433c7145dff4808", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15102, "upload_time": "2017-02-05T17:05:08", "url": "https://files.pythonhosted.org/packages/e6/df/3874de91a5b88a62514561c8382e8ae5ccece0c646456957fab936b66f5f/marshmallow_jsonapi-0.10.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a0c22902f1aaa3c2181b5aa3aa71915d", "sha256": "a18d8382945e01d61bdb2534e6b9da26ad95fe8d75895dba7f748c9e0e5cc3e7" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.10.1.tar.gz", "has_sig": false, "md5_digest": "a0c22902f1aaa3c2181b5aa3aa71915d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27361, "upload_time": "2017-02-05T17:05:09", "url": "https://files.pythonhosted.org/packages/78/c4/8ba76666e5f24c1036906819292222a71552fe62e9124f6beb8fc5b0d7ef/marshmallow-jsonapi-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "ace7dc7c778c22577a3597efb45278f5", "sha256": "38d6963f90c4e926666f36ed3fb29a61138bdb05f6a3f85e7250990735316c6c" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.10.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ace7dc7c778c22577a3597efb45278f5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13814, "upload_time": "2017-03-09T01:56:46", "url": "https://files.pythonhosted.org/packages/0c/48/e683382866665656c9776e96a396b8f9e1870d85ea26644daf1d33fc0de5/marshmallow_jsonapi-0.10.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7df739edfeb9544f07ab62ce92656da9", "sha256": "cb32c2c081232ee6df47dcfafbcb8c514d206f3a0c53b26ebc7e225ddcc464ea" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.10.2.tar.gz", "has_sig": false, "md5_digest": "7df739edfeb9544f07ab62ce92656da9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26964, "upload_time": "2017-03-09T01:56:48", "url": "https://files.pythonhosted.org/packages/46/d1/dbfe5e4ab8942b746e35ac1fd6c1b3657b889eebd1f02e24b9ab902d2887/marshmallow-jsonapi-0.10.2.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "6728703895d4de67def92e3f99648f62", "sha256": "a419f1ecb6ae07dea90fae67c00c47a911e3ad664bc90b2352838a3ce5093a02" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6728703895d4de67def92e3f99648f62", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13905, "upload_time": "2017-03-12T19:48:53", "url": "https://files.pythonhosted.org/packages/30/14/794d4ca50027e485ef4f23a610daf80785cc0603642a9f4a3dc1e4f07448/marshmallow_jsonapi-0.11.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a7d0a4ef8d636fade014d98b8c4d0e9b", "sha256": "dacbc80c56a8c1d0e2693fa5f7cc6d17e28b4c8a2a10947e9e9809fd280f5c03" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.11.0.tar.gz", "has_sig": false, "md5_digest": "a7d0a4ef8d636fade014d98b8c4d0e9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27069, "upload_time": "2017-03-12T19:48:54", "url": "https://files.pythonhosted.org/packages/33/0c/4d5a3651c6c0e0401e2c04ed19e222dca90769950642a7ab1668787f4873/marshmallow-jsonapi-0.11.0.tar.gz" } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "c18354610cef21fcd128fd055d0b471a", "sha256": "d2d07351f5e1bb5c41c4678d71229c4f841307bcf3c3f9613e32564488808b41" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.11.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c18354610cef21fcd128fd055d0b471a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13911, "upload_time": "2017-04-07T02:14:48", "url": "https://files.pythonhosted.org/packages/d6/89/3b8afa67c91a69a4ed4246aa5f0b7789f4e5f168e5ffe4ccbaabd0b9e073/marshmallow_jsonapi-0.11.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3fe43b2119259b6f6348fe3fe1170a67", "sha256": "4a85ff5a04f929cf640bb08a95afb5077048b5324b857c04911f2307edf4cc01" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.11.1.tar.gz", "has_sig": false, "md5_digest": "3fe43b2119259b6f6348fe3fe1170a67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27122, "upload_time": "2017-04-07T02:14:49", "url": "https://files.pythonhosted.org/packages/75/ea/2cc40583b4c9c826203b82221c9c6dafe940489818b85370b25ca60a82f4/marshmallow-jsonapi-0.11.1.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "10f1b4c4cd663fc26f5a1c3563199f14", "sha256": "dea34198187a81594d7d176e7c3e693a933871de9e40fe7ccdbad8883339c6e8" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "10f1b4c4cd663fc26f5a1c3563199f14", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13996, "upload_time": "2017-04-16T20:09:21", "url": "https://files.pythonhosted.org/packages/ed/54/3a5fdc52e4c442c950dd46288e9c8e6de9ab3b4f981ea3f764269a72cff1/marshmallow_jsonapi-0.12.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "98500e3ae781532b9fa0454485adaa37", "sha256": "036857079f032b1ee5fb4637e468d1a1dc99815105bdfe847f7104a6d6801249" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.12.0.tar.gz", "has_sig": false, "md5_digest": "98500e3ae781532b9fa0454485adaa37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27399, "upload_time": "2017-04-16T20:09:22", "url": "https://files.pythonhosted.org/packages/dc/85/97c033c6ce3ae5bca4049f02059eaea09bab2e9a2bc01cfb5bd1ac8526fe/marshmallow-jsonapi-0.12.0.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "a901a06e19a5ac29820fed5c1f3b12d1", "sha256": "3b8e54867638f53d660c1ad72f1817748b744b09bbce4fd6ada572cbc7790b69" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a901a06e19a5ac29820fed5c1f3b12d1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14097, "upload_time": "2017-04-19T03:20:43", "url": "https://files.pythonhosted.org/packages/27/ec/761328f0ddf32af89a4b036008933cbddcc8939096085f3d092ec7ed0343/marshmallow_jsonapi-0.13.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ab302ae2a2cfefb9bddfa709c1b445f4", "sha256": "5ceb669fc0c4786a9b66e1692a6df081a23d1dce1c064986cfbf6c4643c89ea3" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.13.0.tar.gz", "has_sig": false, "md5_digest": "ab302ae2a2cfefb9bddfa709c1b445f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27767, "upload_time": "2017-04-19T03:20:45", "url": "https://files.pythonhosted.org/packages/4d/4b/b7d9f30733dbbf995e7354bec54b142d8b41094396a60fed1ab276924e89/marshmallow-jsonapi-0.13.0.tar.gz" } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "b39dfe57a17989065b5cf7a77b671e96", "sha256": "ad61d4eab388af8c70a24a3e7799bbb95f55b0ce24342075d5d1daa8817fa651" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.14.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b39dfe57a17989065b5cf7a77b671e96", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14177, "upload_time": "2017-05-01T02:25:40", "url": "https://files.pythonhosted.org/packages/9f/9a/010012c0953eb123eee2646c293bc27e526033351295c9e128649aa660fd/marshmallow_jsonapi-0.14.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "57fd5ca64807882e03c18b7c530482b5", "sha256": "1ad6779f4ecbe320c51ba50516bd1f5ba1e0aa0ec7d48757146115575b177bff" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.14.0.tar.gz", "has_sig": false, "md5_digest": "57fd5ca64807882e03c18b7c530482b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28186, "upload_time": "2017-05-01T02:25:42", "url": "https://files.pythonhosted.org/packages/18/31/dd49c6abf782550a597ca2e0b32d0f5b93aa23ad58d2372e4259f22bbac0/marshmallow-jsonapi-0.14.0.tar.gz" } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "102e59d5426985ea60b87673e8bded3a", "sha256": "aa4a730814e8d9355c9cf863e2c28a066f56e7fc6ade509986cb712ab103f43f" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.15.0.tar.gz", "has_sig": false, "md5_digest": "102e59d5426985ea60b87673e8bded3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29880, "upload_time": "2017-06-28T02:41:06", "url": "https://files.pythonhosted.org/packages/49/2d/9fce0d5b5edad476f5ce784c46923199653e16da748706fd77ead134d250/marshmallow-jsonapi-0.15.0.tar.gz" } ], "0.15.1": [ { "comment_text": "", "digests": { "md5": "8580f75343cf60dd0ed074b597ebe08c", "sha256": "75c1f8b4ba82ebf00159805dbf0b5763ed041b70c14b5962ab57e547564efb0a" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.15.1.tar.gz", "has_sig": false, "md5_digest": "8580f75343cf60dd0ed074b597ebe08c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30104, "upload_time": "2017-08-24T01:44:06", "url": "https://files.pythonhosted.org/packages/9d/e2/a46c161d82326879bbef8a2b64b8a0e9af9f33a323fd99b693bc924ed5c4/marshmallow-jsonapi-0.15.1.tar.gz" } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "6e5261e4b457d89cfeb709bf29961241", "sha256": "a0691dbd772bd14cb011ccb557ce0e4714ed602dae4f900c64ac579052641f79" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.16.0.tar.gz", "has_sig": false, "md5_digest": "6e5261e4b457d89cfeb709bf29961241", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30390, "upload_time": "2017-11-08T22:54:25", "url": "https://files.pythonhosted.org/packages/8f/84/9c330c97c28bf7833dcb39c26bfcede635d63dfaeae8f86b4846f0bbebe9/marshmallow-jsonapi-0.16.0.tar.gz" } ], "0.17.0": [ { "comment_text": "", "digests": { "md5": "f87274f0e5f084b078209c9f8dca0afd", "sha256": "bb8a4d7bd21d41192f8747ccc4f76eab20ce7dae589d20350af3ebc3426ed8ff" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.17.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f87274f0e5f084b078209c9f8dca0afd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13302, "upload_time": "2018-04-29T13:48:22", "url": "https://files.pythonhosted.org/packages/08/9f/5731578fb116dbff58df58d949a3e23e9095b8b9c782b95bd4422bfb715d/marshmallow_jsonapi-0.17.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df130628e5cd69b28fcf5599fd949d2b", "sha256": "af189cd003380c8409e0cd34add1bce240903b88a0639d5de18e0364ade79f4c" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.17.0.tar.gz", "has_sig": false, "md5_digest": "df130628e5cd69b28fcf5599fd949d2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30895, "upload_time": "2018-04-29T13:48:23", "url": "https://files.pythonhosted.org/packages/93/61/24b992f22a52f3feb40b36078e4e22722971c27888778c54bd1b83a80fef/marshmallow-jsonapi-0.17.0.tar.gz" } ], "0.18.0": [ { "comment_text": "", "digests": { "md5": "e296506d2862d7254e232ec6779ae2e1", "sha256": "5a89b38ed94fb3fc529e0ed09291afe3324738d3591fbb27ef94e32869c38609" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.18.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e296506d2862d7254e232ec6779ae2e1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13602, "upload_time": "2018-05-19T13:27:00", "url": "https://files.pythonhosted.org/packages/96/24/46d4a1eef69755c30dfcf8d69a55423bc8bf1f949125624a2f0fad946161/marshmallow_jsonapi-0.18.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ce41633916c6001fba3f52bb4cfba6ee", "sha256": "696632d385da1b9e7a3ca833b641d4a1dedfc086cfd658e2488e561105bf0b2d" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.18.0.tar.gz", "has_sig": false, "md5_digest": "ce41633916c6001fba3f52bb4cfba6ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31703, "upload_time": "2018-05-19T13:27:01", "url": "https://files.pythonhosted.org/packages/bc/32/845538b196777e98a556bd9f2576038fd14ac747ee7acaa960b65c735342/marshmallow-jsonapi-0.18.0.tar.gz" } ], "0.19.0": [ { "comment_text": "", "digests": { "md5": "c20000f9fc4dfc1780f561c6b40f608c", "sha256": "0d541826f96ae691e68af2df21ea577e1749dbed3fd62176e4f0d064f118925d" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.19.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c20000f9fc4dfc1780f561c6b40f608c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13668, "upload_time": "2018-05-27T21:05:58", "url": "https://files.pythonhosted.org/packages/05/6e/5ebed5beb71b925751561e7161e234a8749c60e2b7f191ee3b07ada91cec/marshmallow_jsonapi-0.19.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6b96d13bd29dd2d46d9d5c8572d106c0", "sha256": "e3314aab3d88faa46661eaa4624b11d0eabc09a89e6f5feb679dd31c36b6a64b" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.19.0.tar.gz", "has_sig": false, "md5_digest": "6b96d13bd29dd2d46d9d5c8572d106c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32068, "upload_time": "2018-05-27T21:05:59", "url": "https://files.pythonhosted.org/packages/be/da/081d601b8db7d17a729faf440d99f451f521a458696685c86f92a75d5f18/marshmallow-jsonapi-0.19.0.tar.gz" } ], "0.19.0.post0": [ { "comment_text": "", "digests": { "md5": "07dc22c4b7685d1ee4eda83a53ddfe2e", "sha256": "4f2838b245e4b8b132dd90dc51e9ab64f24fcec33503917cd3cc698cc33d57d3" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.19.0.post0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "07dc22c4b7685d1ee4eda83a53ddfe2e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13730, "upload_time": "2018-05-28T13:22:25", "url": "https://files.pythonhosted.org/packages/6b/f6/0f0b888476ed4aa5cb5ce9a1e9d4e84b68613daf15e56eb4a32c4245beae/marshmallow_jsonapi-0.19.0.post0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "56b89d910fe5bb4ce8b0304e754ab988", "sha256": "da63254b23020b26388ec474aca6107fc11e16c67f39efc049d84a777347a73c" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.19.0.post0.tar.gz", "has_sig": false, "md5_digest": "56b89d910fe5bb4ce8b0304e754ab988", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32079, "upload_time": "2018-05-28T13:22:26", "url": "https://files.pythonhosted.org/packages/39/81/d1a2d2c410d0f64170996b22172a6e955977e3bba32e2ecdaede02b8a1bc/marshmallow-jsonapi-0.19.0.post0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "54d44fe51ec032d3caf19dcccd2109fc", "sha256": "1737aa9e47cd49911799779749951dc59fc380e1f583592f5db41aaf461eea2f" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "54d44fe51ec032d3caf19dcccd2109fc", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12218, "upload_time": "2015-09-14T04:57:19", "url": "https://files.pythonhosted.org/packages/d5/a3/6ae4e31eb0d55f1c019b608901f7778933d08f64de95ee4e312053dfb43a/marshmallow_jsonapi-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "54e8ca9494479a0c8e779f924fa2b96f", "sha256": "92be9dc245c9a52c5730f65c4014e073860c8e9112bb886ee4510bc16dc88560" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.2.0.tar.gz", "has_sig": false, "md5_digest": "54e8ca9494479a0c8e779f924fa2b96f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15901, "upload_time": "2015-09-14T04:57:15", "url": "https://files.pythonhosted.org/packages/9f/8a/1be5eaefca47a7d860d9381fdec69a7779d270afb2a2b176d6235ad2c8aa/marshmallow-jsonapi-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "7dc90855bdeb3cc9a70f888c7a27c9f4", "sha256": "d7cafdbff9ffb278b83fe3fe54f3857e12b33dee89a5d59235e12153a955e4b2" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7dc90855bdeb3cc9a70f888c7a27c9f4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12079, "upload_time": "2015-09-16T05:31:22", "url": "https://files.pythonhosted.org/packages/f0/d1/bfbb5772c6a88c24bc12e3f458d29a2bf2dd40a2ecd06fb0e569d2e97ff4/marshmallow_jsonapi-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "787108486cdb4a167d9c13a966a08939", "sha256": "61e79721160304f6523333bb480012b49bd20097ba8fe95f60062d44aa9cabb9" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.2.1.tar.gz", "has_sig": false, "md5_digest": "787108486cdb4a167d9c13a966a08939", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15952, "upload_time": "2015-09-16T05:31:26", "url": "https://files.pythonhosted.org/packages/ef/31/cb0931c152e3e86455f7b03a5f3a0f27926d00103a7f8593bca07cd3ef91/marshmallow-jsonapi-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "8b53b1120758eeac812e560ca29a1894", "sha256": "c2a9379972f46835f6482e428b172cc840b3344569e0c3f45c11022a1da29c0d" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8b53b1120758eeac812e560ca29a1894", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12189, "upload_time": "2015-09-26T22:59:54", "url": "https://files.pythonhosted.org/packages/58/f3/e0648557bf98a85a2a6481542ef1fec78d7a65c70ae34204e9674065752f/marshmallow_jsonapi-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1fe2497636bd13dc822d43a1df48586a", "sha256": "0c56f725faa811aa7648ad61d20607b80d5d8cb8aa700b26375c73023feba741" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.2.2.tar.gz", "has_sig": false, "md5_digest": "1fe2497636bd13dc822d43a1df48586a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16085, "upload_time": "2015-09-26T22:59:58", "url": "https://files.pythonhosted.org/packages/ea/8f/ba117757066849838c57924936622c8b3249e7b90484c5f1061365a94831/marshmallow-jsonapi-0.2.2.tar.gz" } ], "0.20.0": [ { "comment_text": "", "digests": { "md5": "41ea1c21fdfe5fa4adb193390192c8e7", "sha256": "a18368e3bc6d5c316c3ddf856d79c2a55012a16f91ba6201d0dc766f91f64f3f" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.20.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "41ea1c21fdfe5fa4adb193390192c8e7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13713, "upload_time": "2018-06-10T15:35:06", "url": "https://files.pythonhosted.org/packages/81/af/d424de281dd28e6b010038dcb2928d75b3f9cf58ebe880ed8ec736f71971/marshmallow_jsonapi-0.20.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cbecec23be07ebddcce9253fbb86ff44", "sha256": "b97d581239b2a810bdcaa9a7f84aa3c81c3d82da7755554e9f85b44a68110cfb" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.20.0.tar.gz", "has_sig": false, "md5_digest": "cbecec23be07ebddcce9253fbb86ff44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33139, "upload_time": "2018-06-10T15:35:07", "url": "https://files.pythonhosted.org/packages/ca/a4/cda466afb6cd7651ed008ee263f8e83bf0400c2fa83bc0537989a56a7d05/marshmallow-jsonapi-0.20.0.tar.gz" } ], "0.20.1": [ { "comment_text": "", "digests": { "md5": "70388518c28b980df91868edd4759705", "sha256": "9076dd77648a554df0bd902668417d253b590edf35020702dc4f3e878a886863" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.20.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "70388518c28b980df91868edd4759705", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13715, "upload_time": "2018-07-15T22:08:11", "url": "https://files.pythonhosted.org/packages/64/ec/50f1fe57826c764f12859ab1d1b688959d3ff3c47fd1261d0b250fa579c8/marshmallow_jsonapi-0.20.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bcc2b180bbda02d9da8ae8939edb201a", "sha256": "4833bad2242fe01dc5f6066b9787ee63897d980df9a9d24ddebff95f6868ffa6" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.20.1.tar.gz", "has_sig": false, "md5_digest": "bcc2b180bbda02d9da8ae8939edb201a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33394, "upload_time": "2018-07-15T22:08:12", "url": "https://files.pythonhosted.org/packages/97/c1/f366d8617274dc7e5e7391f87f93cfb1e6b3a69bf9b587da730d99307bfa/marshmallow-jsonapi-0.20.1.tar.gz" } ], "0.20.2": [ { "comment_text": "", "digests": { "md5": "8f8c70804489d144352258497a057c25", "sha256": "ee61a9f5387bf1fc7e27b59216f37a20b5baeba1755ac7e792dd5d37eb70b8e5" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.20.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8f8c70804489d144352258497a057c25", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13772, "upload_time": "2018-08-15T11:48:02", "url": "https://files.pythonhosted.org/packages/8a/e5/fb9a815d10d629c3f6a0ede651d1034150b553a9bc73c7250d7d9742fc2a/marshmallow_jsonapi-0.20.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "638ed80e359874c464fccfa0d6b82221", "sha256": "5ce6fcc1a5392349b40e008b5808fca887ac3069ee855cd19ca69bb76e308b0c" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.20.2.tar.gz", "has_sig": false, "md5_digest": "638ed80e359874c464fccfa0d6b82221", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33708, "upload_time": "2018-08-15T11:48:03", "url": "https://files.pythonhosted.org/packages/47/c5/1c38ba1cd0b8802d63c86a17fd91932dc5545540952298a79ac5490930db/marshmallow-jsonapi-0.20.2.tar.gz" } ], "0.20.3": [ { "comment_text": "", "digests": { "md5": "62106eea0f51f7f236594aa1997606c0", "sha256": "b071c332942af7378cbae02f6866240d6cf229e02d01edcaef8707b3c6e3ac5d" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.20.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "62106eea0f51f7f236594aa1997606c0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13818, "upload_time": "2018-09-14T00:11:07", "url": "https://files.pythonhosted.org/packages/6b/2e/fcdf7d276aeea08647c12279902f04a469aed9a1401b858f3daeabb8bd51/marshmallow_jsonapi-0.20.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "929cb566c664825c4c62af1836e97b12", "sha256": "d7d2a1b0fbf35b36e41407aba310e6a96b2610eddc95c43239005eb1b9765a33" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.20.3.tar.gz", "has_sig": false, "md5_digest": "929cb566c664825c4c62af1836e97b12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33804, "upload_time": "2018-09-14T00:11:08", "url": "https://files.pythonhosted.org/packages/5c/a1/691d5a18947a2bc7282b731ab2b07e5328d40cf0d6cb494ac4ca57728e5d/marshmallow-jsonapi-0.20.3.tar.gz" } ], "0.20.4": [ { "comment_text": "", "digests": { "md5": "b9d8044921efeec13e4d288ab8c1af5b", "sha256": "8944bf3afc8d521b252b4bc1e6f9bca88d19567a5ce7dd54e836927ec2c4ad08" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.20.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b9d8044921efeec13e4d288ab8c1af5b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15374, "upload_time": "2018-10-12T00:12:03", "url": "https://files.pythonhosted.org/packages/f7/3b/2dee15379cd9b5c3b56a9055e2623f6068804195fecef019e8cdfcf7ae99/marshmallow_jsonapi-0.20.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "90a4050401c981de594f568385cbf185", "sha256": "120f6ef37b48723f2d32310de923ee44b1358c1962bd1e7aa585f6cf21f6c8cc" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.20.4.tar.gz", "has_sig": false, "md5_digest": "90a4050401c981de594f568385cbf185", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34276, "upload_time": "2018-10-12T00:12:05", "url": "https://files.pythonhosted.org/packages/b4/80/b45529f47cf2d4a9f8238da7f77c67b3fc5ecd3516d98ad094ccb5488aa9/marshmallow-jsonapi-0.20.4.tar.gz" } ], "0.20.5": [ { "comment_text": "", "digests": { "md5": "add5ccc94e7c6704e51e0859e0db9000", "sha256": "e8245e9a8f03d26efe5b1c5db0c6c6705aa3d8d32a28c7c79ebc2217020e5bcd" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.20.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "add5ccc94e7c6704e51e0859e0db9000", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15404, "upload_time": "2018-10-27T15:15:36", "url": "https://files.pythonhosted.org/packages/ed/7e/5a51aa245982f5b97667b4ba54ad751d3b4fb827cf23a769ae8a9bff8a53/marshmallow_jsonapi-0.20.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9334e0d6614662f9885bbd2a12012c3f", "sha256": "50e12a3fa432dcf18eda126c6135c855b7de9e7590ba7c374d4f5071977fc3a2" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.20.5.tar.gz", "has_sig": false, "md5_digest": "9334e0d6614662f9885bbd2a12012c3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34417, "upload_time": "2018-10-27T15:15:38", "url": "https://files.pythonhosted.org/packages/b8/23/8c49d266467981bcc1416ab44a5dd85e703632d999aec95ca9ec732f9de2/marshmallow-jsonapi-0.20.5.tar.gz" } ], "0.21.0": [ { "comment_text": "", "digests": { "md5": "0b4806e06d392dbf1428749f0d5ae94c", "sha256": "3fcee53d31e57e85391820d316742e5c0f02bc41829b8395b5f1d2c1fcfd3ff4" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.21.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0b4806e06d392dbf1428749f0d5ae94c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15513, "upload_time": "2018-12-16T13:28:32", "url": "https://files.pythonhosted.org/packages/81/f6/36c1c0b9e5dedef8faef45adf3582ecc8f2ce2da365875f1fadf333da842/marshmallow_jsonapi-0.21.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "efba73a01fe346cf253371e84af6f288", "sha256": "a403f32c5a7bb8f7540fae2fbb35565cf15dddd4936b8d8d74873f55aa5f0cc2" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.21.0.tar.gz", "has_sig": false, "md5_digest": "efba73a01fe346cf253371e84af6f288", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35379, "upload_time": "2018-12-16T13:28:34", "url": "https://files.pythonhosted.org/packages/ca/0d/39f13c8c76fcd234709b641840022641c7fd1d7c9101b86d4a34d1c994f8/marshmallow-jsonapi-0.21.0.tar.gz" } ], "0.21.1": [ { "comment_text": "", "digests": { "md5": "762e167153231b074faa4dbbe2d1b7b8", "sha256": "9eb8df4051c206581ae4a226cb697558c0e68fd1eb3761c6e1746c13d3e0f784" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.21.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "762e167153231b074faa4dbbe2d1b7b8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15883, "upload_time": "2019-05-21T14:00:35", "url": "https://files.pythonhosted.org/packages/c2/9a/c6481b608c47a04c0960d5d23e5bddfe4bcb7f6001de6fa0205a47348c51/marshmallow_jsonapi-0.21.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b4519edb0d09177ffa425c2704e0fb09", "sha256": "227b606626a4372c1f2b544f213565b7d862bd8ae203ef99daad9bbdc30527ed" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.21.1.tar.gz", "has_sig": false, "md5_digest": "b4519edb0d09177ffa425c2704e0fb09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34619, "upload_time": "2019-05-21T14:00:37", "url": "https://files.pythonhosted.org/packages/88/18/051eea180dc76d39620f666c9c73dc237ecb216747a33eeb0c3240a417c7/marshmallow-jsonapi-0.21.1.tar.gz" } ], "0.21.2": [ { "comment_text": "", "digests": { "md5": "09afdc25d9d5b33ebd3a09ef9db0f571", "sha256": "b0d2cb711ed7b852136fa7cd3457c55fabbf343ada1fc406c67b5167a5a26b0f" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.21.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "09afdc25d9d5b33ebd3a09ef9db0f571", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15337, "upload_time": "2019-07-02T02:52:11", "url": "https://files.pythonhosted.org/packages/c0/c1/771863b11e3e8552d5f5fe49895a5793a4ae91696da16b9e371218b68ef1/marshmallow_jsonapi-0.21.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3246dc70436b42b36e3d5b95f53816ee", "sha256": "83e33b41e8f411d34a4b515c39f10192919a9d4f7eeccd4d6b49a4030a163374" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.21.2.tar.gz", "has_sig": false, "md5_digest": "3246dc70436b42b36e3d5b95f53816ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35192, "upload_time": "2019-07-02T02:52:13", "url": "https://files.pythonhosted.org/packages/60/b5/c64475a3591a0fc8c458c17d9e9ce78e13124caeccb3e646b844b864e33c/marshmallow-jsonapi-0.21.2.tar.gz" } ], "0.22.0": [ { "comment_text": "", "digests": { "md5": "4cf1b1761134759217756f8d7a1f1b8a", "sha256": "3792cabff74aac152cf1c6d7754e0de024e2e3e8852d3d282a4d8fe827b1f946" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.22.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4cf1b1761134759217756f8d7a1f1b8a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 14527, "upload_time": "2019-09-15T15:22:58", "url": "https://files.pythonhosted.org/packages/fc/c3/57f2cd552bada59af5ce8a44b9ef372ec8853fc4e7ed8a3bb8c713c699b1/marshmallow_jsonapi-0.22.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "84d581ba31e8a30d3fe16750f4fc3ac3", "sha256": "4740d53c15a2a82dd493ae34b38e3a115e8b4e26c000c6dae6173873f653d665" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.22.0.tar.gz", "has_sig": false, "md5_digest": "84d581ba31e8a30d3fe16750f4fc3ac3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 34581, "upload_time": "2019-09-15T15:23:00", "url": "https://files.pythonhosted.org/packages/26/9f/8c6f6aec1f23b0dad26a7c8ab4e7643573151775cc77404a4fc00ed69b07/marshmallow-jsonapi-0.22.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "7e9a61b7e53bfabb4d04643f34d2b561", "sha256": "cbe4a9ed3c6fcec3261a1fc896e89c459ec42bbcef69f9eeb6f0a144419bfa5c" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7e9a61b7e53bfabb4d04643f34d2b561", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12018, "upload_time": "2015-10-18T22:49:22", "url": "https://files.pythonhosted.org/packages/4c/fc/5566e169b961f59f8355f5ec012cfecc515465011e7ca7596c3bb2beb44a/marshmallow_jsonapi-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eec8d14b201130cdae6615f16df8d376", "sha256": "ef85ad2fb3a13d563b9794d74028965443ff5d0aad8fa038a5f7c49958927627" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.3.0.tar.gz", "has_sig": false, "md5_digest": "eec8d14b201130cdae6615f16df8d376", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17886, "upload_time": "2015-10-18T22:49:26", "url": "https://files.pythonhosted.org/packages/f4/f7/c14e03a9ac7ae65810a04bb2962113c19fdb0db3573fa464c7f288cd769c/marshmallow-jsonapi-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "ef3c10399046b0bf5ae6ad91de2d5568", "sha256": "c3b0d038fa278733ef33100ed8fa2d688bf7482af49640dd4d02b04b8baf3bc1" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ef3c10399046b0bf5ae6ad91de2d5568", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12393, "upload_time": "2015-12-06T18:03:34", "url": "https://files.pythonhosted.org/packages/23/fa/67de395c4f686305bd29b04ed0b9642e069e9880f27215ccdf4ce19b752a/marshmallow_jsonapi-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7f9bf6a64872cbbd43344728956fe0ce", "sha256": "26bccf192bee95c00544721db3c98d289c90b9c176b56653c26b748c21899dc3" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.4.0.tar.gz", "has_sig": false, "md5_digest": "7f9bf6a64872cbbd43344728956fe0ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20306, "upload_time": "2015-12-06T18:03:41", "url": "https://files.pythonhosted.org/packages/db/7f/7114d78505156a255fcd149c2c965145552a77a788fd2b01a11919998a2e/marshmallow-jsonapi-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "4070c5a2ca78543f521a745a5c450fc9", "sha256": "256212a5af5a19b46145e1ddc1a63bb95fa7a9156c95e6f5c4f05700550a6919" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4070c5a2ca78543f521a745a5c450fc9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12499, "upload_time": "2015-12-19T16:49:47", "url": "https://files.pythonhosted.org/packages/b8/e1/add1f5f603db83844512530d8234625236f98b2be72559dbd89042dc4d61/marshmallow_jsonapi-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "718091cb05075584cc87ea0300d1ee26", "sha256": "e60d0ef1ab35b70d80ff6580eceb6d0801ab27f39346c925bede47dfb6743f8c" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.4.1.tar.gz", "has_sig": false, "md5_digest": "718091cb05075584cc87ea0300d1ee26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20512, "upload_time": "2015-12-19T16:49:52", "url": "https://files.pythonhosted.org/packages/0e/1d/fca727af770fcb510c1a3ed9489bb641375453da64d6105633ab40659a96/marshmallow-jsonapi-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "2311f52557cb97ccdcf8585ea11833d8", "sha256": "0835db3858a5fb90504b1239b7a665fc116821bb9999ed6380e28ce595a8756d" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2311f52557cb97ccdcf8585ea11833d8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12530, "upload_time": "2015-12-21T13:35:26", "url": "https://files.pythonhosted.org/packages/be/21/41dc1515a345be0ca623867cada584d5f2e5227a9e20c351b44b2eca321f/marshmallow_jsonapi-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ebe54391f1d7dbe2facbba5fc8567d9", "sha256": "40499beaf735bd623b519f8495963b50170c454877c689169bcdd21cd336964d" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.4.2.tar.gz", "has_sig": false, "md5_digest": "4ebe54391f1d7dbe2facbba5fc8567d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20734, "upload_time": "2015-12-21T13:35:35", "url": "https://files.pythonhosted.org/packages/4e/de/3cd8964eae868cfe48f1030aa2518f834f5bc989c227986364020f1b9aff/marshmallow-jsonapi-0.4.2.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "239fe4a1e29662ef882caca24aa75118", "sha256": "726a95f0a95bc20f233a85cfc406a6567926e54f3b1fa1ba039c8b532fa93a79" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "239fe4a1e29662ef882caca24aa75118", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12865, "upload_time": "2016-02-09T03:58:46", "url": "https://files.pythonhosted.org/packages/5b/d2/cc019020ff23337dd7cd306ebfcd7bca21c29dbc03b8fa64eddf54cc82fe/marshmallow_jsonapi-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23b14a2deeaae5af2534aa35da1a2808", "sha256": "c87bd77cf43c4d85153ab3a84cdfbb8e9d7ccc62da49a3638fbf453f98eec4de" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.5.0.tar.gz", "has_sig": false, "md5_digest": "23b14a2deeaae5af2534aa35da1a2808", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21948, "upload_time": "2016-02-09T03:58:54", "url": "https://files.pythonhosted.org/packages/84/a0/6bdf9070818897050ffce4c141049e2f5118f16251a7296bebc58335a899/marshmallow-jsonapi-0.5.0.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "758fa2a072f78b96fcebf30ecc25958e", "sha256": "e5202cafbb00681e0efd6a342a8f93adbf44b9d109397ecae2e4dcb06e4ac236" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "758fa2a072f78b96fcebf30ecc25958e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13016, "upload_time": "2016-03-25T02:01:45", "url": "https://files.pythonhosted.org/packages/2b/58/73aae6765b731fde02d830c1eb4991a73314d68c07d13653464bf9ff6366/marshmallow_jsonapi-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "220b6154f9a708bb4bfe4d46d2840d97", "sha256": "8f6d1c52691b59cf4b4ee47ea54edee12245879fe54cd5029bdd7ec4fb7d9167" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.6.0.tar.gz", "has_sig": false, "md5_digest": "220b6154f9a708bb4bfe4d46d2840d97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22548, "upload_time": "2016-03-25T02:02:12", "url": "https://files.pythonhosted.org/packages/8c/99/415d160f24f3eec725eaed5ee3ff13aa0419e17d30c7196e2ca4c5027763/marshmallow-jsonapi-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "ee837efa663a7db9aa564716b3040cd0", "sha256": "8d7a9b12abcbc7af396b31bb0b245c8e6635708e9ebf6aeeb346ef9d7dd8942f" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ee837efa663a7db9aa564716b3040cd0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13067, "upload_time": "2016-04-03T13:53:19", "url": "https://files.pythonhosted.org/packages/b1/08/f92a3e26aa0f9fcdf306cfe2489b06203a9367a5d5ce9be5bf345aff4a00/marshmallow_jsonapi-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "64269a52a6e6627c98266d16ace13b63", "sha256": "04d5a1999d1f10b3398cea6d34554135eeb701a10a0019b15758cac9fb6e59b2" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.7.0.tar.gz", "has_sig": false, "md5_digest": "64269a52a6e6627c98266d16ace13b63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22697, "upload_time": "2016-04-03T13:53:38", "url": "https://files.pythonhosted.org/packages/f4/c1/241f5d20d7a7031c25fe581e23fa5e974e238565544353a320448158bf64/marshmallow-jsonapi-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "154bc8eea0e5977e5413f09f4f848904", "sha256": "3404ca7517e95ca8ed5ec4a7303ba5115bd516397b7522f80b74b5f71df0f775" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "154bc8eea0e5977e5413f09f4f848904", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13091, "upload_time": "2016-05-08T13:33:20", "url": "https://files.pythonhosted.org/packages/69/6c/f31fa5bc47d5a328b8f7191306c8cf9d1ad988ea6bd1b62a6a48dde5535b/marshmallow_jsonapi-0.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "20c57b89f91ecd9855e32b0838c26ed4", "sha256": "d5831d707f421b5f2f201bbb83f375ab2bb398f100b2f3d2e65ea6ec8ac43c10" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.7.1.tar.gz", "has_sig": false, "md5_digest": "20c57b89f91ecd9855e32b0838c26ed4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22722, "upload_time": "2016-05-08T13:33:25", "url": "https://files.pythonhosted.org/packages/6d/04/c25ce747290a176d15746399cb426bf943f3127d6365e291c5ac67902847/marshmallow-jsonapi-0.7.1.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "926c674242cc6c829c7099e2b283d9ee", "sha256": "4f59bb61c212dc67eae86d52102f6f3946951082293c5ef25d30db5e8750fe22" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "926c674242cc6c829c7099e2b283d9ee", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13767, "upload_time": "2016-06-21T03:56:39", "url": "https://files.pythonhosted.org/packages/86/d4/bc41d23dbda0f79630a01a6c09089fb9bccc0119b63c2b8f8652aa150e56/marshmallow_jsonapi-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7306d32d0dd6a4249a515c85c93ab6c", "sha256": "1382a33f9105b9797648dafb416b79161c671ab33479c02efbe9e200ac633bee" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.8.0.tar.gz", "has_sig": false, "md5_digest": "d7306d32d0dd6a4249a515c85c93ab6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24938, "upload_time": "2016-06-21T03:56:43", "url": "https://files.pythonhosted.org/packages/3a/44/fb75abff5dc72cd81e6e4e69c607f401a6fad16dab6929c4388523207984/marshmallow-jsonapi-0.8.0.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "0af9a8f3d2b5bc505e109fa0de03f3bf", "sha256": "6653fb57305ec69900945a4bcd9c397272a2de5332d6e72ad173ffca60227301" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0af9a8f3d2b5bc505e109fa0de03f3bf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14515, "upload_time": "2016-10-08T19:18:29", "url": "https://files.pythonhosted.org/packages/20/90/a4c7ffe793c9e7a2257e938a0cae62e961130105d31566ac88b034fb24a4/marshmallow_jsonapi-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4147c35fb83c9a0c65ccb3067c71fb6e", "sha256": "d933199f3e115a7b75fd1cff02abc9f8a2a8af8825c6c69c6cda860a39ac4d07" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.9.0.tar.gz", "has_sig": false, "md5_digest": "4147c35fb83c9a0c65ccb3067c71fb6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26169, "upload_time": "2016-10-08T19:18:32", "url": "https://files.pythonhosted.org/packages/e5/d5/f121758ce6394c2c9cc96b2cc3f2633b7d57aa4e59c816e35544d546c283/marshmallow-jsonapi-0.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4cf1b1761134759217756f8d7a1f1b8a", "sha256": "3792cabff74aac152cf1c6d7754e0de024e2e3e8852d3d282a4d8fe827b1f946" }, "downloads": -1, "filename": "marshmallow_jsonapi-0.22.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4cf1b1761134759217756f8d7a1f1b8a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 14527, "upload_time": "2019-09-15T15:22:58", "url": "https://files.pythonhosted.org/packages/fc/c3/57f2cd552bada59af5ce8a44b9ef372ec8853fc4e7ed8a3bb8c713c699b1/marshmallow_jsonapi-0.22.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "84d581ba31e8a30d3fe16750f4fc3ac3", "sha256": "4740d53c15a2a82dd493ae34b38e3a115e8b4e26c000c6dae6173873f653d665" }, "downloads": -1, "filename": "marshmallow-jsonapi-0.22.0.tar.gz", "has_sig": false, "md5_digest": "84d581ba31e8a30d3fe16750f4fc3ac3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 34581, "upload_time": "2019-09-15T15:23:00", "url": "https://files.pythonhosted.org/packages/26/9f/8c6f6aec1f23b0dad26a7c8ab4e7643573151775cc77404a4fc00ed69b07/marshmallow-jsonapi-0.22.0.tar.gz" } ] }