Metadata-Version: 1.1
Name: onixcheck
Version: 0.8.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
Description: =========
        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 examples
        ---------------------------
        
        Validate all .xml, .onx, .onix files in current directory::
        
            onixcheck
        
        
        Validate a single onix file::
        
            onixcheck myonixfile.xml
        
        
        Validate all .xml files in /onixdata and its subdirectories::
        
            onixcheck --path /onixdata --ext xml --recursive
        
        
        Show help::
        
            onixcheck -h
        
        
        Using onixcheck as a python lib
        -------------------------------
        
        Simple usage with `onixcheck.validate`::
        
            import onixcheck
            errors = onixcheck.validate('/somedir/onixfile.xml')
        
        `errors` is either a list of `Message` objects
        (INVALID file) or an empty list (VALID file)
        
        Documentation
        =============
        
        https://onixcheck.readthedocs.org/
        
        Development
        ===========
        
        To run the all tests run::
        
            tox
        
        
        
        Changelog
        =========
        
        0.8.0 (2015-07-23)
        -----------------------------------------
        
        * Added CLI-support for fast directory traversal validation
        * Secured XML-Parsing via defusedxml
        * Catch basic XML syntax errors
        * Windows standalone binary builds
        
        0.4.0 (2015-07-18)
        -----------------------------------------
        
        * First release on PyPI.
        
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
