Make standards compatible with HDF5/JSON/XML/YAML.
Project description
mkstd
Make standards that can be exported/imported/validated via HDF5/JSON/XML/YAML.
mkstd uses pre-existing standards for validation and schema specification, such that files produced using mkstd can be used independently of mkstd. For example, a tool developer can use mkstd to create a standard for their tool's data, but users do not necessarily need mkstd installed to use the data. However, mkstd also provides importers and exporters, so intended use also involves an mkstd installation for convenience.
Installation
pip install mkstd
# For HDF5 support
pip install hdfdict@git+https://github.com/SiggiGue/hdfdict
For environments requiring numpy<2, replace mkstd with mkstd[numpyv1] above.
Intended use
mkstd is intended to be used at two stages of data management. An example of these stages is provided in .
Generating a standard
At this stage, the "user" is the person designing the data type and corresponding standard. For example, a tool developer who wants to standardize the data produced by their tool. The steps could look like:
- (with
mkstd) Design the data type as a Pydantic data model. Thanks to Pydantic, it behaves like a standard for your data, as a Python object. - (with
mkstd) Export the standard as e.g. XML and JSON schemas. - (TODO, with
mkstd) Generate documentation for the standard, based on the Pydantic data model docstrings.
Using a standard
At this stage, the "user" is someone who wants to use data generated by the tool, or import their own data into the tool.
- (with or without
mkstd) Reformat data to match the standard specified by the e.g.mkstd-generated XML or JSON schema. - (with or without
mkstd) Validate the data against the schema. - (with or without
mkstd) Import/export the reformatted data with the tool.
External validation
As written above, many uses of the standard produced by mkstd are intended to be possible without an mkstd installation. This is because the generated standards are in standardized schema formats. Below are the different formats supported by mkstd, and how to use/validate standards/data independently of mkstd.
XML
The XSD format is used. Search the web for validate xml data against schema.
JSON
The official JSON schema format is used. Search the web for validate json data against schema.
YAML
There is no official YAML schema format, so YAML data is typically validated against JSON schemas. mkstd takes this approach too. Hence, tools that can validate YAML data against a JSON schema can be used, without an mkstd installation.
For example, the pajv tool can be used to validate YAML data against a JSON schema, without mkstd.
pajv validate -s output/mkstd_generated_schema.yaml -d output/data.yaml
By default, mkstd stores the schemas for YAML standards in YAML too.
HDF5
There is currently no standard available for the specification of HDF5 schemas. Hence, the HDF5 files produced by mkstd can only be validated with mkstd.
There is a format for HDF5 that enables interconversion with JSON. This is out-of-scope.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mkstd-0.0.10.tar.gz.
File metadata
- Download URL: mkstd-0.0.10.tar.gz
- Upload date:
- Size: 14.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa13da5f35566ba31645840bef2ac535277d251b051076324a957ca5c7d6e875
|
|
| MD5 |
b4e03d67fa0cc5804a39987f885b201b
|
|
| BLAKE2b-256 |
b9d612d16a553d38d452720e4ab9f6e824c17a48bee989d4d5e127e9fb1994c5
|
File details
Details for the file mkstd-0.0.10-py3-none-any.whl.
File metadata
- Download URL: mkstd-0.0.10-py3-none-any.whl
- Upload date:
- Size: 15.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5e83d9b678891f375da513aea71edfe214840f744da548914bb6f617df6c30d
|
|
| MD5 |
fe1c43e48cb9d872cf7485ee43caf7be
|
|
| BLAKE2b-256 |
5a6ff597e5cc91a3c739fc89fcade480c9a79a685985a75cdb48a1df3c9ab4f1
|