Skip to main content

Python API of the TREXIO library

Project description

TREXIO Python API

PyPI version Binder

TREXIO provides a Python API, which enables interactive calls to the library. It facilitates the development of interfaces between different codes and can be used to convert data from one input/output file format into another.

Requirements

  • python3 (>= 3.8)
  • numpy (>= 1.17.3)

Installation from PyPI

In short, you can run the following command:

pip install trexio

However, it is good practice to first check for updates of the build-system packages. This can be achieved by running

python -m pip install --upgrade pip setuptools build wheel

Note: we highly recommend to use virtual environments to avoid compatibility issues and to improve reproducibility. For more details, see the corresponding part of the Python documentation.

Additional requirements (for installation from source)

  • C compiler (gcc/icc/clang)
  • HDF5 library (>= 1.8)
  • pkgconfig (Python package)
  • build (Python package)
  • pytest (Python package)

Installation from source

  1. Download the trexio-<version>.tar.gz file with the latest Python API
  2. gzip -cd trexio-<version>.tar.gz | tar xvf -
  3. cd trexio-<version>
  4. pip install -r requirements.txt (this installs all required python dependencies)
  5. Export custom environment variables needed for the installation following the procedure below and replacing /path/to/hdf5/ with your paths. The following two steps can be skipped if HDF5 is properly configured for pkg-config (i.e. if executing pkg-config --libs hdf5 returns a list of options).
    • export H5_CFLAGS=-I/path/to/hdf5/include
    • export H5_LDFLAGS=-L/path/to/hdf5/lib On MacOS where HDF5 is installed with homebrew (i.e. brew install hdf5), one can use the following:
    • export H5_CFLAGS="-I$(brew --prefix hdf5)/include"
    • export H5_LDFLAGS="-L$(brew --prefix hdf5)/lib"
  6. pip install . (this installs trexio in your environment)
  7. cd test && python -m pytest -v test_api.py (this executes several tests that verify the installation)

You are ready to go!

Note: installation based on pip compiles its own C extension (shared library) called pytrexio. This extension is built from the TREXIO source files coupled to the wrapper code generated by SWIG. The compiler options during this installation may differ from the ones used to compile the primary TREXIO API in C. Furthermore, custom compiler flags provided to ./configure or make are not applied to the Python API.

Examples

An interactive Jupyter notebook called tutorial_benzene.ipynb is provided in the examples directory. The notebook can be lauched either locally (see next section for details) or using pre-built environment on Binder.

Jupyter can be installed using pip install jupyter. If you are not familiar with it, feel free to consult the Jupyter documentation.

Running the notebook

The example notebook can be launched using the following command:

jupyter notebook tutorial_benzene.ipynb

Additional steps needed to run a custom virtual environment in Jupyter notebooks

In some cases, it may happen that the Jupyter kernels in the activated virtual environment (e.g. myvenv) still point to the system-wide python binaries and not to the environment ones. This will result in ImportError when importing trexio in the notebook cell. In order to avoid this, the myvenv has to be installed as an additional kernel. This requires ipykernel python package, which usually comes together with the Jupyter installation. If this is not the case, run pip install ipykernel. You can install myvenv as a kernel by executing the following command:

python3 -m ipykernel install --user --name=myvenv

Now you can launch a Jupyter notebook. Once it is open, make sure that your virtual environment is selected as the current kernel. If this is not the case, try this:

  1. Press the Kernel button in the navigation panel
  2. In the output list of options select Change kernel
  3. Find the name of your virtual environment (e.g. myvenv) in the list and select it

That's it, you have activated the custom virtual environment called myvenv in your notebook.

To uninstall the kernel named myvenv, execute the following command:

jupyter kernelspec uninstall myvenv

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

trexio-2.6.1.tar.gz (356.3 kB view details)

Uploaded Source

Built Distributions

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

trexio-2.6.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

trexio-2.6.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

trexio-2.6.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

trexio-2.6.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

trexio-2.6.1-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

