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.0.tar.gz (356.1 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.0-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.0-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.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

trexio-2.6.0-cp313-cp313-macosx_10_13_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

trexio-2.6.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

trexio-2.6.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

trexio-2.6.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

trexio-2.6.0-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.0-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.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

trexio-2.6.0-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.0-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.0-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.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

trexio-2.6.0-cp38-cp38-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

trexio-2.6.0-cp38-cp38-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for trexio-2.6.0.tar.gz
Algorithm Hash digest
SHA256 5dd57c28ac90bdd2bbb35337e8778a33948e449b18c948979b9247f31454ee85
MD5 64080dde3e3a134dca43127539ddd643
BLAKE2b-256 19e36f7b38195952a930af30ffe404f8e3f4e910bc351ddb741b469805fb91f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0.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.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5261e61e786c9a41769b51fd89243a55f9a95f0bcc72edb4ced70353a48857c4
MD5 29909d9672bf742104f576e66a92a948
BLAKE2b-256 519acef491c0801c8618baeacd953c3c7e37c98849b41f40a83b3aa22f9d2b79

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd21aa969f8b656020440e1f23fe962423fb4b4f8122584b36485daca39d9fa1
MD5 0713643456fd728c8f8fe0f76a7d557d
BLAKE2b-256 55a08536f53fba22ac5cee2d0dea00c6c7ca72a0782429605b27e0149e5aa5e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e0c31eb081bcb712abd66d0b0b49e6ee4aae10b95cb719c0fddc79bc100017ea
MD5 ca6dd91e0e6903da216d3a5cf528f561
BLAKE2b-256 51e188e81acda91f0cbcd3e15e0e3c8dc8183365ee64d575d602f749eaecb02b

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3c3b99d1781d6c8aadb7e0590dabdd9b73c8ec9b8f1e58a77341efc3ef1759b5
MD5 8117758f9f3c752d84042948e031d27c
BLAKE2b-256 552ddf942ed10057bd3247d56ec2bf22a0362642cdbe66c70aa5092c15b6a3e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a6a9d5a84c5b5ff91109c7cc399ca660b7b7f95a008807c98436e5ea170b1f6
MD5 85ea9fce39f8c6844e80454098e6c8a7
BLAKE2b-256 71a64af503a93aaea7db16b5f66840fb831052d027c49ddb3faa1cd343f369bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1b1af0ce233a7f6434844b3640f89db6594e123253a6baf83bedb3f5adb0c172
MD5 3930479d91e7a4f4aa58616f6bef550d
BLAKE2b-256 63c09fcd8f61b06a90a292f9c0d6533e981da2e99176f8726d1dcf4606a39df7

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e32ed0a8427ba1d4ae2561dd89e14c9853324d370f948ff1d01d9aea937b02b6
MD5 ea7b57d5254fba1635675539694a6a46
BLAKE2b-256 abe676a9a09ee9584d531824c47772cb6a967202a550b32e76cb7176fd97678c

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d373f7fed42d313fdf7545c9ac8f43a4c8ed4874776af3c81c17facf40f1d82d
MD5 eb2c5ce35bd5ff46c475e24539623731
BLAKE2b-256 df9b5719f163a2961968c24a8f26faee9708241f8e122c073a35ba87c53790d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d423f36b731a278f1f8b30cdb79ee6a2a8044e97dfe844e650f20ee2282de663
MD5 8c18a9d46dad12ab53869e83a4b87f7e
BLAKE2b-256 660673f3df254f3831276b5c4b5b019ca3c61c0724bdea382a8539164dda9a23

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f566ab4b88d09a71b5d2fba645ed88221e9b5876882792249e589787a13d256b
MD5 a86057352f43b3e69e118d5c8669d5a8
BLAKE2b-256 9ba060ccb4023be66c403bb5cebfba2d0fb4d5315501b025da36927db03f7a13

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dccc65646070679672314223d9e8efd6e9b6f9b7609b65aed1f54abe651ef96
MD5 e48dd0f3e45a6d0c2e95b7cf45ff8fa0
BLAKE2b-256 d910f579412785891bda82bfbc1c2500804d15fb372549c776936fc26f5aea9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e804a7141dc09e502f73f217f6b2afa20f1b5ec95b1940ccd96dd3ca5703d386
MD5 d6422a2862122aaac637ecef5f131cfc
BLAKE2b-256 8508e35e03f3e517eef583c8d717987914721368ceadcf4c9b95da82e3c6df1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 564be57426d9921d28501fe425fd58c8f94bf58273c3b6d53252f4dbe99ef45e
MD5 ab7be98ef02e066601b8fc6af47c1704
BLAKE2b-256 e1c08ae37062c6065058c26da2f80fd76386121b7a919deb148392c12584e5b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b696b4cbbd62673b65ba54cc84e4b82bcfb45675f2f838f9dadf035f447cdc95
MD5 de467d25367a01f479460c5b7d3f7712
BLAKE2b-256 e0d74f91d0fc144738a5a5b81cf9d5cd72b9be58df354c03799bf8c554ac5504

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c85277f88db8c729ed62eaead132dc645cc9aa38f0b32951ff338d3d1a56ccfe
MD5 7a215ff176db7e09d0d8b542ec541130
BLAKE2b-256 37bf05a1403d50884535c203fc37381cc345c9e87e51840ec02cc5301827f337

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 75f066ac5af5fef0e299ed7c0cdade64f12ed89b531073fe152a6a353dc80513
MD5 823b35e9595e615475d5a44cc5de3f37
BLAKE2b-256 024833e7aae18ab498ad58837e6794b9ff839d57ad5507fee7c1bfbcccde9335

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09e101f3d365ea3fcb505789f9540c083adc39a06cc428b29d9865032e4b4a29
MD5 f865223e3ce47e6ac730fcdd86950a76
BLAKE2b-256 e12e084b0fa211228c9f8bf7f19eec7dd0a28c64894114072e86c44941931680

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 deb72a2223a7189d4f5541c3e8ebc04956024d886bc0ebf55e634349ee2cb91a
MD5 db91478569b8681c365158f17d6812b8
BLAKE2b-256 0ba27c7ebd99876e411df9935b9e896092e57653a8f93b5665339d3c8860a8ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca737dc30026e9ce044685f0f17e42353d2287486f3c6dcd5faf92904dacbb32
MD5 6a6ff8c2990fea4d7a33d93f7c09197b
BLAKE2b-256 36c0bf832be89b1f39ffaea4859687bc413dd23c0d6f17311d0db766a08674ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17b1e07aa656c2ddf272d74db96b98893629111b081d76fc4002cbc27b2852fb
MD5 acfc83f4cc3495b76ad48411de2e6913
BLAKE2b-256 ad6b0beecffa6788307ab6dd949333758ea0fe7722f394888350a3638b9c8944

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 732e76b2dce21ed8aa9064bd32b1503438e977d942bf29f4ff4a0c8ca4d22b72
MD5 599df12ef220e6cba90e9778da37607d
BLAKE2b-256 a57f1e553a63c2c3401bdf9a2fea5e39f474dae08a94b9b3a9c70dae1eb18f39

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e1040662a4d4674b3b0b1718efa0fb7ab530ed1167349b607b8415fb5162f01c
MD5 9d24efbadb71ce1f8edb1adcca7d8373
BLAKE2b-256 ada601ca5d0be3647977b1016bf6f46a0811ab2b14cf61b299c510a6eec7de7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 477adc94d5daddfd95183bce56def84cec54a3c939f8b1a7910540188c76a0c7
MD5 cabfa4f63e558f9d59ef9cfaeb994308
BLAKE2b-256 b0578a929bbb2f1a7807bf524773b227b118cd454db0b6529cbaa676b5aa9710

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fdaedce5e562eded9c40a23827658f02bf1459e1c2dbf14078241e776eb629e7
MD5 5d0bf601295e3a67b63fdae996816ce5
BLAKE2b-256 f72ff8668e4126470442b0d587a6cc2321e8bd01eba3a3466b5316906d62becf

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 424127457f1b668d29011d52fca62da16781db9a8295f4d624ce2e684ab0d019
MD5 cb748016e618d36065b5186dfa30d929
BLAKE2b-256 380e552cd06b1eba12b608f43a5977e1f57d16a927fcc6306d6c3c1451084a3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c191706aaf7ca11edf23a5d694bea7f6f4735684a4142bf96fefea8a6dba631a
MD5 575d44f5fb5959245a560f55c19593fe
BLAKE2b-256 879039c310e830e9a421817d474bfacc0c62578abb187d614634a7c1a60f28c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1fd109eb4885f0750a7d447b3a4835de4b269a81b6ebefafc1997c8e2fd6f26a
MD5 ca90bfc6319493e67eef230450bc1571
BLAKE2b-256 3b699d4a415389042d01a6b72c121aca33f83a3aa8e4d3a8a1c2e1422bc7990d

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3d98325442ecf29bb8ddc48f2aff6d91290065ab806be902aba1bffa3ac7f8ad
MD5 c4a962495ee32bd5d6385ca9f133d02a
BLAKE2b-256 cb51e5b2bd026415a9e23e79889738954e1275c5534f74961056fe675e97bb47

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc7117b6900de3e964ca0e48d335e4e7275b2ca736d25de23b3ec1759f91009a
MD5 58b42376c6e2748c35473eb8beb1fd31
BLAKE2b-256 301579c65ad72242272ba13891060a7857b27f79fd252f221858fcd5857602c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4f6713eb8ae39273485b77f6b5eadad08b80cbcc9c12c8ab3ea24a2a8a382e2d
MD5 e6ab1e65276d0a29548e4a0aaf8ffb36
BLAKE2b-256 fe7281c3332a4ff73e51066a7536f66f482b879816b20f34578190ca875a66ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 260a3c953579b53b66fb2cde7298cfeee5fb4455f99d84c7ac41446a29e4fd41
MD5 4e6c142d3531ed4e13ade6473500c70e
BLAKE2b-256 8c85d82ed92aeaeb3cd0ccff7a52c65619a457fd3e4868a50e052868322ce7b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c89421acc02c43aad4dd146ef874642961517cc44e4b737a2d2af32ffab01bf
MD5 8991a40ad9cad3a7178478d9b86919cc
BLAKE2b-256 744c8033522b80275498473da2e15530746a452cdba66e6d0e51e2b65df9f0f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 62a2aabe4d25b9fc83811359dabbaac9fa89b724e5cb1055c2f654c9b9e31f45
MD5 494bcd55207eddf01775fb664cc3007d
BLAKE2b-256 104f5c3892329414d0fe75d014e81f5ea13f4338353dcb2f6b1a95a7fafdb4dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2fed401d17fd97a447b9a048a3df824a13ed8740101039fa3242e4625273ff5d
MD5 b757d6c1941fc56cb9c964e5944ca002
BLAKE2b-256 37cca7a2275adeace754a019046b3dfd89e0f1ce23b0d0b35b298b2257222c70

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-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.

File details

Details for the file trexio-2.6.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a3c4bf43a6c17ea804d4bdb6e870aefaa3845535f4d41b7d6ccf38827ed39cb
MD5 a0fe5c7e0f77b62b3bf70b6cb475375c
BLAKE2b-256 50888c2d58f34b485438310d33d6d09191185fe5692cea74ea08086b9dc56596

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-cp38-cp38-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.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for trexio-2.6.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fbbe8329f58195753e36a6a169192035be81088e67cc2c138bcc37ba5b13557c
MD5 2766cd8293ddff8b9dc6e54d3f70f31f
BLAKE2b-256 2597151e37c0b72c83e0de9336d0fa0feded616d513efd19bf5501f245d0df4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for trexio-2.6.0-cp38-cp38-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.

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