Metadata-Version: 2.1
Name: serde
Version: 0.2.0
Summary: A lightweight, general-purpose, ORM framework for defining, serializing, deserializing, and validating data structures.
Home-page: https://github.com/rossmacarthur/serde
Author: Ross MacArthur
Author-email: macarthur.ross@gmail.com
Maintainer: Ross MacArthur
Maintainer-email: macarthur.ross@gmail.com
License: MIT
Download-URL: https://github.com/rossmacarthur/serde/archive/0.2.0.tar.gz
Keywords: serde serialization deserialization schema json
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.4
Requires-Dist: validators (>=0.12.0<0.13.0)
Provides-Extra: documenting
Requires-Dist: sphinx; extra == 'documenting'
Provides-Extra: linting
Requires-Dist: flake8; extra == 'linting'
Requires-Dist: flake8-docstrings; extra == 'linting'
Requires-Dist: flake8-isort; extra == 'linting'
Requires-Dist: flake8-per-file-ignores; extra == 'linting'
Requires-Dist: flake8-quotes; extra == 'linting'
Requires-Dist: pep8-naming; extra == 'linting'
Provides-Extra: packaging
Requires-Dist: twine; extra == 'packaging'
Provides-Extra: testing
Requires-Dist: pytest (>=3.3.0); extra == 'testing'
Requires-Dist: pytest-cov; extra == 'testing'
Requires-Dist: pytest-doctest-import; extra == 'testing'
Provides-Extra: toml
Requires-Dist: toml (>=0.10.0<0.11.0); extra == 'toml'
Provides-Extra: yaml
Requires-Dist: ruamel.yaml (>=0.15.0<0.16.0); extra == 'yaml'

Serde
=====

.. image:: https://img.shields.io/pypi/v/serde.svg?style=flat-square&colorB=4c1
    :target: https://pypi.org/project/serde/
    :alt: PyPI Version

.. image:: https://img.shields.io/readthedocs/serde/latest.svg?style=flat-square
    :target: https://serde.readthedocs.io
    :alt: Documentation Status

.. image:: https://img.shields.io/travis/rossmacarthur/serde.svg?style=flat-square
    :target: https://travis-ci.org/rossmacarthur/serde
    :alt: Build Status

.. image:: https://img.shields.io/codecov/c/github/rossmacarthur/serde.svg?style=flat-square
    :target: https://codecov.io/gh/rossmacarthur/serde
    :alt: Code Coverage

Serde is a lightweight, general-purpose, ORM framework for defining,
serializing, deserializing, and validating data structures in Python.

Getting started
---------------

Install this package with

::

    pip install serde


View the latest usage and API documentation
`here <https://serde.readthedocs.io/en/stable/api.html>`_.

License
-------

This project is licensed under the MIT License.


