Metadata-Version: 2.0
Name: pydecoder
Version: 1.0.1
Summary: A XML, JSON,... decode library
Home-page: https://github.com/iodevs/pydecoder
Author: Jindrich Kralevic Smitka
Author-email: smitka.j@gmail.com
License: BSD license
Keywords: pydecoder
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: pyresult (>=0.2.0)
Requires-Dist: six (>=1.7.3)
Requires-Dist: toolz (>=0.8.2)

=========
PyDecoder
=========


.. image:: https://img.shields.io/pypi/v/pydecoder.svg
        :target: https://pypi.python.org/pypi/pydecoder

.. image:: https://img.shields.io/travis/iodevs/pydecoder.svg
        :target: https://travis-ci.org/iodevs/pydecoder

.. image:: https://readthedocs.org/projects/pydecoder/badge/?version=latest
        :target: https://pydecoder.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status

.. image:: https://pyup.io/repos/github/iodevs/pydecoder/shield.svg
        :target: https://pyup.io/repos/github/iodevs/pydecoder/
        :alt: Updates

.. image:: https://coveralls.io/repos/github/iodevs/pydecoder/badge.svg?branch=master
        :target: https://coveralls.io/github/iodevs/pydecoder?branch=master


A XML, JSON,... decode library


* Free software: BSD license
* Documentation: https://pydecoder.readthedocs.io.


Features
--------

* Decode and validate values from XML and JSON.

Install
-------

To install PyDecoder, run this command in your terminal:

.. code-block:: console

    $ pip install pydecoder


Example
-------

.. code:: python

    >>> from pydecoder.fields import required, optional
    >>> from pydecoder.json import to_int, to_string, decode

    # Define data
    >>> data = {'foo': 'Text', 'bar': 1}

    # Describe data
    >>> decoders = [
    ...     required('foo', to_string),
    ...     required('bar', to_int),
    ...     optional('baz', to_int, -5),
    ... ]

    # Decode/verify data
    >>> decode(lambda x: x, decoders, data)
    Result(status='Ok', value=['Text', 1, -5])


Credits
---------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage



=======
History
=======

0.1.0 (2017-05-21)
------------------

* First release on PyPI.


