Skip to main content

pyvista-validation

Validate and standardize array-like input.

These are the input validation functions developed for PyVista, extracted into a standalone package so any project can use them. NumPy is the only required dependency: PyVista is not needed, and VTK and SciPy are optional.

The functions are useful when writing Python methods that accept flexible array-like input, wrapping VTK, or anywhere you want one standard representation out of many possible inputs.

Warning — The API of this package is unstable and likely to change between minor versions (for example 0.1.0 to 0.2.0). Pin the exact version you depend on, for example pyvista-validation==0.1.0.

Installation

pip install pyvista-validation

VTK and SciPy are only needed to validate their own object types, so they ship as extras:

pip install pyvista-validation[vtk]    # accept vtkMatrix3x3, vtkMatrix4x4, vtkTransform
pip install pyvista-validation[scipy]  # accept scipy.spatial.transform.Rotation
pip install pyvista-validation[all]    # both

Neither is imported unless you actually pass one of their objects in.

The wheels carry a C extension that runs the checks; the package works the same without it, from the source distribution or with PYVISTA_VALIDATION_ACCELERATE=false in the environment.

Two families of function

A check function:

  • Performs a simple validation on a single input variable.
  • Raises an error if the check fails due to invalid input.
  • Does not modify its input, and returns it unchanged, typed as what the check established, so a check can be used inline.

A validate function:

  • Uses check functions to check the type and/or value of input arguments.
  • Applies optional constraints -- for example input or output must have a specific length, shape, type, data-type, etc.
  • Accepts many different input types or values and standardizes the output as a single representation with known properties.

Usage

validate functions return a standard representation:

>>> import numpy as np
>>> from pyvista_validation import validate_array3
>>> from pyvista_validation import validate_arrayNx3
>>> from pyvista_validation import validate_data_range

>>> validate_array3([1, 2, 3])
array([1, 2, 3])

>>> validate_arrayNx3([[1, 2, 3], [4, 5, 6]])
array([[1, 2, 3],
       [4, 5, 6]])

>>> validate_data_range([0, 1])
(0, 1)

A 3x3 input to validate_transform4x4 is padded into a 4x4 matrix:

>>> from pyvista_validation import validate_transform4x4

>>> validate_transform4x4(np.eye(3))
array([[1., 0., 0., 0.],
       [0., 1., 0., 0.],
       [0., 0., 1., 0.],
       [0., 0., 0., 1.]])

validate_array is the general-purpose entry point that the others build on, and takes the constraints as keyword arguments:

>>> from pyvista_validation import validate_array

>>> validate_array(
...     [1, 2, 3], must_have_shape=(3,), must_be_in_range=[0, 5], dtype_out=float
... )
array([1., 2., 3.])

check functions return their input unchanged and raise on failure:

>>> from pyvista_validation import check_range
>>> from pyvista_validation import check_subdtype

>>> check_range([1, 5], rng=[0, 3])
Traceback (most recent call last):
    ...
ValueError: Array values must all be less than or equal to 3.

>>> check_subdtype(np.array([1.0]), np.integer)
Traceback (most recent call last):
    ...
TypeError: Input has incorrect dtype of 'float64'. The dtype must be a subtype of <class 'numpy.integer'>.

Error messages name the offending value and the constraint it violated:

>>> validate_array3([1, 2])
Traceback (most recent call last):
    ...
ValueError: Array has shape (2,) which is not allowed. Shape must be one of [(3,), (1, 3), (3, 1)].

Pass name= to any function to control how the input is described in that message.

Common use cases

To validate Use
A 3-element vector validate_array3
An Nx3 point or vector array validate_arrayNx3
Point or cell IDs validate_arrayN_unsigned
A transformation matrix validate_transform4x4
A rotation matrix validate_rotation

API reference

validate functions

