Metadata-Version: 2.0
Name: expatriate
Version: 0.4
Summary: Library wrapping expat for parsing and generating XML and mapping objects from XML
Home-page: https://github.com/cjaymes/expatriate
Author: Casey Jaymes
Author-email: cjaymes@gmail.com
License: LGPL
Keywords: XML ORM modeling mapping
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup :: XML

expatriate
==========
.. image:: https://travis-ci.org/cjaymes/expatriate.svg?branch=master
.. image:: https://readthedocs.org/projects/expatriate/badge/?version=latest

XML parsing and generation library on top of expat with Python object mapping
(ORM). See tests/fixtures for examples of how to use.

Install (system-wide):

    pip install expatriate

Install (using venv):

    python3 -m venv venv
    . venv/bin/activate
    pip install --upgrade pip
    pip install -r requirements.txt
    python3 setup.py install

Tests:

    pip install pytest
    pytest

CHANGELOG
=========
0.4
    Merged in publishsubscribe, added attr_name getters, set loggers to INFO by
    default
0.3
    Added documentation, updated meta files
0.2
    Added modeling
0.1
    Initial release


