Metadata-Version: 2.4
Name: alchemize
Version: 0.14.0
Summary: A simple library that allows for serialization and deserialization of models via mapping definitions
Home-page: https://github.com/jmvrbanac/alchemize
Author: John Vrbanac
Author-email: john.vrbanac@linux.com
License: Apache License 2.0
Keywords: model serialize deserialize transmute
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Operating System :: POSIX :: Linux
License-File: LICENSE
Requires-Dist: six
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

Alchemize - Simple de/serialization for Python
===============================================

Alchemize is designed to be a simple serialization and deserialization
library for Python. The primary use-case for Alchemize is to allow for
users to quickly build ReST clients using simple model mappings to
transform data from Python objects to a serializable form and vice-versa.

The power of Alchemize is that you can use it to augment existing
model structures from other libraries. For example, you can use Alchemize
to easily serialize your ORM models.

Installation
--------------

Alchemize is available on PyPI

.. code-block:: shell

    pip install alchemize


* Documentation: `ReadTheDocs <http://alchemize.readthedocs.org>`_
* Travis CI: |travis|
* Coverage: |codecov|

.. |travis| image:: https://travis-ci.org/jmvrbanac/alchemize.svg
    :target: https://travis-ci.org/jmvrbanac/alchemize

.. |codecov| image:: https://codecov.io/gh/jmvrbanac/alchemize/branch/master/graph/badge.svg
  :target: https://codecov.io/gh/jmvrbanac/alchemize