Function Description
validate_array Check and validate a numeric array meets specific requirements.
validate_array3 Validate a numeric 1D array with 3 elements.
validate_arrayN Validate a numeric 1D array.
validate_arrayN_unsigned Validate a numeric 1D array of non-negative (unsigned) integers.
validate_arrayNx3 Validate an array is numeric and has shape Nx3.
validate_axes Validate 3D axes vectors.
validate_data_range Validate a data range.
validate_dimensionality Validate a dimensionality.
validate_number Validate a real, finite number.
validate_rotation Validate a rotation as a 3x3 matrix.
validate_transform3x3 Validate transform-like input as a 3x3 ndarray.
validate_transform4x4 Validate transform-like input as a 4x4 ndarray.

check functions

Function Description
check_contains Check if an item is in a container.
check_finite Check if an array has finite values, that is, no NaN or Inf values.
check_greater_than Check if an array's elements are all greater than some value.
check_instance Check if an object is an instance of the given type or types.
check_integer Check if an array has integer or integer-like float values.
check_iterable Check if an object is an instance of Iterable.
check_iterable_items Check if an iterable's items all have a specified type.
check_length Check if the length of an array meets specific requirements.
check_less_than Check if an array's elements are all less than some value.
check_ndim Check if an array has the specified number of dimensions.
check_nonnegative Check if an array's elements are all nonnegative.
check_number Check if an object is an instance of Number.
check_range Check if an array's values are all within a specific range.
check_real Check if an array has real numbers (float or integer type).
check_sequence Check if an object is an instance of Sequence.
check_shape Check if an array has the specified shape.
check_sorted Check if an array's values are sorted.
check_string Check if an object is an instance of str.
check_subdtype Check if an input's data-type is a subtype of another data-type or data-types.
check_type Check if an object is one of the given type or types.

Every function has a full docstring with parameters and examples.

Relationship to PyVista

This code began as pyvista.core._validation and keeps its full commit history here. PyVista is a downstream consumer, and CI installs this checkout into PyVista and runs PyVista's own core test suite against it on every change.

One PyVista-specific helper, _validate_color_sequence, was not moved: it is built on pyvista.plotting's Color class and stays with PyVista.

License

MIT

Release files for pyvista-validation 0.2.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pyvista-validation 0.2.2
File Size Uploaded
pyvista_validation-0.2.2.tar.gz 554.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pyvista-validation 0.2.2
File
pyvista_validation-0.2.2-cp310-abi3-win_amd64.whl CPython 3.10 abi3 Windows x86-64 Details
pyvista_validation-0.2.2-cp310-abi3-win32.whl CPython 3.10 abi3 Windows x86-32 Details
pyvista_validation-0.2.2-cp310-abi3-musllinux_1_2_x86_64.whl CPython 3.10 abi3 Linux musl 1.2+ x86-64 Details
pyvista_validation-0.2.2-cp310-abi3-musllinux_1_2_aarch64.whl CPython 3.10 abi3 Linux musl 1.2+ ARM64 Details
pyvista_validation-0.2.2-cp310-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 abi3 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
pyvista_validation-0.2.2-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 abi3 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pyvista_validation-0.2.2-cp310-abi3-macosx_11_0_arm64.whl CPython 3.10 abi3 macOS 11.0+ ARM64 Details
pyvista_validation-0.2.2-cp310-abi3-macosx_10_9_x86_64.whl CPython 3.10 abi3 macOS 10.9+ x86-64 Details

Total release size: 2.0 MB

Release files / pyvista_validation-0.2.2.tar.gz

Download URL pyvista_validation-0.2.2.tar.gz
Size 554.9 kB
Tags Source
SHA-256 checksum
How to use checksums
af234130a3b34b3e1af49584d75b41fafc694752b2958b36e9dbfd9f188e6a0c
BLAKE2b-256 checksum
How to use checksums
b5c5d800d91bae144a71fbae31fcb6b3279c55179acf93639e3443ae87373782
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release files / pyvista_validation-0.2.2-cp310-abi3-win_amd64.whl

Download URL pyvista_validation-0.2.2-cp310-abi3-win_amd64.whl
Size 74.9 kB
Tags CPython 3.10 Windows x86-64 abi3
SHA-256 checksum
How to use checksums
9ee46b4177e6b8fcc5d750d9c471d30fa05f1384668a67cef0b19a700a797659
BLAKE2b-256 checksum
How to use checksums
21fcb98d6dbbd458eeb197b63486c64eb8ed3ef1216d4bf17c353d1153edca97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release files / pyvista_validation-0.2.2-cp310-abi3-win32.whl

