Metadata-Version: 2.0
Name: onixcheck
Version: 0.3.0
Summary: ONIX validation library and commandline tool
Home-page: https://github.com/titusz/onixcheck
Author: Titusz Pan
Author-email: tp@py7.de
License: BSD
Keywords: ONIX,validation,EDItEUR,XML,RelaxNG,XMLSchema
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Requires-Dist: click
Requires-Dist: lxml

=========
onixcheck
=========

.. list-table::
    :stub-columns: 1

    * - docs
      - |docs|
    * - tests
      - | |travis| |appveyor|
        |
    * - package
      - |version| |downloads|

.. |docs| image:: https://readthedocs.org/projects/onixcheck/badge/?style=flat-square
    :target: https://readthedocs.org/projects/onixcheck
    :alt: Documentation Status

.. |travis| image:: http://img.shields.io/travis/titusz/onixcheck/master.svg?style=flat-square&label=Travis
    :alt: Travis-CI Build Status
    :target: https://travis-ci.org/titusz/onixcheck

.. |appveyor| image:: https://img.shields.io/appveyor/ci/titusz/onixcheck/master.svg?style=flat-square&label=AppVeyor
    :alt: AppVeyor Build Status
    :target: https://ci.appveyor.com/project/titusz/onixcheck

.. |version| image:: http://img.shields.io/pypi/v/onixcheck.svg?style=flat-square
    :alt: PyPI Package latest release
    :target: https://pypi.python.org/pypi/onixcheck

.. |downloads| image:: http://img.shields.io/pypi/dm/onixcheck.svg?style=flat-square
    :alt: PyPI Package monthly downloads
    :target: https://pypi.python.org/pypi/onixcheck

ONIX validation library and commandline tool
============================================

`ONIX for Books <http://www.editeur.org/11/Books/>`_ is an international XML
standard for the publishing and book trade industry. Onixcheck allows you
to validate ONIX versions 2.1 and 3.0 against the official XML Schema.


* Free software: BSD license

Installation
============

::

    pip install onixcheck

Quickstart
==========

Command line usage::

    onixcheck myonixfile.xml

Libary usage::

    import onixcheck

    errors = onixcheck.validate('/somedir/onixfile.xml')

Documentation
=============

https://onixcheck.readthedocs.org/

Development
===========

To run the all tests run::

    tox



Changelog
=========

0.1.0 (2015-07-18)
-----------------------------------------

* First release on PyPI.


