Metadata-Version: 2.1
Name: drf-rw-serializers
Version: 1.0.3
Summary: Generic views, viewsets and mixins that extend the Django REST Framework ones adding separated serializers for read and write operations
Home-page: https://github.com/vintasoftware/drf-rw-serializers
Author: vintasoftware
Author-email: contact@vinta.com.br
License: MIT
Keywords: Django REST Framework,Serializers,REST,API,Django
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
License-File: LICENSE.txt
Requires-Dist: Django<3.1,>=1.11

Django REST Framework Read & Write Serializers
==============================================

|pypi-badge| |travis-badge| |codecov-badge| |doc-badge| |pyversions-badge|
|license-badge|

Generic views, viewsets and mixins that extend the Django REST Framework ones
adding separated serializers for read and write operations.

.. Read more about which problems we resolve with this app on `Djanfo REST Framework Read & Write Serializers <https://blog.vinta.com.br/read-and-write-serializers>`_.

Documentation
-------------

The full documentation is at https://drf-rw-serializers.readthedocs.org.

License
-------

The code in this repository is licensed under the MIT unless
otherwise noted.

Please see ``LICENSE.txt`` for details.

How To Contribute
-----------------

Contributions are very welcome.

Please read `How To Contribute <https://github.com/vintasoftware/drf-rw-serializers/blob/master/CONTRIBUTING.rst>`_ for details.

PR description template should be automatically applied if you are sending PR
from github interface; otherwise you can find it it at
`PULL_REQUEST_TEMPLATE.md <https://github.com/vintasoftware/drf-rw-serializers/blob/master/.github/PULL_REQUEST_TEMPLATE.md>`_

Issue report template should be automatically applied if you are sending it
from github UI as well; otherwise you can find it at `ISSUE_TEMPLATE.md <https://github.com/vintasoftware/drf-rw-serializers/blob/master/.github/ISSUE_TEMPLATE.md>`_

Reporting Security Issues
-------------------------

Please do not report security issues in public. Please email
contact@vinta.com.br.

Getting Help
------------

Have a question about this repository? Please create an issue!


Commercial Support
------------------

This project, as other Vinta open-source projects, is used in products of Vinta
clients. We are always looking for exciting work, so if you need any commercial
support, feel free to get in touch: contact@vinta.com.br

Copyright (c) 2020 Vinta Serviços e Soluções Tecnológicas Ltda



.. |pypi-badge| image:: https://img.shields.io/pypi/v/drf-rw-serializers.svg
    :target: https://pypi.python.org/pypi/drf-rw-serializers/
    :alt: PyPI

.. |travis-badge| image:: https://travis-ci.org/vintasoftware/drf-rw-serializers.svg?branch=master
    :target: https://travis-ci.org/vintasoftware/drf-rw-serializers
    :alt: Travis

.. |codecov-badge| image:: http://codecov.io/github/vintasoftware/drf-rw-serializers/coverage.svg?branch=master
    :target: http://codecov.io/github/vintasoftware/drf-rw-serializers?branch=master
    :alt: Codecov

.. |doc-badge| image:: https://readthedocs.org/projects/drf-rw-serializers/badge/?version=latest
    :target: http://drf-rw-serializers.readthedocs.io/en/latest/
    :alt: Documentation

.. |pyversions-badge| image:: https://img.shields.io/pypi/pyversions/drf-rw-serializers.svg
    :target: https://pypi.python.org/pypi/drf-rw-serializers/
    :alt: Supported Python versions

.. |license-badge| image:: https://img.shields.io/github/license/vintasoftware/drf-rw-serializers.svg
    :target: https://github.com/vintasoftware/drf-rw-serializers/blob/master/LICENSE.txt
    :alt: License


Change Log
----------

..
   All enhancements and patches to drf_rw_serializers will be documented
   in this file.  It adheres to the structure of http://keepachangelog.com/ ,
   but in reStructuredText instead of Markdown (for ease of incorporation into
   Sphinx documentation and the PyPI description).
   
   This project adheres to Semantic Versioning (http://semver.org/).

.. There should always be an "Unreleased" section for changes pending release.

Unreleased
~~~~~~~~~~

[1.0.3] - 2020-01-29
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Added
_____
* Support Python 3.7
* Support Django 3.0


Removed
_______
* Drop support to Django 1.10
* Drop support to Python 2.7
* Drop support to Python 3.6

[1.0.2] - 2019-08-30
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Added
_____

* Support Django 2.2


[1.0.1] - 2019-01-16
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Added
_____

* Fixed bug in retrieval of success headers in create endpoints (breaking change)
* Updated dependencies

[0.1.1] - 2018-11-12
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Added
_____

* Support Django 2.1

[0.1.0] - 2018-02-21
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Added
_____

* First release on PyPI.