Download URL pyvista_validation-0.2.2-cp310-abi3-win32.whl
Size 68.9 kB
Tags CPython 3.10 Windows x86-32 abi3
SHA-256 checksum
How to use checksums
6ba8b5f39a9c4e1f75c4dd9adc037cfeb5a50be9fdb93d787a34e98245bba51a
BLAKE2b-256 checksum
How to use checksums
5b8afe3dd14c804dc8bfade2d247f33fedaa3ebebf916f12cdd002203440b82b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release files / pyvista_validation-0.2.2-cp310-abi3-musllinux_1_2_x86_64.whl

Download URL pyvista_validation-0.2.2-cp310-abi3-musllinux_1_2_x86_64.whl
Size 259.2 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64 abi3
SHA-256 checksum
How to use checksums
672991acf11588de5ce4042cf4f1cc59d0f2b0e84bca792c3358fac6b07e2b38
BLAKE2b-256 checksum
How to use checksums
51c91dd3831f373dfc0b3ba8fe3a8de0b17f4b8610df9f262f6904f20f7d507b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release files / pyvista_validation-0.2.2-cp310-abi3-musllinux_1_2_aarch64.whl

Download URL pyvista_validation-0.2.2-cp310-abi3-musllinux_1_2_aarch64.whl
Size 291.1 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64 abi3
SHA-256 checksum
How to use checksums
aba7a1fc01ba9c762f14d1418329b2a462c881aa7a42b65b2088b6ab9fe8e530
BLAKE2b-256 checksum
How to use checksums
81b8c6d1c79a293a7c6927995ed77af01a1c77d16ad1b71bfbfd47922104ec6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release files / pyvista_validation-0.2.2-cp310-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pyvista_validation-0.2.2-cp310-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 261.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 abi3
SHA-256 checksum
How to use checksums
a45b633b89d843329db1608ba2bbed75d075ab63c5a7427c8dfa9ad9c23eadb4
BLAKE2b-256 checksum
How to use checksums
75e724d49960620aa770fc1fb527a019ec5a860e27c73bcd69c4bdfcc510c7a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release files / pyvista_validation-0.2.2-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pyvista_validation-0.2.2-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 293.4 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 abi3
SHA-256 checksum
How to use checksums
1be12fb7dbc05035a58a3245a0fac018a6be41837be9ec90a0796db700bd7dfa
BLAKE2b-256 checksum
How to use checksums
9e3884e7eba0dace65cc68edb0e2c18f7bd8363cf9de449290dc6e4420eebf22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release files / pyvista_validation-0.2.2-cp310-abi3-macosx_11_0_arm64.whl

Download URL pyvista_validation-0.2.2-cp310-abi3-macosx_11_0_arm64.whl
Size 87.9 kB
Tags CPython 3.10 abi3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8b7156dec1699d65501df65578d759dbab6ddfccd803213fc837fff0c2e41a92
BLAKE2b-256 checksum
How to use checksums
17a0a71388af7e416ff100b3e6498e71b9c6d8f0b1f0576536e8ea27158bffc9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release files / pyvista_validation-0.2.2-cp310-abi3-macosx_10_9_x86_64.whl

Download URL pyvista_validation-0.2.2-cp310-abi3-macosx_10_9_x86_64.whl
Size 83.8 kB
Tags CPython 3.10 abi3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4ae9af24e888e4ffc941fc01529cc3a4668bd0de7066f98e41aa1d02a5e23d58
BLAKE2b-256 checksum
How to use checksums
4c9f6371ab13987d3655f11e1feef0fd3f8729dd3c1322a814e40e81e4a03d76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release history Release notifications | RSS feed

0.3.0

9 release files

0.2.3

9 release files

This release

0.2.2 This release

9 release files

0.2.1

9 release files

0.2.0

9 release files

0.1.1

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page