trexio-2.6.1-cp313-cp313-macosx_10_13_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

trexio-2.6.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

trexio-2.6.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

trexio-2.6.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

trexio-2.6.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

trexio-2.6.1-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

trexio-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

trexio-2.6.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

trexio-2.6.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

trexio-2.6.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

trexio-2.6.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

trexio-2.6.1-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

trexio-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

trexio-2.6.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

trexio-2.6.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

trexio-2.6.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

trexio-2.6.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

trexio-2.6.1-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

trexio-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

trexio-2.6.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

trexio-2.6.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

trexio-2.6.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

trexio-2.6.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

trexio-2.6.1-cp39-cp39-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

trexio-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

trexio-2.6.1-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

trexio-2.6.1-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

trexio-2.6.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

trexio-2.6.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file trexio-2.6.1.tar.gz.

File metadata

  • Download URL: trexio-2.6.1.tar.gz
  • Upload date:
  • Size: 356.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for trexio-2.6.1.tar.gz
Algorithm Hash digest
SHA256 2e2e1d37fb1c2f371cfa32d07434d1d703e7500eaf7590b01fe9ba5169829447
MD5 6e721a73ff7722cd67705ce33685937e
BLAKE2b-256 65e19deb3a2f66d322e0ff3c850463798c5c9197d37a2914e612701b40d7b030

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1.tar.gz:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb9438bd762577b8828a206b67d95bd3dca6f886419bcf0da6fb6e50e1219371
MD5 2bd9948ac3b78727b82d570e4bd3e73d
BLAKE2b-256 efd1c64b14069872e82f789a5ee51d95e7fa8d5af684347c65a9837707280105

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8efb53c6c0d7ca46a88ec06af6e43a66c9261205053ea08651d2221f5632af04
MD5 7115a43c71b58a5362f570e92387a349
BLAKE2b-256 fb1492841adc4ba601094e8777ff5d8eca21cad7c53f9afc670156fe2a04e053

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9f2f1df4e029b486f059e785585543a97fec5ada65aa6079b4b0a1b0851e689e
MD5 36ad36452bb95159395e48659e70a76e
BLAKE2b-256 508ffb4cab5ad9e47fe4bb0d7816cbc48536bbdf586b9b5fb176b6aa7e9e7bff

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9a96740ae5c2f8c019fdb03bd749437b3f17a9fea67ec2ab07c66955ae5d51c1
MD5 9ce64e27b5cead438d6b60ca513752e1
BLAKE2b-256 9a53fc579d9250cb7f3b9004338dff5a8e489f8b2c7b8b23025277a0a056e39e

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0c4fe9769bff7e6cd11cdd458e6d34e3c9b5cd3616be983b47f6280794cf695
MD5 7affe81d644cd7497a4e4afffb30266f
BLAKE2b-256 670ecf4948469eefdbee8327e547a5c6e8e455182d4fe886013821c17b010c7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 95cce1278dd701b69cbb8beca09fc18f78ff78b0a7df396b7926a322971ef1c7
MD5 b2838138184f211e9901e887034c0491
BLAKE2b-256 18783b9b69920397a283be07e36e0bd7d8d5165bc0d1e5b9ea16baa3b12920de

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b5cb959c6b9aaa08f445073290f985152e3c4916b6aea1bbe619178892d7c56
MD5 92caa9902243d18fd70ac3431bfa453b
BLAKE2b-256 5f0b5f43ecea4a9431819b50f5ea1fe40669e07a2ad22e2c5df8226e0aa0c6ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16f20d0b973689c2cd13fa08ec6153d35315814e7454a5bb08597b3eb13f44f8
MD5 cdc956b1aa87ef88ad90102483c7aa38
BLAKE2b-256 0f4873c7b6e052b43f1960e614ff22e66a2313f2c4abc008fe0f2568a52af1f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 36b3d1b75e632846bd5d9e757fa5f5cd6ade51f32f8110e6ac2947bffea5335f
MD5 bc7a63b0f70a221ce7f626eaaec87415
BLAKE2b-256 54b70c062691e8b17c0e7c53b6e1bb9b1f5f0c0279bf91012f163e4f8dadaff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 10d1bbe11f31cd77f9d7e2f669dc66637b54dd98ff412837be4d60dd363779bc
MD5 c4ebaccfe77d4a4cfb51642381505ac4
BLAKE2b-256 3983ddc095c82594f9d31b8fee5f4e221abc306757195a2cc313c2a3ab49d8b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 168557ea9612c7804ed4a2aca66e331e5054ae14bef0f2a9108cd734e0150d4e
MD5 bb85a8e4845ee15a10095c1f4e516abb
BLAKE2b-256 10e89e23953864c12c04429c3eda1357939566a1ba11be67de91e96867f826e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66184e724ebb37b462c6ee5685e1b7430e33182054c7c863fc21e0bfdd48051d
MD5 9d54a1ce2cf88702b7d9520b844e3251
BLAKE2b-256 66b73950e5daeff5d11cbbed08a6e755994b0ef154de79556b387f1e6dcaef91

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d82d4c44764a4e7a699a52ba50350a1dcd7ba891176bc3704992770fa1134b8
MD5 087333569b3e89018b86a60e41ab8df4
BLAKE2b-256 b1c09799e7d05de4836166b947c3eb10291febd0e03ffb51610b6c5d542953da

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5fd695d3a8415e683c214208c110d2766256e286a490dcc234faef1e2024abfc
MD5 651e69d62fa635bfa344ef27b799d875
BLAKE2b-256 a351e8a8b7132884b70cb1a4445442351dd70a2a76ffb2862b44780e328577fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f479b7df4057097c81ba2ff11b5af0589a840cb574b8fa8788a20c708c0be13d
MD5 6e42091e96fbd1e3bcec86725d270841
BLAKE2b-256 da9f52018e8cff77ed865603d08d0a7c38db4dcefd42572615b2bf53decb1cf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6c7cd6e69007ac86bd25ef7dbc39dbc768a48719ba9570b5ae20827b4c73d2bf
MD5 f1801ea1a2379762cf1df69650a1cf69
BLAKE2b-256 c3ca2af2670cbc7286b83551e5fe088af7adb9b57bc6eb8878a2cbc2c93aaf6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc8d754b04931fc2ace88a944b23e7234e7c875266a795d04b5c8add6bfaa52d
MD5 c54b9e30c284d0cfe7fd39a5be2fad5f
BLAKE2b-256 a0f38ad294e40c12727ac6c7efeff17364c003ffd570d4a6816babb11e8e23ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c1b0264724f998f56852a320bb69ce1ba475afa9ff8296374b5dc1327d41819
MD5 6a286585e761e5179c4a1f292b40c034
BLAKE2b-256 cb41417151aedc6cb586813788e232e56debe349508d0545211e0dbf24ac2f8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04cbf00ac46c3b3f4dafca2767ee2edcc738c8cebde5d0c0052d177bd028af96
MD5 07c9f241c03b2c95058bc6732fa9850a
BLAKE2b-256 685c009243e7d8f9454931b41830f0ee86e55df19c83aa848ac07e812df99ea5

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad7b3d47d5e3fccca2d42700d73775b0dacb6bb0e45fe501ec797225d4b7fd17
MD5 7aea9d28ab3924ae6d5298cf8091ebb5
BLAKE2b-256 b4f85103f68173e42f08a1c81f21416689b5eba703e97b4a86d5fd28e76f18e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1ae768d01fc501383188ff84fab9cf02bd6205e2ec21dc2c83e7f6fa062030cd
MD5 38f43c8df494eda44dedf491256bcbe8
BLAKE2b-256 bcc3bb6cc48f51aa29701ac6461bf8e376c44865978546ba2735b216c68bf7ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5152e3c658a4f8eb680974d210d3758a27529ea51b051b49600da619ca54a7ae
MD5 94db2734c6d2884528d0a0f2eaa8f1c3
BLAKE2b-256 b1fc8bb81df0a8099dc10e34433e0f01ca62dae1c1fc2108360bf46fbaa7c4b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba2d3f690a55da65b2ba00ef97df220f10bc677ca4d4fc9922ded8d0c3e0e12b
MD5 302ede02b36a310ccdb54a5836ba57e9
BLAKE2b-256 d3a3ea9f233ccdac13045db2360207a3fd39c46f4d79b27c7f43dc6bb8d216f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d18afd7bfb85201b60c6391b6fcafea70839904e37dd524ff1f6b40e78a088aa
MD5 93c6ca41129fe007e30f5a65735b15ca
BLAKE2b-256 2d01309dcd0f20859ad540a5a121a1b2bbb9f89b2f0bffa9a181b4132dd9880c

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32901c17efe080347ae44a072bf9bdc5c664c699cb99a2be0d0e0f9cdeb88ba1
MD5 81f938ec055e3444bfebedccceef409f
BLAKE2b-256 846c1cd5a359faee08f5585e6ba972ce7b7da9aed86afdf39951f3ec2249c4ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8098bf2d91ac5663fb8d28c08ad2b36ca5465515bec7553366f28ff0103d04f5
MD5 58cdea0253ea613aa8152a2308734044
BLAKE2b-256 50799881fc6500b367b8270934994806c8fbcbbc265ee5ad1a3cf226f3953107

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8d4c3f7e70021f300cc6a741589a33554ae57b0fb2512b3af3cd814054e3b9e1
MD5 203615301bc1308dc3df06fdc18900e0
BLAKE2b-256 dc7c4fb43ea79a6c9baa5fcfc6afac2f6f1aa7c5976ea61915089aac221d11da

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 28f7ec3b9a5bc759c10dc509ded4fa0ac86cab207a9ae26834f8b13889ba75cf
MD5 50982a125d8e6ab3e0332fe3dcad0f8d
BLAKE2b-256 cef6feff4137d5bc923148a4e03963d75c437a0a030878c05edb5f2bd17f7583

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 961b962ed5deb6adade4dd14453421cebe2de090bdf40e8a2f4552fa4189906e
MD5 14a24b5884a338f9f485c03ee468a001
BLAKE2b-256 93194877327e3e6b8202ff5b68ca0c402bb5d4a600953bce212692cf711c8a1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d532d0bae5e90f044b3df1b9c2965588e5f8ddeb6397adf71f93d84ae4ca1b97
MD5 f9d373734f3c86ecb4f31095e15b9d71
BLAKE2b-256 9e4d1b102014e2a35d6642c53a716026a92948122938ffc3f334c3ac0a10afe7

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cef8aa63b279178fd3500a30c91c0b16748d4a4a79e2acbbef9db5fec99b3bc3
MD5 4c639b9eafaf7162e26325c3bd248ff9
BLAKE2b-256 dde368da5b130cb69d999f536cd8fc95805d7e0f89d73bb477ada140cfaa9ef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3156ab442f42cfab8f8ea4a03182519ac0664c8a13b5f5c2c0fb08996e2114b5
MD5 cdcabe21317a98c44ca3b7b4988b0b45
BLAKE2b-256 69462e9037c46b89a9f90a459d399d7011f557f2d3573c950c4607f2bf05a5f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7c9a77b4f20f7cee07afc7e49834e0e9730b924599e28c6475f314525c734850
MD5 88c2754436aa2754de18492a6398eef3
BLAKE2b-256 9f0e571bcfa22f9c7409d10b43712a1fabedde45888e4b162d5ada31bb0407ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trexio-2.6.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 260283615c3b3835164491727afdeae0608dbd2985bf4a858fa08b2979e6b39e
MD5 91aafd4eabdcec2a61daf5f1b666f5de
BLAKE2b-256 ce2132a9ce58300af1958ebe051fdcc4f49ae051af63ad46605f34108e236087

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: build-wheels.yml on TREX-CoE/trexio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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