{ "info": { "author": "Jean-S\u00e9bastien SUZANNE", "author_email": "jssuzanne@anybox.fr", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. This file is a part of the AnyBlok Marshmallow project\n..\n.. Copyright (C) 2017 Jean-Sebastien SUZANNE \n..\n.. This Source Code Form is subject to the terms of the Mozilla Public License,\n.. v. 2.0. If a copy of the MPL was not distributed with this file,You can\n.. obtain one at http://mozilla.org/MPL/2.0/.\n\n.. image:: https://img.shields.io/pypi/pyversions/anyblok_marshmallow.svg?longCache=True\n :alt: Python versions\n\n.. image:: https://img.shields.io/pypi/v/AnyBlok_Marshmallow.svg\n :target: https://pypi.python.org/pypi/AnyBlok_Marshmallow/\n :alt: Version status\n\n.. image:: https://travis-ci.org/AnyBlok/AnyBlok_Marshmallow.svg?branch=master\n :target: https://travis-ci.org/AnyBlok/AnyBlok_Marshmallow\n :alt: Build status\n\n.. image:: https://coveralls.io/repos/github/AnyBlok/AnyBlok_Marshmallow/badge.svg?branch=master\n :target: https://coveralls.io/github/AnyBlok/AnyBlok_Marshmallow?branch=master\n :alt: Coverage\n\n.. image:: https://img.shields.io/pypi/v/AnyBlok_Marshmallow.svg\n :target: https://pypi.python.org/pypi/AnyBlok_Marshmallow/\n :alt: Version status\n\n.. image:: https://readthedocs.org/projects/anyblok-marshmallow/badge/?version=latest\n :alt: Documentation Status\n :scale: 100%\n :target: https://doc.anyblok-marshmallow.anyblok.org/?badge=latest\n\n\nAnyBlok Marshmallow\n===================\n\nImprove `AnyBlok `_ to add validator, serializer and \ndeserializer schema with `marshmallow `_.\n\nThis module is a wrapper of `marshmallow-sqlalchemy `_,\nthe goal is to give the SQLAlchemy Model build by AnyBlok to this librairy\n\nAnyBlok Marshmallow is released under the terms of the `Mozilla Public License`.\n\nSee the `latest documentation `_\n\n\n.. This file is a part of the AnyBlok / Marshmallow project\n..\n.. Copyright (C) 2017 Jean-Sebastien SUZANNE \n..\n.. This Source Code Form is subject to the terms of the Mozilla Public License,\n.. v. 2.0. If a copy of the MPL was not distributed with this file,You can\n.. obtain one at http://mozilla.org/MPL/2.0/.\n\n.. contents::\n\nFront Matter\n============\n\nInformation about the AnyBlok / Marshmallow project.\n\nProject Homepage\n----------------\n\nAnyBlok is hosted on `github `_ - the main project\npage is at https://github.com/AnyBlok/AnyBlok_Marshmallow. Source code is\ntracked here using `GIT `_.\n\nReleases and project status are available on Pypi at\nhttp://pypi.python.org/pypi/anyblok_marshmallow.\n\nThe most recent published version of this documentation should be at\nhttp://doc.anyblok-marshmallow.anyblok.org.\n\nProject Status\n--------------\n\nAnyBlok with Marshmallow is currently in beta status and is expected to be fairly\nstable. Users should take care to report bugs and missing features on an as-needed\nbasis. It should be expected that the development version may be required\nfor proper implementation of recently repaired issues in between releases;\n\nInstallation\n------------\n\nInstall released versions of AnyBlok from the Python package index with\n`pip `_ or a similar tool::\n\n pip install anyblok_marshmallow\n\nInstallation via source distribution is via the ``setup.py`` script::\n\n python setup.py install\n\nInstallation will add the ``anyblok`` commands to the environment.\n\nUnit Test\n---------\n\nRun the test with ``nose``::\n\n pip install nose\n nosetests anyblok_marshmallow/tests\n\nDependencies\n------------\n\nAnyBlok works with **Python 3.3** and later. The install process will\nensure that `AnyBlok `_,\n`marshmallow >= 3.0.0 `_ and \n`marshmallow-sqlalchemy `_ \nare installed, in addition to other dependencies. \nThe latest version of them is strongly recommended.\n\n\nContributing (hackers needed!)\n------------------------------\n\nAnyblok / Marshmallow is at a very early stage, feel free to fork, talk with core\ndev, and spread the word!\n\nAuthor\n------\n\nJean-S\u00e9bastien Suzanne\n\nContributors\n------------\n\n`Anybox `_ team:\n\n* Jean-S\u00e9bastien Suzanne\n\n`Sensee `_ team:\n\n* Franck Bret\n\nBugs\n----\n\nBugs and feature enhancements to AnyBlok should be reported on the `Issue\ntracker `_.\n\n.. This file is a part of the AnyBlok / Marshmallow project\n..\n.. Copyright (C) 2017 Jean-Sebastien SUZANNE \n..\n.. This Source Code Form is subject to the terms of the Mozilla Public License,\n.. v. 2.0. If a copy of the MPL was not distributed with this file,You can\n.. obtain one at http://mozilla.org/MPL/2.0/.\n\n.. contents::\n\nMemento\n=======\n\nDeclare your **AnyBlok model**\n------------------------------\n\n::\n\n from anyblok.column import Integer, String\n from anyblok.relationship import Many2One, Many2Many\n from anyblok import Declarations\n\n\n @Declarations.register(Declarations.Model)\n class City:\n\n id = Integer(primary_key=True)\n name = String(nullable=False)\n zipcode = String(nullable=False)\n\n def __repr__(self):\n return ''.format(self=self)\n\n\n @Declarations.register(Declarations.Model)\n class Tag:\n\n id = Integer(primary_key=True)\n name = String(nullable=False)\n\n def __repr__(self):\n return ''.format(self=self)\n\n\n @Declarations.register(Declarations.Model)\n class Customer:\n id = Integer(primary_key=True)\n name = String(nullable=False)\n tags = Many2Many(model=Declarations.Model.Tag)\n\n def __repr__(self):\n return ''.format(self=self)\n\n\n @Declarations.register(Declarations.Model)\n class Address:\n\n id = Integer(primary_key=True)\n street = String(nullable=False)\n city = Many2One(model=Declarations.Model.City, nullable=False)\n customer = Many2One(\n model=Declarations.Model.Customer, nullable=False,\n one2many=\"addresses\")\n\n\n.. warning::\n\n The **AnyBlok model** must be declared in a blok\n\n\nDeclare your schema\n-------------------\n\n::\n\n from anyblok_marshmallow import SchemaWrapper, PostLoadSchema, Nested\n\n class CitySchema(SchemaWrapper):\n model = 'Model.City'\n\n\n class TagSchema(SchemaWrapper):\n model = 'Model.Tag'\n\n\n class AddressSchema(SchemaWrapper):\n model = 'Model.Address'\n\n class Schema:\n # Add some marshmallow fields or behaviours\n\n # follow the relationship Many2One and One2One\n city = Nested(CitySchema)\n\n\n class CustomerSchema(SchemaWrapper):\n model = 'Model.Customer'\n # optionally attach an AnyBlok registry\n # to use for serialization, desarialization and validation\n registry = registry\n\n class Schema(PostLoadSchema):\n # follow the relationship One2Many and Many2Many\n # - the many=True is required because it is *2Many\n # - exclude is used to forbid the recurse loop\n addresses = Nested(AddressSchema, many=True, exclude=('customer', ))\n tags = Nested(TagSchema, many=True)\n\n\n customer_schema = CustomerSchema()\n\n\n.. note::\n\n **New** in version **1.1.0** the Nested field must come from **anyblok_marshmallow**,\n because **marshmallow** cache the Nested field with the context. And the context is not propagated\n again if it changed\n\n.. note::\n\n **Ref** in version **1.4.0**, ``post_load_return_instance`` was replaced by the mixin class\n ``PostLoadSchema``\n\n.. note::\n\n **Ref** in version **2.1.0**, ``ModelSchema`` was replaced by ``SchemaWrapper``. This action\n break the compatibility with the previous version, but allow to follow the upgrade of **marshmallow**\n\n\n(De)serialize your data and validate it\n---------------------------------------\n\n::\n\n customer = registry.Customer.insert(name=\"JS Suzanne\")\n tag1 = registry.Tag.insert(name=\"tag 1\")\n customer.tags.append(tag1)\n tag2 = registry.Tag.insert(name=\"tag 2\")\n customer.tags.append(tag2)\n rouen = registry.City.insert(name=\"Rouen\", zipcode=\"76000\")\n paris = registry.City.insert(name=\"Paris\", zipcode=\"75000\")\n registry.Address.insert(customer=customer, street=\"Somewhere\", city=rouen)\n registry.Address.insert(customer=customer, street=\"Another place\", city=paris)\n\n dump_data = customer_schema.dump(customer).data\n # {\n # 'id': 1,\n # 'name': 'JS Suzanne',\n # 'tags': [\n # {\n # 'id': 1,\n # 'name': 'tag 1',\n # },\n # {\n # 'id': 2,\n # 'name': 'tag 2',\n # },\n # ],\n # 'addresses': [\n # {\n # 'id': 1\n # 'street': 'Somewhere'\n # 'city': {\n # 'id': 1,\n # 'name': 'Rouen',\n # 'zipcode': '76000',\n # },\n # },\n # {\n # 'id': 2\n # 'street': 'Another place'\n # 'city': {\n # 'id': 2,\n # 'name': 'Paris',\n # 'zipcode': '75000',\n # },\n # },\n # ],\n # }\n\n customer_schema.load(dump_data).data\n # , ])>\n\n errors = customer_schema.validate(dump_data)\n # dict with all the validating errors\n\n.. note::\n\n We have an instance of the model cause of the mixin ``PostLoadSchema``\n\n\nGive the registry\n-----------------\n\nThe schema need to have the registry.\n\nIf no registry found when the de(serialization) or validation then the \n**RegistryNotFound** exception will be raised.\n\nAdd the **registry** by the class attribute\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThis is the solution given in the main exemple::\n\n class CustomerSchema(SchemaWrapper):\n model = 'Model.Customer'\n registry = registry\n\n\nAdd the **registry** during init\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThis solution is use during the instanciation\n\n::\n\n customer_schema = CustomerSchema(registry=registry)\n\n\nAdd the **registry** by the context\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThis solution is use during the instanciation or after\n\n::\n\n customer_schema = CustomerSchema(context={'registry': registry})\n\nor\n\n::\n\n customer_schema = CustomerSchema()\n customer_schema.context['registry'] = registry\n\n\nAdd the **registry** when the de(serialization or validator is called\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n::\n\n customer_schema.dumps(customer, registry=registry)\n customer_schema.dump(customer, registry=registry)\n customer_schema.loads(dump_data, registry=registry)\n customer_schema.load(dump_data, registry=registry)\n customer_schema.validate(dump_data, registry=registry)\n\n\n**model** option\n----------------\n\nThis option add in the model name. As the registry, this option\ncan be passed by definition, initialization, context or during the call of the (de)serialization / validation\n\n::\n\n class AnySchema(SchemaWrapper):\n model = \"Model.Customer\"\n\nor\n\n::\n\n any_schema = AnySchema(model=\"Model.customer\")\n\nor\n\n::\n\n any_schema.context['model'] = \"Model.Customer\"\n\nor\n\n::\n\n any_schema.dumps(instance, model=\"Model.Customer\")\n any_schema.dump(instance, model=\"Model.Customer\")\n any_schema.loads(dump_data, model=\"Model.Customer\")\n any_schema.load(dump_data, model=\"Model.Customer\")\n any_schema.validate(dump_data, model=\"Model.Customer\")\n\n\n**only_primary_key** option\n---------------------------\n\nThis option add in the only argument the primary keys of the model. As the registry, this option\ncan be passed by definition, initialization, context or during the call of the (de)serialization / validation\n\n::\n\n class CustomerSchema(SchemaWrapper):\n model = \"Model.Customer\"\n only_primary_key = True\n\nor\n\n::\n\n customer_schema = CustomerSchema(only_primary_key=True)\n\nor\n\n::\n\n customer_schema.context['only_primary_key'] = True\n\nor\n\n::\n\n customer_schema.dumps(instance, only_primary_key=True)\n customer_schema.dump(instance, only_primary_key=True)\n customer_schema.loads(dump_data, only_primary_key=True)\n customer_schema.load(dump_data, only_primary_key=True)\n customer_schema.validate(dump_data, only_primary_key=True)\n\n\n**required_fields** option\n--------------------------\n\nThis option force the generated fields, and only them to be requried.\n\n::\n\n class CustomerSchema(SchemaWrapper):\n model = \"Model.Customer\"\n required_fields = True\n # or required_fields = [ list of fieldname ]\n\nor\n\n::\n\n customer_schema = CustomerSchema(required_fields=True)\n\nor\n\n::\n\n customer_schema.context['required_fields'] = True\n\nor\n\n::\n\n customer_schema.loads(dump_data, required_fields=True)\n customer_schema.load(dump_data, required_fields=True)\n customer_schema.validate(dump_data, required_fields=True)\n\n.. note:: All the attributes can take **True** or the list of the fieldname to be required\n\nUse the field JsonCollection\n----------------------------\n\nThis field allow the schema to inspect an AnyBlok.fields.Json in an any specific instance to \nvalidate the value.\n\nAnyBlok models::\n\n @register(Model)\n class Template:\n name = anyblok.column.String(primary_key=True)\n properties = anyblok.column.Json(defaumt={})\n\n @register(Model)\n class SaleOrder:\n id = anyblok.column.Integer(primary_key=True)\n number = anyblok.column.Integer(nullable=False)\n discount = anyblok.column.Integer()\n\nAnyBlok / Marchmallow schema::\n\n class SaleOrderSchema(SchemaWrapper):\n model = 'Model.SaleOrder'\n\n class Schema:\n discount = JsonCollection(\n fieldname='properties',\n keys=['allowed_discount'],\n cls_or_instance_type=marshmallow.fields.Integer(required=True)\n )\n\nUse::\n\n goodcustomer = registry.Template.insert(\n name='Good customer',\n properties={'allowed_discount': [10, 15, 30]\n )\n customer = registry.Template.insert(\n name='Customer',\n properties={'allowed_discount': [0, 5, 10]\n )\n badcustomer = registry.Template.insert(\n name='Bad customer',\n properties={'allowed_discount': [0]\n )\n\n schema = SaleOrderSchema(registry=registry)\n\n --------------------------\n\n data = schema.load(\n {\n number='SO0001',\n discount=10,\n },\n instances={'default': goodcustomer}\n )\n\n --------------------------\n\n data = schema.load(\n {\n number='SO0001',\n discount=10,\n },\n instances={'default': customer}\n )\n ==> error = {}\n\n --------------------------\n\n data = schema.load(\n {\n number='SO0001',\n discount=10,\n },\n instances={'default': badcustomer}\n )\n ==> error = {'discount': ['Not a valid choice']}\n\n.. This file is a part of the AnyBlok / Marshmallow project\n..\n.. Copyright (C) 2017 Jean-Sebastien SUZANNE \n.. Copyright (C) 2018 Jean-Sebastien SUZANNE \n.. Copyright (C) 2019 Jean-Sebastien SUZANNE \n..\n.. This Source Code Form is subject to the terms of the Mozilla Public License,\n.. v. 2.0. If a copy of the MPL was not distributed with this file,You can\n.. obtain one at http://mozilla.org/MPL/2.0/.\n\n.. contents::\n\nCHANGELOG\n=========\n\n2.2.3 (2019-05-06)\n------------------\n\n* Fixed du of Marshmallow 3.0.0RC5 release\n* Refactored unittest from nosetest to pytest\n\n2.2.2 (2018-12-06)\n------------------\n\n* Fixed du of Marshmallow 3.0.0RC1 release\n\n2.2.1 (2018-10-26)\n------------------\n\n* Fixed du of Marshmallow 3.0.0b19 release\n\n2.2.0 (2018-10-17)\n------------------\n\n* Fixed the convertion of type between **AnyBlok.Column** and **marshmallow.Field**\n\n2.1.0 (2018-09-26)\n------------------\n\n* Fixed the compatibility with **Marshmallow > 3.0.0b8**\n* Removed ``ModelSchema`` class\n* Added ``SchemaWrapper``, this is the best way to defined a generated\n schema with the **marshmallow_sqlalchemy** library\n\n.. warning::\n\n This version break the compatibility with previous version, in the only\n goal to be adapted with the latest version of **marshmallow**\n\n2.0.1 (2018-06-07)\n------------------\n\n* Fix required_field put allow_none to False\n\n2.0.0 (2018-05-30)\n------------------\n\n* Add JsonCollection field, Allow to add a check in function of an collection\n stored in a AnyBlok.fields.Json\n* Add Text field, to represent an ``anyblok.column.Text``\n* Migration of the code and unit test to marshmallow 3.0.0\n* Add Email matching for ``anyblok.column.Email``\n* Add URL matching for ``anyblok.column.URL``\n* Add PhoneNumber matching for ``anyblok.column.PhoneNumber``\n* Add Country matching for ``anyblok.column.Country``\n* Add required_fields option\n* Add InstanceField\n\n1.4.0 (2018-04-07)\n------------------\n\n* Replace **post_load_return_instance** method by **PostLoadSchema** class\n* In the case of the field **Selection**, the validator **OneOf** is \n applied with the available values come from the AnyBlok columns\n* Replace **marshmallow_sqlalchemy.fields.Related** by \n **anyblok_marshmallow.fields.Nested**. The goal is to improve the consistent \n between all field in the schema\n\n1.3.0 (2017-12-23)\n------------------\n\n* [ADD] unittest on some case\n* [FIX] AnyBlok field.Function is return as MarshMallow fields.Raw\n* [ADD] fields.File, type to encode and decode to/from base 64\n\n1.2.0 (2017-11-30)\n------------------\n\n* [REF] decrease complexity\n* [IMP] Add ``validates_schema`` on ModelSchema to automaticly check\n if the field exist on the model\n\n1.1.0 (2017-11-02)\n------------------\n\n* Add option put only the primary keys\n* Fix the Front page\n* REF model option, can be given by another way than Meta\n* Put RegistryNotFound in exceptions\n* Add Nested field, this field is not and have not to be cached\n\n1.0.2 (2017-10-25)\n------------------\n\n* Fix pypi documentation\n\n1.0.0 (2017-10-24)\n------------------\n\n* Add marshmallow schema for AnyBlok for:\n\n - Serialization\n - Deserialization\n - Validation\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://anyblok-marshmallow.readthedocs.io/en/2.2.3", "keywords": "anyblok_marshmallow", "license": "", "maintainer": "", "maintainer_email": "", "name": "anyblok_marshmallow", "package_url": "https://pypi.org/project/anyblok_marshmallow/", "platform": "", "project_url": "https://pypi.org/project/anyblok_marshmallow/", "project_urls": { "Homepage": "https://anyblok-marshmallow.readthedocs.io/en/2.2.3" }, "release_url": "https://pypi.org/project/anyblok_marshmallow/2.2.3/", "requires_dist": null, "requires_python": "", "summary": "Add validator, serializer and deserializer to AnyBlok", "version": "2.2.3" }, "last_serial": 5232416, "releases": { "1.0.1": [ { "comment_text": "", "digests": { "md5": "fbca021ee266c444e54aa68cdab099e6", "sha256": "88dbf09ac7c1f28e92c78b84b4e26391d2eb6e89b3bbe13102afddb0316344e9" }, "downloads": -1, "filename": "anyblok_marshmallow-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "fbca021ee266c444e54aa68cdab099e6", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 24477, "upload_time": "2017-10-24T16:11:59", "url": "https://files.pythonhosted.org/packages/93/32/3ef853e3af3b216addc4aae5aa8b0de27425011d96317d2b60fda6768adb/anyblok_marshmallow-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "35cf22e48d08f9f4eacbfd084a0a4f99", "sha256": "9de80bc720d09fb6d0de31cfd0012d9078e06cbefec95dc36d548c489eaf5cfa" }, "downloads": -1, "filename": "anyblok_marshmallow-1.0.1.tar.gz", "has_sig": false, "md5_digest": "35cf22e48d08f9f4eacbfd084a0a4f99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17974, "upload_time": "2017-10-24T16:11:55", "url": "https://files.pythonhosted.org/packages/40/ca/49a79be7e53339bcdd77e3215889c97d56b06c947a140c99522b16978700/anyblok_marshmallow-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "fccabbb090067453f881d9b1e2f7fa20", "sha256": "c47c6176e199fd6931b627038459ddfd594f131e380764883ff4cd644bf8bf7c" }, "downloads": -1, "filename": "anyblok_marshmallow-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "fccabbb090067453f881d9b1e2f7fa20", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 24514, "upload_time": "2017-10-25T05:30:32", "url": "https://files.pythonhosted.org/packages/c6/f2/a6d2912b27d72376c3bf379cadbec6590a4a04efeb9e78d7b8ce00a523eb/anyblok_marshmallow-1.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3772f08f6edc2103ec7ca991ebea25d5", "sha256": "e2215fa7d0e4c5c1899c925bb09804dc2a6c23542ed9f7d77eaf86329dd679f8" }, "downloads": -1, "filename": "anyblok_marshmallow-1.0.2.tar.gz", "has_sig": false, "md5_digest": "3772f08f6edc2103ec7ca991ebea25d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18009, "upload_time": "2017-10-25T05:30:27", "url": "https://files.pythonhosted.org/packages/5c/d2/aa574ab6b4ce972c5f67ab2d88d5ea28a1cb4f2b738ef32e53aeb8fcb4ee/anyblok_marshmallow-1.0.2.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "f7196c686aa6501c9fca1d9379049144", "sha256": "cf73583a3126b62f944db1a9a2737ec0b507f94eb7080f78062b7d9fc706a5c3" }, "downloads": -1, "filename": "anyblok_marshmallow-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f7196c686aa6501c9fca1d9379049144", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 28478, "upload_time": "2017-11-02T10:31:45", "url": "https://files.pythonhosted.org/packages/74/10/92ee23614f14c2bd3053cdce873cfc6dbc1be5976e946f4b3bf754e1df9f/anyblok_marshmallow-1.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2b3405c77bd159bb7dbc7195a238eddd", "sha256": "63925709982e7bc9048f683f74e3bd097b28b2a1c15c02cdc50c6dca0a413b42" }, "downloads": -1, "filename": "anyblok_marshmallow-1.1.0.tar.gz", "has_sig": false, "md5_digest": "2b3405c77bd159bb7dbc7195a238eddd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19565, "upload_time": "2017-11-02T10:31:43", "url": "https://files.pythonhosted.org/packages/a1/c0/2d4b1539de657fe2e895d5d1cce6b81db838fa6c1f00f572f095419afdcc/anyblok_marshmallow-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "b26c0bd400393eeb66b1d1c63bb59e2e", "sha256": "72dca0dd2094cfa467ab35df0ef22cf81b226833ef6a21cc2739ad86c7aa8e5d" }, "downloads": -1, "filename": "anyblok_marshmallow-1.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b26c0bd400393eeb66b1d1c63bb59e2e", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 28893, "upload_time": "2017-11-30T09:59:26", "url": "https://files.pythonhosted.org/packages/51/e1/9ab67ff9526c07b19fb0d705e91d112acc887443e3d4599e7c4789f563fe/anyblok_marshmallow-1.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fc8d7f3962983a6e782bb7f009112aa8", "sha256": "ac85024f54118fd07a880e65bcfc5a1f8e05f084d8cb37d2aa15e0bde7cd3545" }, "downloads": -1, "filename": "anyblok_marshmallow-1.2.0.tar.gz", "has_sig": false, "md5_digest": "fc8d7f3962983a6e782bb7f009112aa8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19972, "upload_time": "2017-11-30T09:59:24", "url": "https://files.pythonhosted.org/packages/38/8a/381a098c9a1322177982fe7b32bbc4e975801ad9832e25ef962714a1eea8/anyblok_marshmallow-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "2c18175fa99f6143e48849f8a0d6f097", "sha256": "fab83d8feb7e9fd99f694885fee84fdf0b0032abbcf9944ddde0cb86e7e4c864" }, "downloads": -1, "filename": "anyblok_marshmallow-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2c18175fa99f6143e48849f8a0d6f097", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 31890, "upload_time": "2017-12-23T11:30:00", "url": "https://files.pythonhosted.org/packages/af/77/ae121ed04e0430d38e62d20337783419f083fdd949ef70870f82c8a6bb5d/anyblok_marshmallow-1.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b2ac71373b1fd41a8b534f056e442586", "sha256": "c05cd680d7f30df10b82073857dad2287872646218135609dc1f858a29182f48" }, "downloads": -1, "filename": "anyblok_marshmallow-1.3.0.tar.gz", "has_sig": false, "md5_digest": "b2ac71373b1fd41a8b534f056e442586", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21628, "upload_time": "2017-12-23T11:29:57", "url": "https://files.pythonhosted.org/packages/e8/93/5fd768491415e2a2b50354ad0e20d24016b52830917feb0d146edf30fbad/anyblok_marshmallow-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "4c2e61c18d37ed2ac7cbfa2878ba76db", "sha256": "14fb7c5800ac847b00e236eb7c390b7742b19744b0a0aa350c612dce9952755c" }, "downloads": -1, "filename": "anyblok_marshmallow-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4c2e61c18d37ed2ac7cbfa2878ba76db", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 28232, "upload_time": "2018-04-07T08:41:00", "url": "https://files.pythonhosted.org/packages/b5/9b/cc7a7e77eb6f2c727360aff9e62d9897c35ae17c2951d74f7d73da29951b/anyblok_marshmallow-1.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3abd31fdf71db7a35a7fb77a76a90d8f", "sha256": "f9dd69ef6eb70d0145385084f8c539bb365e39c12b0d1a09a78ee6c330d38a15" }, "downloads": -1, "filename": "anyblok_marshmallow-1.4.0.tar.gz", "has_sig": false, "md5_digest": "3abd31fdf71db7a35a7fb77a76a90d8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17217, "upload_time": "2018-04-07T08:40:58", "url": "https://files.pythonhosted.org/packages/23/17/9904d586ad61d1e8e6203d7c703bb649c61e7e2ddc980f7fc3994af8f01c/anyblok_marshmallow-1.4.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "74a8335e072c0bac735e8d241d8d673f", "sha256": "7d31574f1a0fb1e229976a4d7e78ae25583af59890b935cae7d67655817cd51a" }, "downloads": -1, "filename": "anyblok_marshmallow-2.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "74a8335e072c0bac735e8d241d8d673f", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 30650, "upload_time": "2018-05-30T13:41:17", "url": "https://files.pythonhosted.org/packages/c2/2e/6655484763ca24ff2a5f15d3869d3e32c2e52703aa9b24a142a757a983d5/anyblok_marshmallow-2.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e3da382d6985b02c7d0dcc226c530395", "sha256": "68c228b9b1c54526002bc46220e52fe2048446b8d30071a279b2fe2000382ca5" }, "downloads": -1, "filename": "anyblok_marshmallow-2.0.0.tar.gz", "has_sig": false, "md5_digest": "e3da382d6985b02c7d0dcc226c530395", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24847, "upload_time": "2018-05-30T13:41:15", "url": "https://files.pythonhosted.org/packages/e7/76/b7f1f101a5404f6905bc9c9c44b8fbab1234ad453e4c362da91ea82976e7/anyblok_marshmallow-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "75de044c8bb976c50e1aa1c3d212f90b", "sha256": "5811448374dd02d307645127b390211221921897266363aa6f0a0b7a1afccd55" }, "downloads": -1, "filename": "anyblok_marshmallow-2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "75de044c8bb976c50e1aa1c3d212f90b", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 30690, "upload_time": "2018-06-07T08:03:02", "url": "https://files.pythonhosted.org/packages/f3/a5/d93b403b1ac66b08b200ce4baec25c2ede52f5e81df1214b05431c025f66/anyblok_marshmallow-2.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c85e781028bab68518646915f0d3eb4c", "sha256": "c0a575e4baf2d99cff415d488f014581df6c150ee5b77200aa9847eaf5fbe72e" }, "downloads": -1, "filename": "anyblok_marshmallow-2.0.1.tar.gz", "has_sig": false, "md5_digest": "c85e781028bab68518646915f0d3eb4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24910, "upload_time": "2018-06-07T08:02:59", "url": "https://files.pythonhosted.org/packages/92/2d/d1f19a86d5e085b1e44f3e7ff17e7dbddbad75ce74ad757bc6989c71550e/anyblok_marshmallow-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "b888f9721a08bd2fba0e7fa36094ad21", "sha256": "32468ff0436c9202dbf097257217846df362af9cc4f1e29710b1b589cae2354c" }, "downloads": -1, "filename": "anyblok_marshmallow-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b888f9721a08bd2fba0e7fa36094ad21", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 31096, "upload_time": "2018-09-26T07:19:43", "url": "https://files.pythonhosted.org/packages/97/b6/85cadac6d16349d5f17557b9bb5c9bdd6e54e863a097be43e66c5d5a0aa0/anyblok_marshmallow-2.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "28e929a5b20c0c164703fae222af4895", "sha256": "22bdfb339d8e64e62c4cad76662c4c239e17d5628b3fefadbb459f45b324707e" }, "downloads": -1, "filename": "anyblok_marshmallow-2.1.0.tar.gz", "has_sig": false, "md5_digest": "28e929a5b20c0c164703fae222af4895", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25569, "upload_time": "2018-09-26T07:19:41", "url": "https://files.pythonhosted.org/packages/a6/50/b6ee1b44566fb1a4b86c19dd3b57f80627b990cfcfc0f663dea638e23eee/anyblok_marshmallow-2.1.0.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "ae3f57df83ad71443faabd4a09bb3ab1", "sha256": "569f0b00c69bdc674b02a2ccec35cd134d7f0a5f3525055441a36a6f5c3f6160" }, "downloads": -1, "filename": "anyblok_marshmallow-2.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ae3f57df83ad71443faabd4a09bb3ab1", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 31614, "upload_time": "2018-10-17T09:10:11", "url": "https://files.pythonhosted.org/packages/29/0a/63eb1daad72a6bf5b9896328cba350452f7faa74a748253696ce6340b7a9/anyblok_marshmallow-2.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "deff6b4af9460a6be8c9588d28a4fad0", "sha256": "18d0446553b395250a392566897f7e68a84df4f8c85576b5d49ead923acbb472" }, "downloads": -1, "filename": "anyblok_marshmallow-2.2.0.tar.gz", "has_sig": false, "md5_digest": "deff6b4af9460a6be8c9588d28a4fad0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26115, "upload_time": "2018-10-17T09:10:09", "url": "https://files.pythonhosted.org/packages/49/1e/e01d1cd9f1ff6d3da5847a3639d7eba880772fac9387fdbc215252db0867/anyblok_marshmallow-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "af9be88c20bb55ba82ac9d17ac985251", "sha256": "4e3534128810b6551c2da98bc24f9f6bc00a13ff9a826f9eb333ab2715696a49" }, "downloads": -1, "filename": "anyblok_marshmallow-2.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "af9be88c20bb55ba82ac9d17ac985251", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 31626, "upload_time": "2018-10-26T14:43:14", "url": "https://files.pythonhosted.org/packages/d5/97/fefe34bb7c98b0285db545882449af71298aa4d927d7a318640c8217d04b/anyblok_marshmallow-2.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d6fb9aa280640beb353e574dfd92287", "sha256": "999817b2eed221060c032b9a8056a243984dc88a3281affc36dda73cba1f1519" }, "downloads": -1, "filename": "anyblok_marshmallow-2.2.1.tar.gz", "has_sig": false, "md5_digest": "1d6fb9aa280640beb353e574dfd92287", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26187, "upload_time": "2018-10-26T14:43:12", "url": "https://files.pythonhosted.org/packages/b0/ac/05faf14bf8523b3c46b3b7810d77050ac511f3cfc39281c44da4a2b24768/anyblok_marshmallow-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "cb78a23b20371a938dc0d41546e8334c", "sha256": "f757459492bc4ddbb95d24e644983f8cbe1257c0d73032863850961c40d3f59b" }, "downloads": -1, "filename": "anyblok_marshmallow-2.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "cb78a23b20371a938dc0d41546e8334c", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 31647, "upload_time": "2018-12-07T17:10:15", "url": "https://files.pythonhosted.org/packages/d8/64/672a69b424818d47acc518ea3e4341387dd587836d512c6a0e6f57c6f7cb/anyblok_marshmallow-2.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "059710fa3bd7bf46c90be92a969d8834", "sha256": "41c13ae604b3a7fbcb3b33102f67fb2c9037ca184ecd2d0ae733ef107d494354" }, "downloads": -1, "filename": "anyblok_marshmallow-2.2.2.tar.gz", "has_sig": false, "md5_digest": "059710fa3bd7bf46c90be92a969d8834", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26221, "upload_time": "2018-12-07T17:10:13", "url": "https://files.pythonhosted.org/packages/70/e2/32184955cfe40f904efbe92fcc0bb5eefba12d1cfc286d2b8f891771f4a5/anyblok_marshmallow-2.2.2.tar.gz" } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "ee2ac2e52eff8aac831fdc8db6a618bf", "sha256": "036db1173cc5b7a4a5dda978019f61080e751816f002edde58e0fe67c6017551" }, "downloads": -1, "filename": "anyblok_marshmallow-2.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ee2ac2e52eff8aac831fdc8db6a618bf", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 34676, "upload_time": "2019-05-06T12:29:30", "url": "https://files.pythonhosted.org/packages/a3/74/e7e36076b605778d2b9c5c0e8e1199f945f5f101ed18c2ba8c69b111a7be/anyblok_marshmallow-2.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b2546e37130cb5022c900551c4020fca", "sha256": "914b18b96fd11fbedb1f0b44c5efd1cfe58a924fb349c6637c3e0ca6ce1794d0" }, "downloads": -1, "filename": "anyblok_marshmallow-2.2.3.tar.gz", "has_sig": false, "md5_digest": "b2546e37130cb5022c900551c4020fca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28352, "upload_time": "2019-05-06T12:29:27", "url": "https://files.pythonhosted.org/packages/44/1d/e7d9f186e374e4fe53aac752a6420afef7567bcc8b8af860c896597d873f/anyblok_marshmallow-2.2.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ee2ac2e52eff8aac831fdc8db6a618bf", "sha256": "036db1173cc5b7a4a5dda978019f61080e751816f002edde58e0fe67c6017551" }, "downloads": -1, "filename": "anyblok_marshmallow-2.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ee2ac2e52eff8aac831fdc8db6a618bf", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 34676, "upload_time": "2019-05-06T12:29:30", "url": "https://files.pythonhosted.org/packages/a3/74/e7e36076b605778d2b9c5c0e8e1199f945f5f101ed18c2ba8c69b111a7be/anyblok_marshmallow-2.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b2546e37130cb5022c900551c4020fca", "sha256": "914b18b96fd11fbedb1f0b44c5efd1cfe58a924fb349c6637c3e0ca6ce1794d0" }, "downloads": -1, "filename": "anyblok_marshmallow-2.2.3.tar.gz", "has_sig": false, "md5_digest": "b2546e37130cb5022c900551c4020fca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28352, "upload_time": "2019-05-06T12:29:27", "url": "https://files.pythonhosted.org/packages/44/1d/e7d9f186e374e4fe53aac752a6420afef7567bcc8b8af860c896597d873f/anyblok_marshmallow-2.2.3.tar.gz" } ] }