Metadata-Version: 2.0
Name: schematics-xml
Version: 0.2.1
Summary: Python schematics models for converting to and from XML.
Home-page: http://github.com/alexhayes/schematics-xml
Author: Alex Hayes
Author-email: alex@alution.com
License: MIT
Keywords: schematics,xml,model,modelling,dicttoxml,xmltodict
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Other/Nonlisted Topic
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Requires-Dist: schematics (==2.0.0a1)
Requires-Dist: lxml (==3.6.4)
Requires-Dist: xmltodict (==0.10.2)

==============
schematics-xml
==============

Python schematics_ models for converting to and from XML.

.. image:: https://travis-ci.org/alexhayes/schematics-xml.png?branch=master
    :target: https://travis-ci.org/alexhayes/schematics-xml
    :alt: Build Status

.. image:: https://landscape.io/github/alexhayes/schematics-xml/master/landscape.png
    :target: https://landscape.io/github/alexhayes/schematics-xml/
    :alt: Code Health

.. image:: https://codecov.io/github/alexhayes/schematics-xml/coverage.svg?branch=master
    :target: https://codecov.io/github/alexhayes/schematics-xml?branch=master
    :alt: Code Coverage

.. image:: https://readthedocs.org/projects/schematics-xml/badge/
    :target: http://schematics-xml.readthedocs.org/en/latest/
    :alt: Documentation Status

.. image:: https://img.shields.io/pypi/v/schematics-xml.svg
    :target: https://pypi.python.org/pypi/schematics-xml
    :alt: Latest Version

.. image:: https://img.shields.io/pypi/pyversions/schematics-xml.svg
    :target: https://pypi.python.org/pypi/schematics-xml/
    :alt: Supported Python versions


Install
-------

.. code-block:: bash

    pip install schematics-xml


Example Usage
-------------

Simply inherit XMLModel.

.. code-block:: python

    from schematics_xml import XMLModel

    class Person(XMLModel):
        name = StringType()

    john = Person(dict(name='John'))

    xml = john.to_xml()

XML now contains;

.. code-block:: xml

    <?xml version='1.0' encoding='UTF-8'?>
    <person>
      <name>John</name>
    </person>

And back the other way;

.. code-block:: python

    john = Person.from_xml(xml)


Author
------

Alex Hayes <alex@alution.com>

.. _schematics: https://schematics.readthedocs.io


