django-rest-marshmallow
django-rest-marshmallow copied to clipboard
Marshmallow schemas for Django REST framework
Is there any support for ModelSerializer? It is useless to define all the fields again in the Schema.
_Dependabot Preview will be shut down on August 3rd, 2021. In order to keep getting Dependabot updates, please merge this PR and migrate to GitHub-native Dependabot before then._ Dependabot has...
Bumps [pytest-django](https://github.com/pytest-dev/pytest-django) from 3.8.0 to 4.4.0. Release notes Sourced from pytest-django's releases. 4.3.0 https://pytest-django.readthedocs.io/en/latest/changelog.html#v4-3-0-2021-05-15 4.1.0 https://pytest-django.readthedocs.io/en/latest/changelog.html#v4-1-0-2020-10-22 4.0.0 https://pytest-django.readthedocs.io/en/latest/changelog.html#v4-0-0-2020-10-16 Changelog Sourced from pytest-django's changelog. v4.4.0 (2021-06-06) Improvements Add a fixture django_capture_on_commit_callbacks...
Code ``` class LSerializer(Schema): id = fields.Integer() last_name = fields.String() first_name = fields.String() class RSerializer(Schema): id = fields.Integer() last_name = fields.Pluck(LSerializer, 'last_name') first_name = fields.Pluck(LSerializer, 'first_name') occupation = fields.String() ```...
Fork and own work on other PR by sloria
@sloria I can help set up Azure Pipelines. Do you have a reference pipeline file for travis I can take a look at? On the pipeline matter: - What/where is...
Installing this module via poetry/pip didn't pull down marshmallow, so I think you're missing a dependency there.
is restoring the parameter `many=true` when is validated the data previously was removing the parameter and always return a simple serializer and not the list serializer when you try to...
Hello, Not really sure if i am doing something wrong, but it seems like nested schema for many-to-many fields is not supported. When i tried to just add, `many_to_many_field =...