Skip to main content

License: MIT PyPI - Version Building and testing DOI

XDI-Validator

What is it?

XDI-Validator is a standalone JSON Schema based validator for XDI files. XDI (*.xdi) is a format used to save XAS data. This validator aim to be fully compliant with the XDI/1.0 specification, as detailed in the documents XAS Data Interchange Format Draft Specification, version 1.0 and Dictionary of XAS Data Interchange Metadata.

Usage

As simple as it gets :

# import the functionality from the module
from xdi_validator import validate, XDIEndOfHeaderMissingError

# open the xdi file
with open('filename.xdi', 'r') as xdi_document:
    
    # Validate the file. If there is no end-of-header token
    # an exception is raised
    try:
        xdi_errors, xdi_dict = validate(xdi_document)
    except XDIEndOfHeaderMissingError as ex:
        print(ex.message)
        
    # check if there are errors
    if xdi_errors:
        print('XDI is invalid!')
        print(xdi_errors)
    else:
        print('XDI is valid!')
        print(xdi_dict)
    

Basically, the method xdi_validator.validate() the *.xdi file-like object and will return a dictionary with the found errors per each field, and a representation of the contents of the *.xdi as a dictionary. The dictionary of errors is organized in the following way. The keys are the path (Namespace.tag) of the invalid field, and the corresponding value is the list of errors.

Note: Sure, users can also to use the library for parsing and converting XDI files into json representation.

Additionally, it is possible to convert a dictionary to XDI format and write it to file using the xdi_validator.write_xdi() function. Look the example below for a possible use case for this functionality:

# import the functionality from the module
from xdi_validator import validate, write_xdi, XDIEndOfHeaderMissingError

# open the xdi file
xdi
with open('filename.xdi', 'r') as xdi_document:
    
    # Validate the file. If there is no end-of-header token
    # an exception is raised
    try:
        xdi_errors, xdi_dict = validate(xdi_document)
    except XDIEndOfHeaderMissingError as ex:
        print(ex.message)
        
# check if there are errors
if xdi_errors:
    print('XDI is invalid!')
    # use the information in xdi_errors to correct the data
    # in the generated xdi_dict 
    ...
    # write the corrected data to file
    errors = write_xdi('corrected_file.xdi', xdi_dict)
    if not errors:
        print('Corrected file saved.')
    else:
        print(errors)
else:
    print('XDI is valid!')
    print(xdi_dict)

How to install?

XDI-Validator is available in PyPI. The project page is https://pypi.org/project/xdi-validator/. To install XDI-Validator on your development environment, just issue the command:

 pip install xdi-validator

To build and install from the source code do:

  1. Clone the repository: git clone https://github.com/AAAlvesJr/XDI-Validator.git
  2. Go the project directory: cd XDI-Validator
  3. Build the package: python3 -m build
  4. Install the wheel: pip install dist/xdi_validator-{VERSION}-py3-none-any.whl

where VERSION is the package version.

Source code

Access to the source code is granted via the project GitHub repository at the url https://github.com/AAAlvesJr/XDI-Validator.

Dependencies

XDI-Validator's only external dependency is jsonschema package.

How to contribute

Please, submit a pull request. PR adding new features should implement the correspondind unit test. Aside that, please, feel free to open issues for bugs and features requests.

License

XDI-Validator is available under the MIT license. See the LICENSE file for more info.

Download files

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

Source Distribution

xdi_validator-1.5.0.tar.gz (28.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

xdi_validator-1.5.0-py3-none-any.whl (11.2 kB view details)

Uploaded Python 3

File details

Details for the file xdi_validator-1.5.0.tar.gz.

File metadata

  • Download URL: xdi_validator-1.5.0.tar.gz
  • Upload date:
  • Size: 28.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for xdi_validator-1.5.0.tar.gz
Algorithm Hash digest
SHA256 73e79b3fd75e6d5b1a209e8c1fec985e8c37f57ede42124a9adad70395158d2a
MD5 69dddb95b798bdeb681ffec249010839
BLAKE2b-256 4d3a15a1e40e560e16e729cc1d7126b6bf777a3e82d3cdc0df4dac4feaeedd4d

See more details on using hashes here.

File details

Details for the file xdi_validator-1.5.0-py3-none-any.whl.

File metadata

  • Download URL: xdi_validator-1.5.0-py3-none-any.whl
  • Upload date:
  • Size: 11.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for xdi_validator-1.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dc24b71551b21b71b3e26eca9697a7d84c9845b58a307eb4a54456188fa88142
MD5 e9e99c9cbd230debb71f3a839f0ca9e7
BLAKE2b-256 ad9f128a5ef7fd600977293ee80d3ee07b4c0862baac1118ecfccd181193e7ea

See more details on using hashes here.

Supported by

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