Skip to main content

Schematron validation in Python.

Project description

This is a library package for Schematron validation in Python.

Schematron is a schema language used to validate XML documents. A Schematron schema is defined as an XML containing various assertions to validate a target XML document. If the XML you wish to validate passes all the Schematron assertions, your XML is considered valid according to the Schematron schema. Complete validation results are offered using the Schematron Validation Report Language, a loose definition of an XML based validation report.

There are various versions of Schematron available. This library only supports the latest version of Schematron, ISO/IEC 19757-3:2020, with a few limitations (see below).

Currently, this library only supports a pure Python mode of Schematron validation. In this pure Python mode we load the Schematron into an internal representation and apply that to an XML. The advantage of such direct evaluation is that it offers superior performance compared to an XSLT transformation based evaluation. The disadvantage is that it only supports XPath expressions and does not support XSLT functions.

In the future we hope to expand this library with an XSLT transformation based processing. Unfortunately XSLT transformations require an XSLT processor, which is currently not available in Python for XSLT >= 2.0.

A few similar packages to this software in other languages are node-schematron in Javascript, and ph-schematron in Java.

For all XPath expressions this package uses the elementpath library supporting XPath 1.0, 2.0, 3.0 and 3.1 selectors.

Please note that, as of this writing, this package only supports Python 3.12. Older Python versions are not supported due to missing functionality (Python syntax primarily). Newer versions will be supported in due time.

Python API

To use the Python API, install the project like any other Python project, e.g. using pip install pyschematron.

After that you can use:

from pyschematron import validate_document

result = validate_document(<xml_document.xml>, <schematron_schema.sch>)

svrl = result.get_svrl()
is_valid = result.is_valid()

To process multiple documents with the same Schematron schema, you can use:

from pyschematron import validate_document

documents = [...]
schema = <schema.sch>

results = validate_documents(documents, schema)

For more examples, or examples on how to use different parts of the API, please see the demo_* files in the scripts directory.

Command Line Interface

To use the command line interface, first install the application using pip: pip install pyschematron. Afterwards, you can use the command pyschematron to validate your documents. Use pyschematron --help to see the command line options.

Functionality

This library offers a basic implementation of Schematron using a pure Python “direct mode” evaluation method.

Direct mode evaluation

The direct mode evaluation allows for basic validity checks using all XPath functionality of Schematron.

When applied to a document, the direct mode evaluation follows this procedure to validate a document:

  1. Read in the Schematron from either a document or a string. In this phase the document is loaded into an AST (abstract syntax tree). All <includes /> are resolved and inlined into the AST. All <extends /> are loaded but not fully resolved at this stage.

  2. Recreate the AST without abstract patterns and rules. In this phase we process the AST to create a concrete set of patterns and rules. All <extends /> are resolved, abstract patterns are instantiated, and redundant abstract rules and patterns are removed.

  3. Phase selection, we limit the AST to only include patterns and phases limited to the selected phase.

  4. Query binding, we determine the query binding language to use. This library only supports xslt, xslt2, xslt3, xpath, xpath2, xpath3, and xpath31, where all xslt variations are limited to XPath expressions only.

  5. Apply the bound schema to an XML document to validate.

Custom functions

With the current direct mode evaluation method, custom XSLT functions in your Schematron (<xsl:function>) are not supported. Custom Python functions are supported however. View the demo_custom_functions.py in the scripts directory for examples.

Compliance

The direct mode evaluation supports most of the ISO/IEC 19757-3:2020 standard, with a few exceptions. All Schematron specific elements are supported, except for XSLT elements.

In terms of attributes, the @documents attribute of the <assert /> tag is not supported. Furthermore, @icon, @see, @fpi, @flag, and @role are loaded but not used.

Note that the ISO Schematron applies rules to:

  • Elements (*)

  • Attributes (@*)

  • Root node (/)

  • Comments (comment())

  • Processing instructions (processing-instruction())

But it does not apply rules to text nodes.

If there are any problems, please open a Github issue.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyschematron-1.1.8.tar.gz (490.1 kB view details)

Uploaded Source

Built Distribution

pyschematron-1.1.8-py3-none-any.whl (71.6 kB view details)

Uploaded Python 3

File details

Details for the file pyschematron-1.1.8.tar.gz.

File metadata

  • Download URL: pyschematron-1.1.8.tar.gz
  • Upload date:
  • Size: 490.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.32.3

File hashes

Hashes for pyschematron-1.1.8.tar.gz
Algorithm Hash digest
SHA256 d5128773545f170bb8a0adbecd1b878cc843666c56b6fdfd71150653d2480eeb
MD5 9d4739e064491956baf6ce6e00f1af15
BLAKE2b-256 c04c32007ea3e6259316fe051f02144623f8c4a424953a8a810c01664f378aca

See more details on using hashes here.

File details

Details for the file pyschematron-1.1.8-py3-none-any.whl.

File metadata

  • Download URL: pyschematron-1.1.8-py3-none-any.whl
  • Upload date:
  • Size: 71.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.32.3

File hashes

Hashes for pyschematron-1.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 8c2846e1d6927e0e1f06729ed36ddadd220099ffd37e1dd7501ca0a3e0d731a8
MD5 ce48397e811ff5c9ad1442c703cc5f9a
BLAKE2b-256 25cf6dcd6501ff6f54686cb714437210844a49c5f4f27ca197a56f9a21a73456

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page