{ "info": { "author": "Sergey Vilgelm", "author_email": "sergey@vilgelm.info", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "Intended Audience :: Information Technology", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "# marshmallow-objects\n\n[![Build Status](https://travis-ci.com/SVilgelm/marshmallow-objects.svg?branch=master)](https://travis-ci.com/SVilgelm/marshmallow-objects)\n[![codecov](https://codecov.io/gh/SVilgelm/marshmallow-objects/branch/master/graph/badge.svg)](https://codecov.io/gh/SVilgelm/marshmallow-objects)\n[![PyPI version](https://badge.fury.io/py/marshmallow-objects.svg)](https://badge.fury.io/py/marshmallow-objects)\n\n## Marshmallow Objects and Models\n\nSerializing/Deserializing Python objects using [Marshmallow](https://github.com/marshmallow-code/marshmallow) library.\n\n```python\nimport marshmallow_objects as marshmallow\n\n\nclass Artist(marshmallow.Model):\n name = marshmallow.fields.Str()\n\n\nclass Album(marshmallow.Model):\n title = marshmallow.fields.Str()\n release_date = marshmallow.fields.Date()\n artist = marshmallow.NestedModel(Artist)\n\n\nbowie_raw = dict(name='David Bowie')\nalbum_raw = dict(artist=bowie_raw, title='Hunky Dory',\n release_date='1971-12-17')\n\nalbum = Album(**album_raw)\nprint(album.title)\nprint(album.release_date)\nprint(album.artist.name)\n\n# Hunky Dory\n# 1971-12-17\n# David Bowie\n```\n\n## Get It Now\n\n```bash\n$ pip install -U marshmallow-objects\n```\n\n## Project Links\n\n* [Marshmallow](https://github.com/marshmallow-code/marshmallow)\n* [PyPi](https://pypi.python.org/pypi/marshmallow-objects)\n* [Cookbook](https://github.com/SVilgelm/marshmallow-objects/wiki)\n\n## License\n\nMIT licensed. See the bundled [LICENSE](LICENSE) file for more details.\n\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/SVilgelm/marshmallow-objects", "keywords": "marshmallow objects models yaml json ini config parser", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "marshmallow-objects", "package_url": "https://pypi.org/project/marshmallow-objects/", "platform": "", "project_url": "https://pypi.org/project/marshmallow-objects/", "project_urls": { "Homepage": "https://github.com/SVilgelm/marshmallow-objects" }, "release_url": "https://pypi.org/project/marshmallow-objects/1.0.23/", "requires_dist": [ "marshmallow" ], "requires_python": "", "summary": "Marshmallow Objects and Models", "version": "1.0.23" }, "last_serial": 5782346, "releases": { "1.0.1": [ { "comment_text": "", "digests": { "md5": "47b7bd9cdca1cfe57402a39e8bab0459", "sha256": "7e51ab10d353f73c727a0344f5afc3aef534026247c9defab353c7e9dfab81a2" }, "downloads": -1, "filename": "marshmallow_objects-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "47b7bd9cdca1cfe57402a39e8bab0459", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4021, "upload_time": "2018-02-07T02:01:07", "url": "https://files.pythonhosted.org/packages/12/62/ec1cb2d68ebc2bd16c5d749e206c61a0813c66d62519572be8a5cb609e26/marshmallow_objects-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ea689f910f506db009bd8f428623a67e", "sha256": "b45ce61885ca9a4e8c374be4e6b63ed4ea68d4b00f563bbeda6931da0e1f5387" }, "downloads": -1, "filename": "marshmallow-objects-1.0.1.tar.gz", "has_sig": false, "md5_digest": "ea689f910f506db009bd8f428623a67e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5229, "upload_time": "2018-02-07T02:01:09", "url": "https://files.pythonhosted.org/packages/6a/73/2b27905ef1483153dfb45f540079610b790b7fd17155dd26d669cc3933b1/marshmallow-objects-1.0.1.tar.gz" } ], "1.0.10": [ { "comment_text": "", "digests": { "md5": "6cf8cc7adc64f1a3e4fe00949c8ad621", "sha256": "dd18efcfeb40f440899292affa875d720543029d9459d8d353b8edd347c2a589" }, "downloads": -1, "filename": "marshmallow_objects-1.0.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6cf8cc7adc64f1a3e4fe00949c8ad621", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5803, "upload_time": "2018-03-26T15:22:37", "url": "https://files.pythonhosted.org/packages/4a/1a/bfb24be04d7a9b921f5e56589cb61fb476ff84c4de173347f5e17e04f1e8/marshmallow_objects-1.0.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "794747cf07430fdab22ac5c0ac0a79d6", "sha256": "cb5659e09b9649ff2f2531d18801aaec71f9cbc1962a1aac1f313491db53d50e" }, "downloads": -1, "filename": "marshmallow-objects-1.0.10.tar.gz", "has_sig": false, "md5_digest": "794747cf07430fdab22ac5c0ac0a79d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9655, "upload_time": "2018-03-26T15:22:38", "url": "https://files.pythonhosted.org/packages/c7/9e/d9a0596cb28a3fac9993fb6370f608f2a853b371e70da9460a40bfdf201e/marshmallow-objects-1.0.10.tar.gz" } ], "1.0.11": [ { "comment_text": "", "digests": { "md5": "837ee9b549843187d0808768d61b5b8b", "sha256": "726e723fa004c373057ed7007ba17b75a280733738417a275bf96d00e1139119" }, "downloads": -1, "filename": "marshmallow_objects-1.0.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "837ee9b549843187d0808768d61b5b8b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4396, "upload_time": "2018-04-09T17:25:17", "url": "https://files.pythonhosted.org/packages/3a/c1/006bb81073d661c2a63bc2c74fc50fd435527739153c72e5de03946895b2/marshmallow_objects-1.0.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c6f8baf5214fa341066dbd37a6be3550", "sha256": "2682832c138054cc149d277505550efd7c08ebb21230cf92dc1d3e259c869a3e" }, "downloads": -1, "filename": "marshmallow-objects-1.0.11.tar.gz", "has_sig": false, "md5_digest": "c6f8baf5214fa341066dbd37a6be3550", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9675, "upload_time": "2018-04-09T17:25:18", "url": "https://files.pythonhosted.org/packages/4e/14/9c51268b12cca18d382e0cc5616ce874a76eb212f88cc781a1c925737f22/marshmallow-objects-1.0.11.tar.gz" } ], "1.0.12": [ { "comment_text": "", "digests": { "md5": "92fea813d0e2aca5d2bb368328bbce84", "sha256": "cf51fe94a74ec6015c76c03d171017ec2cb472861692859cd6993f04d3e4117a" }, "downloads": -1, "filename": "marshmallow_objects-1.0.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "92fea813d0e2aca5d2bb368328bbce84", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4392, "upload_time": "2018-06-14T15:34:59", "url": "https://files.pythonhosted.org/packages/64/23/e7b683cc51d8299d3a60f93e3c2e73866605ede501712cd2ae26075f7282/marshmallow_objects-1.0.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ec9ed2222ffc72b3894b76cc29339924", "sha256": "ba16ee121a16d42ffcff0b5a679fef854cc9c719b7632f1e63f9e0e789e10fda" }, "downloads": -1, "filename": "marshmallow-objects-1.0.12.tar.gz", "has_sig": false, "md5_digest": "ec9ed2222ffc72b3894b76cc29339924", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9735, "upload_time": "2018-06-14T15:35:00", "url": "https://files.pythonhosted.org/packages/33/e3/16bbb29ebe8dd16d29456c7f8f7d151deead51df464d9b38add2d450ec67/marshmallow-objects-1.0.12.tar.gz" } ], "1.0.13": [ { "comment_text": "", "digests": { "md5": "809725f14f5c55b4dacf6efce5a8fa21", "sha256": "1f4154557565785723f562ccaa9fc167e951748de4ae9783d95de23accd74a2a" }, "downloads": -1, "filename": "marshmallow_objects-1.0.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "809725f14f5c55b4dacf6efce5a8fa21", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4413, "upload_time": "2018-06-26T16:00:12", "url": "https://files.pythonhosted.org/packages/13/b6/f56e931c96eb9be7cf7eb634dd670ea554a6694ad68e78b51c2701fd0118/marshmallow_objects-1.0.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0ab0eb4eb2f0b922e41e766e0bbcdd0a", "sha256": "2b35dfe1a2d1f1ee24c1099868aaf5b0f71d7e6c629ec1a768426aa4a199ddd2" }, "downloads": -1, "filename": "marshmallow-objects-1.0.13.tar.gz", "has_sig": false, "md5_digest": "0ab0eb4eb2f0b922e41e766e0bbcdd0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9769, "upload_time": "2018-06-26T16:00:13", "url": "https://files.pythonhosted.org/packages/94/02/70e83a0010ed8cf0577977d0d592ee4e5ee114554200f583b79f89da459c/marshmallow-objects-1.0.13.tar.gz" } ], "1.0.14": [ { "comment_text": "", "digests": { "md5": "e7b4994a2767a931d0564bab9b83dd8e", "sha256": "74f6ebb7c2f0af58704efaded8423b27f30bf6bad44a9f45283bb347a64929d3" }, "downloads": -1, "filename": "marshmallow_objects-1.0.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e7b4994a2767a931d0564bab9b83dd8e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4429, "upload_time": "2018-07-24T10:48:56", "url": "https://files.pythonhosted.org/packages/2a/46/710e3383d1216f1f066ee16da24d144c04c2d3180bdd962f08194f123849/marshmallow_objects-1.0.14-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2dba63e5a258d4de3e7a7072a9f08bde", "sha256": "46450d1137e55de0f40f325aa1ade780df7c170c70f472a9494e5d863631efc3" }, "downloads": -1, "filename": "marshmallow-objects-1.0.14.tar.gz", "has_sig": false, "md5_digest": "2dba63e5a258d4de3e7a7072a9f08bde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9878, "upload_time": "2018-07-24T10:48:57", "url": "https://files.pythonhosted.org/packages/bb/e8/f361cad45a3e03f2757439f0923a0868fd4e15f6bc3466cf1ea21f0409da/marshmallow-objects-1.0.14.tar.gz" } ], "1.0.15": [ { "comment_text": "", "digests": { "md5": "215bffe9689ade86abf8877973442029", "sha256": "6457a0bce184adad43f0d202388042cb943aaa8bde399cf3fbd2108220f9d23c" }, "downloads": -1, "filename": "marshmallow_objects-1.0.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "215bffe9689ade86abf8877973442029", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4768, "upload_time": "2018-09-26T16:03:07", "url": "https://files.pythonhosted.org/packages/1a/9c/820218d70e6d677f3761988a8d5346de61822389f3d226c10dea6868ae1c/marshmallow_objects-1.0.15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "62980324f5b0b7e608482e7939d21173", "sha256": "ddd01b2e9635af42b1b6fdd36be2b585f68196c2e176278f4148ae9cf18ffa71" }, "downloads": -1, "filename": "marshmallow-objects-1.0.15.tar.gz", "has_sig": false, "md5_digest": "62980324f5b0b7e608482e7939d21173", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10854, "upload_time": "2018-09-26T16:03:08", "url": "https://files.pythonhosted.org/packages/e5/49/2417c41e63be08ccde14e031f8c762e4e72a7f151512cdbfa7dc020b9c40/marshmallow-objects-1.0.15.tar.gz" } ], "1.0.16": [ { "comment_text": "", "digests": { "md5": "635b3e975fb4f5c8d157a3c1244933df", "sha256": "02a3fe7b3aa5b1de41ab209f976495456523dadd7d674ba63bb93368bd8dedd0" }, "downloads": -1, "filename": "marshmallow_objects-1.0.16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "635b3e975fb4f5c8d157a3c1244933df", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4768, "upload_time": "2018-09-26T16:30:11", "url": "https://files.pythonhosted.org/packages/79/b0/9dbd7fba3c26ab22b544cd6489ae4e08e5898e4995c686dc6c821fcfede5/marshmallow_objects-1.0.16-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16950f0c04f7624455546c686f0efbfa", "sha256": "7ddcfd7fc242d73627e791b417120fb23ce0a7df18e0e4e08068cccd6854b2c5" }, "downloads": -1, "filename": "marshmallow-objects-1.0.16.tar.gz", "has_sig": false, "md5_digest": "16950f0c04f7624455546c686f0efbfa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10888, "upload_time": "2018-09-26T16:30:13", "url": "https://files.pythonhosted.org/packages/5d/2d/793e8c2745d5b52b1584ce6f71faa5c31649c7ecf78655712c6b2d776feb/marshmallow-objects-1.0.16.tar.gz" } ], "1.0.17": [ { "comment_text": "", "digests": { "md5": "1fb7e8aae46e6454102a6149addaf505", "sha256": "cd9ac07892d22b604e5bd4f33ae64ca40ecfeda401c175d7f0f1d2beb041ddd8" }, "downloads": -1, "filename": "marshmallow_objects-1.0.17-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1fb7e8aae46e6454102a6149addaf505", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6041, "upload_time": "2018-10-23T14:29:20", "url": "https://files.pythonhosted.org/packages/9e/ae/c044161526096617ed2523749ae3187449910b83dae12610f30a42672fae/marshmallow_objects-1.0.17-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ef077766d78b0d177048684c5e8cbe5e", "sha256": "9f5aafc5a2928cfed5bbf7ccdc6b43fe3de9ccb2a1e3aad40c14351e788d5feb" }, "downloads": -1, "filename": "marshmallow-objects-1.0.17.tar.gz", "has_sig": false, "md5_digest": "ef077766d78b0d177048684c5e8cbe5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10816, "upload_time": "2018-10-23T14:29:22", "url": "https://files.pythonhosted.org/packages/c9/68/3c661a7040b2396fe51d6ff05b326218821debdf78dbdc8bb1b8ab49c577/marshmallow-objects-1.0.17.tar.gz" } ], "1.0.18": [ { "comment_text": "", "digests": { "md5": "c69e16cbb2fc817375978bc175693c99", "sha256": "6cc0fcf940d1cfeca79a5d726196c56e49e748fcde5713c921c76b3ee84d8e94" }, "downloads": -1, "filename": "marshmallow_objects-1.0.18-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c69e16cbb2fc817375978bc175693c99", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6048, "upload_time": "2018-12-06T01:06:56", "url": "https://files.pythonhosted.org/packages/01/c6/23b5bf329c2df9624dc816126986c02100dbaf619d0f36600688e86f07fe/marshmallow_objects-1.0.18-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ffd33de0c6c24aecb9eceae3204e1c2", "sha256": "963e88216b3f62f15879950f1224b89712d727549b9afdb5546cceac10b370a7" }, "downloads": -1, "filename": "marshmallow-objects-1.0.18.tar.gz", "has_sig": false, "md5_digest": "2ffd33de0c6c24aecb9eceae3204e1c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10866, "upload_time": "2018-12-06T01:06:57", "url": "https://files.pythonhosted.org/packages/76/a0/73207bdecffecabcc11f1b25336b977143fb8b77e3dbc33edc75c4840bed/marshmallow-objects-1.0.18.tar.gz" } ], "1.0.19": [ { "comment_text": "", "digests": { "md5": "1342804988ee0b878517bb7f70fcd7cb", "sha256": "915a678282f45120d99f771453f2b720031664621adfb3e3b01aae5ebc5a5acb" }, "downloads": -1, "filename": "marshmallow_objects-1.0.19-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1342804988ee0b878517bb7f70fcd7cb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6168, "upload_time": "2019-01-27T05:25:03", "url": "https://files.pythonhosted.org/packages/a8/ef/14a4c08bf6c3ed4ede5dc695c259912542b5ebbe903f5f1161510f2270cc/marshmallow_objects-1.0.19-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "17f8b306051336710fbf5897e7e87cf7", "sha256": "558af1acbc1a647bd6e87802e156dad1aa91deea0e808ff744eace6e953d78d6" }, "downloads": -1, "filename": "marshmallow-objects-1.0.19.tar.gz", "has_sig": false, "md5_digest": "17f8b306051336710fbf5897e7e87cf7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11090, "upload_time": "2019-01-27T05:25:04", "url": "https://files.pythonhosted.org/packages/4b/c9/ce0cd8dc818c535c7df59f8d0c2bc66945a27980dbb04cb1ee97830f5e7c/marshmallow-objects-1.0.19.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "810ca38a9dc27cddabe59d511a6b7bf2", "sha256": "800c55c6772b825f2c78eb6bed699b96ec2485c9d74c9b873cb6befad347ca54" }, "downloads": -1, "filename": "marshmallow_objects-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "810ca38a9dc27cddabe59d511a6b7bf2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4050, "upload_time": "2018-02-07T05:25:02", "url": "https://files.pythonhosted.org/packages/39/ca/219274c72e57d99969e7176b9ef67b8fc9d8c92a56a485c533bacd0043d2/marshmallow_objects-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "01cd3ff7c954db0eb9da912f5c9b4b0d", "sha256": "5a96a11f764cf042d501d13cbde66634189f110d61cadcb200bd5fa59dee6417" }, "downloads": -1, "filename": "marshmallow-objects-1.0.2.tar.gz", "has_sig": false, "md5_digest": "01cd3ff7c954db0eb9da912f5c9b4b0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5319, "upload_time": "2018-02-07T05:25:03", "url": "https://files.pythonhosted.org/packages/8e/87/39b11f352f5a3ecbfeb1de3b15dfb081be5d23f6c09935be4dde8e5d1796/marshmallow-objects-1.0.2.tar.gz" } ], "1.0.20": [ { "comment_text": "", "digests": { "md5": "255c6b9801d74f827ab4c8966b309d9a", "sha256": "6be3916be47ef7b11253a3efd6e29c0247f06cfbc43298b1daadffb9b8653afe" }, "downloads": -1, "filename": "marshmallow_objects-1.0.20-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "255c6b9801d74f827ab4c8966b309d9a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6384, "upload_time": "2019-06-04T03:43:44", "url": "https://files.pythonhosted.org/packages/a9/a8/7e2eecaaf7b8c89bb700662fbe8ad126d85dac833ad52f3f9b11e98f6012/marshmallow_objects-1.0.20-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ebe012e604c7a9493fe3fae4b9fdd56a", "sha256": "269a42269af3401a5b67068e0cfc09d435134d89cd4cde9927247d33798933d7" }, "downloads": -1, "filename": "marshmallow-objects-1.0.20.tar.gz", "has_sig": false, "md5_digest": "ebe012e604c7a9493fe3fae4b9fdd56a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11534, "upload_time": "2019-06-04T03:43:45", "url": "https://files.pythonhosted.org/packages/35/dd/629975f28b87363cf4e2ee2008fb7466a56196647404d8c64f2bb1179702/marshmallow-objects-1.0.20.tar.gz" } ], "1.0.21": [ { "comment_text": "", "digests": { "md5": "003f0ef99938a069b4d15c1f4e8e5789", "sha256": "54a47ab81340266f9167e229f93f44f3cfe466d1803fe98be4a9ee6145ceca8b" }, "downloads": -1, "filename": "marshmallow_objects-1.0.21-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "003f0ef99938a069b4d15c1f4e8e5789", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6460, "upload_time": "2019-08-21T15:41:39", "url": "https://files.pythonhosted.org/packages/3e/09/317d5a537dd44baad0f582658025c48bb735b3807802270d604fe186cabb/marshmallow_objects-1.0.21-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "41bd0f0150c00ab5c30edd912f7c84e0", "sha256": "139e8b512148dd7aeb1be5eb12e042358b0fe9ec1b9f253ccf1d8ba83e28dda1" }, "downloads": -1, "filename": "marshmallow-objects-1.0.21.tar.gz", "has_sig": false, "md5_digest": "41bd0f0150c00ab5c30edd912f7c84e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11008, "upload_time": "2019-08-21T15:41:41", "url": "https://files.pythonhosted.org/packages/1e/95/73b2ea45f59a149dc37515910463b7dfe27728a298f2f717a5b182eeca67/marshmallow-objects-1.0.21.tar.gz" } ], "1.0.22": [ { "comment_text": "", "digests": { "md5": "6e6c4a8e721978c11bb0f8829d0e311b", "sha256": "b7948c961ee42e895642128e16a5ee46ba7e7f97ea410da656013298a3865d8d" }, "downloads": -1, "filename": "marshmallow_objects-1.0.22-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6e6c4a8e721978c11bb0f8829d0e311b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6524, "upload_time": "2019-08-27T16:16:48", "url": "https://files.pythonhosted.org/packages/fd/0a/1330264de183f1ff93c4307b6e7ef5c7f12e90e7ab8221ddad2f62c73fec/marshmallow_objects-1.0.22-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3250b939623302813f181bf1481d0802", "sha256": "864a9770c7e5a1ae0fd1492af4e75091fee88433cee942d0e4b409380c56dab8" }, "downloads": -1, "filename": "marshmallow-objects-1.0.22.tar.gz", "has_sig": false, "md5_digest": "3250b939623302813f181bf1481d0802", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11097, "upload_time": "2019-08-27T16:16:50", "url": "https://files.pythonhosted.org/packages/7e/3b/f7a3e5d32652f42f064d44274ab57dc54d912defb31a3144bc2ed43e3ffb/marshmallow-objects-1.0.22.tar.gz" } ], "1.0.23": [ { "comment_text": "", "digests": { "md5": "031f4540a3f1759c9176bce4fc4b84cf", "sha256": "023f6ce719bc3d211955a71ee6b78b0f203c9c383792f2cd96ccf68180a4acad" }, "downloads": -1, "filename": "marshmallow_objects-1.0.23-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "031f4540a3f1759c9176bce4fc4b84cf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6521, "upload_time": "2019-09-04T16:36:44", "url": "https://files.pythonhosted.org/packages/2d/e2/05eebaa3d7f54349547792f82710c59457d3dc19dffd5ab9c11cfed3a421/marshmallow_objects-1.0.23-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df906791c45e6dcb51e07ce4fc50e806", "sha256": "173b779781aa26074ad1b3917104a44c066c92051a0da921dbc97bac48f3edad" }, "downloads": -1, "filename": "marshmallow-objects-1.0.23.tar.gz", "has_sig": false, "md5_digest": "df906791c45e6dcb51e07ce4fc50e806", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11130, "upload_time": "2019-09-04T16:36:45", "url": "https://files.pythonhosted.org/packages/75/e7/bf21ea141a3a6fa97eace4f1861d3a6ad4eb8566a453e4f7ede694d4811e/marshmallow-objects-1.0.23.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "998da62e07ca148da4b3ecabe0d126cd", "sha256": "e07bb702920860b54391b09222267b04758121a7138be3e07aabdd2bcaa1341e" }, "downloads": -1, "filename": "marshmallow_objects-1.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "998da62e07ca148da4b3ecabe0d126cd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4078, "upload_time": "2018-02-07T16:37:34", "url": "https://files.pythonhosted.org/packages/27/fb/be866cfbe0e2d7ec6cf0b0864740c581159a57861ff89bb211179e7584d1/marshmallow_objects-1.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6823ff8bef91f727b8999cf16016af4", "sha256": "bf632b0eb5d4a9f52ad185371e1eb43d7c99db0b9be66c8f59053397e12d0e72" }, "downloads": -1, "filename": "marshmallow-objects-1.0.3.tar.gz", "has_sig": false, "md5_digest": "f6823ff8bef91f727b8999cf16016af4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6154, "upload_time": "2018-02-07T16:37:35", "url": "https://files.pythonhosted.org/packages/d6/16/1930c04af6e1c37eca6e428bfa310e3a5a6eacdeef435b1c814f4c91bad9/marshmallow-objects-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "da9c962970130f6ca25217d8f7942277", "sha256": "d35a3464dd93e2056ede7cb792d5a731bbb78a72650d6e4d51151943d4b28f3f" }, "downloads": -1, "filename": "marshmallow_objects-1.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "da9c962970130f6ca25217d8f7942277", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4468, "upload_time": "2018-02-08T22:30:59", "url": "https://files.pythonhosted.org/packages/d6/10/b7079e8e47ef2c9de57281035fa5f3c8619e5485f4a0b9a17ffa53b00fbd/marshmallow_objects-1.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "834a0a0f9498771afd79f904a0846833", "sha256": "1dfb9e4c84beae7ba02f8f6137d4bc1b316fa790030e3add0cd1962b620acdf2" }, "downloads": -1, "filename": "marshmallow-objects-1.0.4.tar.gz", "has_sig": false, "md5_digest": "834a0a0f9498771afd79f904a0846833", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7536, "upload_time": "2018-02-08T22:31:00", "url": "https://files.pythonhosted.org/packages/7d/04/6d057f5e0237146fa55084f315f44464e931437edc325e11575ca7939911/marshmallow-objects-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "f6669509d037fe50bc5b90c1e2e65699", "sha256": "c42b5704ca8cdd31adfa461eb0d915cf8271ec139822e21fe51a20b1851b28a9" }, "downloads": -1, "filename": "marshmallow_objects-1.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f6669509d037fe50bc5b90c1e2e65699", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4770, "upload_time": "2018-02-11T23:03:19", "url": "https://files.pythonhosted.org/packages/32/b1/a85a2f6dbc829ee838e139df63cb74065a2279e7e8c289de2b5bce3e0089/marshmallow_objects-1.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "437d77796c87fe1708226cb37dd32c44", "sha256": "ca7a8521b03c744ef3a9940d098dd559b59867b9c577d4946d806a9130ec6d3a" }, "downloads": -1, "filename": "marshmallow-objects-1.0.5.tar.gz", "has_sig": false, "md5_digest": "437d77796c87fe1708226cb37dd32c44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8064, "upload_time": "2018-02-11T23:03:21", "url": "https://files.pythonhosted.org/packages/5d/2c/341a3947c3e850e9c08588409a8c1e1a66ea25746b817ab488ef0b77b788/marshmallow-objects-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "df0fa033d62bb2d59a248fda403dc411", "sha256": "ce36c8fb0a9c1b8266757368327502af0023a54bcf2dfb7ad4da8df9f0dfedbc" }, "downloads": -1, "filename": "marshmallow_objects-1.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "df0fa033d62bb2d59a248fda403dc411", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4831, "upload_time": "2018-03-11T23:48:06", "url": "https://files.pythonhosted.org/packages/7d/6e/f1bfcf820d089fe64967b6a90e0ed36d767dd0d2204b1b5d15efff163f71/marshmallow_objects-1.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f36de23e009042c7c934ac96814fcf07", "sha256": "31a345a363484a26475a96294ee09fed4ea16d9d0f8be6fca553ea872d8b796b" }, "downloads": -1, "filename": "marshmallow-objects-1.0.6.tar.gz", "has_sig": false, "md5_digest": "f36de23e009042c7c934ac96814fcf07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8337, "upload_time": "2018-03-11T23:48:08", "url": "https://files.pythonhosted.org/packages/19/4d/710d418bd9269c9737a15febf7f902d274a319bd721ffce479537de195d9/marshmallow-objects-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "55afed5080be01d52a740f8c1381a602", "sha256": "e7751b9914435a4c25799b10b0e9b3d5267ca46f8e5495c86669d510dc5c03db" }, "downloads": -1, "filename": "marshmallow_objects-1.0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "55afed5080be01d52a740f8c1381a602", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5707, "upload_time": "2018-03-12T22:37:51", "url": "https://files.pythonhosted.org/packages/99/fc/ff07681a043d1a416e0001d56cd8b041c25e6685ed1f50a24e21b27224b4/marshmallow_objects-1.0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "01b52ac644060f00cb89915e3abeade5", "sha256": "e91119047004f91ceaaafb3a844eb95932b8104316b673533867b6b0b11dfc71" }, "downloads": -1, "filename": "marshmallow-objects-1.0.7.tar.gz", "has_sig": false, "md5_digest": "01b52ac644060f00cb89915e3abeade5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9417, "upload_time": "2018-03-12T22:37:53", "url": "https://files.pythonhosted.org/packages/d7/25/9c38feb6aadf6aaa9c300fa54aaf17e097630c7cba02c1e4faaf3e643948/marshmallow-objects-1.0.7.tar.gz" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "31afad79d719d717c39bf90c84d952c5", "sha256": "ab067b108906a36a407f00a2d352f6eb79e55bba2e9c584673cc7cb6d1080bc2" }, "downloads": -1, "filename": "marshmallow_objects-1.0.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "31afad79d719d717c39bf90c84d952c5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5774, "upload_time": "2018-03-16T12:58:36", "url": "https://files.pythonhosted.org/packages/8f/a0/1a7587907ca46677b496670a00be77baff4c005be027e250d7d5b439ffd7/marshmallow_objects-1.0.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d55f23c0c3e2b6cf7fd2123b35d0ae95", "sha256": "93050606c08672fb440fcfddf979ebbd9ab7895f1261c85120c9a347ee7ea953" }, "downloads": -1, "filename": "marshmallow-objects-1.0.8.tar.gz", "has_sig": false, "md5_digest": "d55f23c0c3e2b6cf7fd2123b35d0ae95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9503, "upload_time": "2018-03-16T12:58:38", "url": "https://files.pythonhosted.org/packages/b0/9f/2b8d1a2af2692b5a64be07ff60bd35502dc685a7b237af6ab6d7986e8929/marshmallow-objects-1.0.8.tar.gz" } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "3baf2dc2367e4b9a0bc0341fed1f93a6", "sha256": "a61361759ae95e1791ce45f316ae4c5dcc90261de175c047df8038797423cbdd" }, "downloads": -1, "filename": "marshmallow_objects-1.0.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3baf2dc2367e4b9a0bc0341fed1f93a6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5774, "upload_time": "2018-03-19T17:23:46", "url": "https://files.pythonhosted.org/packages/83/3e/b42be9a04d20208fbb88696074d99b446639d5f2b6ae2515db6f96f28dee/marshmallow_objects-1.0.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c3a1ed2ddbc6a7c9ae1deaec1c7902e6", "sha256": "a2e70d7ba9f240a32ad007d6605b5086eddf7b62a174ba1740526cb74462e89a" }, "downloads": -1, "filename": "marshmallow-objects-1.0.9.tar.gz", "has_sig": false, "md5_digest": "c3a1ed2ddbc6a7c9ae1deaec1c7902e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9535, "upload_time": "2018-03-19T17:23:47", "url": "https://files.pythonhosted.org/packages/d6/9a/a9c9d192ec989eaa932cc90359ae2836d156b8bd966476242bd0271a1a26/marshmallow-objects-1.0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "031f4540a3f1759c9176bce4fc4b84cf", "sha256": "023f6ce719bc3d211955a71ee6b78b0f203c9c383792f2cd96ccf68180a4acad" }, "downloads": -1, "filename": "marshmallow_objects-1.0.23-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "031f4540a3f1759c9176bce4fc4b84cf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6521, "upload_time": "2019-09-04T16:36:44", "url": "https://files.pythonhosted.org/packages/2d/e2/05eebaa3d7f54349547792f82710c59457d3dc19dffd5ab9c11cfed3a421/marshmallow_objects-1.0.23-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df906791c45e6dcb51e07ce4fc50e806", "sha256": "173b779781aa26074ad1b3917104a44c066c92051a0da921dbc97bac48f3edad" }, "downloads": -1, "filename": "marshmallow-objects-1.0.23.tar.gz", "has_sig": false, "md5_digest": "df906791c45e6dcb51e07ce4fc50e806", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11130, "upload_time": "2019-09-04T16:36:45", "url": "https://files.pythonhosted.org/packages/75/e7/bf21ea141a3a6fa97eace4f1861d3a6ad4eb8566a453e4f7ede694d4811e/marshmallow-objects-1.0.23.tar.gz" } ] }