Skip to main content

Light-weight tight-binding framework

Project description

This directory contains the Python API of the tblite project.

This interface provides access to the C-API of tblite via the CFFI module. The low-level CFFI interface is available in the tblite.library module and only required for implementing other interfaces. A more pythonic interface is provided in the tblite.interface module which can be used to build more specific interfaces.

from tblite.interface import Calculator
import numpy as np
numbers = np.array([1, 1, 6, 5, 1, 15, 8, 17, 13, 15, 5, 1, 9, 15, 1, 15])
positions = np.array([  # Coordinates in Bohr
    [+2.79274810283778, +3.82998228828316, -2.79287054959216],
    [-1.43447454186833, +0.43418729987882, +5.53854345129809],
    [-3.26268343665218, -2.50644032426151, -1.56631149351046],
    [+2.14548759959147, -0.88798018953965, -2.24592534506187],
    [-4.30233097423181, -3.93631518670031, -0.48930754109119],
    [+0.06107643564880, -3.82467931731366, -2.22333344469482],
    [+0.41168550401858, +0.58105573172764, +5.56854609916143],
    [+4.41363836635653, +3.92515871809283, +2.57961724984000],
    [+1.33707758998700, +1.40194471661647, +1.97530004949523],
    [+3.08342709834868, +1.72520024666801, -4.42666116106828],
    [-3.02346932078505, +0.04438199934191, -0.27636197425010],
    [+1.11508390868455, -0.97617412809198, +6.25462847718180],
    [+0.61938955433011, +2.17903547389232, -6.21279842416963],
    [-2.67491681346835, +3.00175899761859, +1.05038813614845],
    [-4.13181080289514, -2.34226739863660, -3.44356159392859],
    [+2.85007173009739, -2.64884892757600, +0.71010806424206],
])
calc = Calculator("GFN2-xTB", numbers, positions)
res = calc.singlepoint()
print(res.get("energy"))  # Results in atomic units
# => -31.716159156026254

Building the extension module

The Python bindings can be built against an existing installation of tblite or free-standing. The free-standing implementation will select a matching version of the shared library, when building against an existing tblite library the API version of the two parts must match.

Setuptools build

This project support installation with pip as an easy way to build the Python API.

  • C compiler to build the C-API and compile the extension module (the compiler name should be exported in the CC environment variable)

  • Python 3.6 or newer

  • The following Python packages are required additionally

Ensure that you can find tblite via

pkg-config --modversion tblite

Adjust the PKG_CONFIG_PATH environment variable to include the correct directories to find the installation if necessary. Alternatively, you can set the TBLITE_PREFIX environment variable to point to the installation of the library.

Make sure to have your C compiler set to the CC environment variable

export CC=gcc

Install the project with pip

pip install .

Using meson

This directory contains a separate meson build file to allow the out-of-tree build of the CFFI extension module. The out-of-tree build requires

  • C compiler to build the C-API and compile the extension module

  • meson version 0.57.2 or newer

  • a build-system backend, i.e. ninja version 1.7 or newer

  • Python 3.6 or newer with the CFFI package installed

To make a free-standing build you can provide the main repository as subproject to the Python bindings without having to build the shared library first. This can be done for example by symlinking the main repository to the subprojects directory.

mkdir subprojects
ln -s $(realpath ..) subprojects/tblite

Note that this step is not needed if you built against an existing tblite installation.

Setup a build with

meson setup _build -Dpython_version=$(which python3) --prefix=/path/to/install

The Python version can be used to select a different Python version, it defaults to 'python3'. Python 2 is not supported with this project, the Python version key is meant to select between several local Python 3 versions.

Compile the project with

meson compile -C _build

The extension module is now available in _build/tblite/_libtblite.*.so. You can install as usual with

meson install -C _build

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

tblite-0.6.0.tar.gz (3.0 MB view details)

Uploaded Source

Built Distributions

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

tblite-0.6.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tblite-0.6.0-pp311-pypy311_pp73-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded PyPymacOS 15.0+ x86-64

tblite-0.6.0-pp311-pypy311_pp73-macosx_15_0_arm64.whl (11.7 MB view details)

Uploaded PyPymacOS 15.0+ ARM64

tblite-0.6.0-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tblite-0.6.0-pp310-pypy310_pp73-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded PyPymacOS 15.0+ x86-64

tblite-0.6.0-pp310-pypy310_pp73-macosx_15_0_arm64.whl (11.7 MB view details)

Uploaded PyPymacOS 15.0+ ARM64

tblite-0.6.0-pp39-pypy39_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tblite-0.6.0-pp39-pypy39_pp73-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded PyPymacOS 15.0+ x86-64

tblite-0.6.0-pp39-pypy39_pp73-macosx_15_0_arm64.whl (11.7 MB view details)

Uploaded PyPymacOS 15.0+ ARM64

tblite-0.6.0-pp38-pypy38_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tblite-0.6.0-pp38-pypy38_pp73-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded PyPymacOS 15.0+ x86-64

tblite-0.6.0-pp38-pypy38_pp73-macosx_15_0_arm64.whl (11.7 MB view details)

Uploaded PyPymacOS 15.0+ ARM64

tblite-0.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tblite-0.6.0-cp314-cp314t-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

tblite-0.6.0-cp314-cp314t-macosx_15_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

tblite-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

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

tblite-0.6.0-cp314-cp314-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

tblite-0.6.0-cp314-cp314-macosx_15_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

tblite-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

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

tblite-0.6.0-cp313-cp313-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

tblite-0.6.0-cp313-cp313-macosx_15_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

tblite-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

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

tblite-0.6.0-cp312-cp312-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

tblite-0.6.0-cp312-cp312-macosx_15_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

tblite-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

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

tblite-0.6.0-cp311-cp311-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

tblite-0.6.0-cp311-cp311-macosx_15_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

tblite-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

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

tblite-0.6.0-cp310-cp310-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

tblite-0.6.0-cp310-cp310-macosx_15_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

tblite-0.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

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

tblite-0.6.0-cp39-cp39-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

tblite-0.6.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

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

tblite-0.6.0-cp38-cp38-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

File details

Details for the file tblite-0.6.0.tar.gz.

File metadata

  • Download URL: tblite-0.6.0.tar.gz
  • Upload date:
  • Size: 3.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tblite-0.6.0.tar.gz
Algorithm Hash digest
SHA256 339e6d233ea3b913f1485264408b2b30a1b4355cdcf1bc2a86c70bef44ca0a65
MD5 f039982a45231522043dd60ec3663c2c
BLAKE2b-256 b7c253b25049bc3f10c91fe2f5f0ccfa711a0357c14fc57d015efa57761b4a45

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0.tar.gz:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8945266e8a8dc1813c6818d45553b1da59d108d597eab8d9f53d5637fd02cd6e
MD5 0d6f1025b23f5bbeac410fc10f4e95da
BLAKE2b-256 f17e72e026e2e4adec4790a016a72aac73677c61535d4b8021a98e17987912ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-pp311-pypy311_pp73-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-pp311-pypy311_pp73-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3f0c61fb7f1449a6030a3f044f6437c459f9d57c5b3d50d53625dcb99fe4634c
MD5 d16d2054f15a110fbeb255fbf9715e38
BLAKE2b-256 695222d6276044c79a92a8b2f2f517a4a9c8e4df189636003650d7dc69efed3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-pp311-pypy311_pp73-macosx_15_0_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-pp311-pypy311_pp73-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-pp311-pypy311_pp73-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4dfcdde59a6080b067001ec6c9b3ae68705ffab9d5546f59fecf17544afe4d40
MD5 8ffc6c19b29176b47279236571255e19
BLAKE2b-256 dc32921bcad1c30839b86f084b0dbe2e257dcdc6547a4472290e5d5f940b7ddc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-pp311-pypy311_pp73-macosx_15_0_arm64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1192374758274429934d2e2b6d86434d506ebc2d676ec911ab5dc98692080dc
MD5 f290ca587a5f73a12e4694bdabbdaf78
BLAKE2b-256 0652482723e92b500c73ad494afbfaef7ecbbf7ebb9126a9f7a4889e898648d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-pp310-pypy310_pp73-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-pp310-pypy310_pp73-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1570ee3ca5b048cfeb0a7015bae44ea96d9aaf3f0310172d5d4982201d6f4955
MD5 3c10a2bc954048fa5ca30110c7e7905f
BLAKE2b-256 7d87f8d968cd02c270248d6ca365ade8194aec1798b48ee94eee68163f0803dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-pp310-pypy310_pp73-macosx_15_0_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-pp310-pypy310_pp73-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-pp310-pypy310_pp73-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 408a0ef8a667d7c399df36bf0552e89149b60cab7fa1a9dcd1a87dd9d39e0e4b
MD5 0a182ac350fc1e373e6c1addbf8be016
BLAKE2b-256 fe8d2320422660cdabe9704a3561ad4d24a57e4692a639f4de56c30a556df745

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-pp310-pypy310_pp73-macosx_15_0_arm64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-pp39-pypy39_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-pp39-pypy39_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58a2dc7feba175d7628e85c6f1aa6dd1dae6f2e0d0de5b6ced0367c5ca074108
MD5 7f0809431e940098ef5684992fba3c4f
BLAKE2b-256 31d10eaa83f9699d0f32eda14ab6b6d07fcd36a655bae40c0dfd16b1998282fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-pp39-pypy39_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-pp39-pypy39_pp73-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-pp39-pypy39_pp73-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6edcbad2dc582277c0a0dffb14b0e299a638cacf9e5e52e5e53a3ad3037dd016
MD5 ceac3020cca229703902580e267e03a7
BLAKE2b-256 b6341c622d4628ba1b6971ed6a780cf6683a6b374ba513ed779f2e5b407568bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-pp39-pypy39_pp73-macosx_15_0_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-pp39-pypy39_pp73-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-pp39-pypy39_pp73-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d56b070e3efaf880764206405bea499d80a7a2983f18e4c1579bea4ad0117e07
MD5 41159dfedea5a097309d7229753ef999
BLAKE2b-256 d61a3d07ff95ea80cf4a9c407753569b7a0309e3db3365332da9a5033090022b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-pp39-pypy39_pp73-macosx_15_0_arm64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-pp38-pypy38_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-pp38-pypy38_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 483c9e027ca0a4a8ccb7c1efe93d9e596b5902dee1ac779f7776027e72c03ea4
MD5 4384cee463d7fe54c41c068bdbe98fb4
BLAKE2b-256 1c90b6587521874cf94d9ed9301ea3ffb9651af992b1e563b0f88e1e87abb3ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-pp38-pypy38_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-pp38-pypy38_pp73-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-pp38-pypy38_pp73-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7506b20b271381b732fadd1021c4fb5595886d6232e155fd6783d169aba88e61
MD5 9335540f6152dc80d9587d5721d87742
BLAKE2b-256 450ae187e2354705d41428a8c0db5e2183ea2c99ff2f982dca05bacd405f7978

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-pp38-pypy38_pp73-macosx_15_0_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-pp38-pypy38_pp73-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-pp38-pypy38_pp73-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f2872dc3b5e9a3fe4173a54cb7be2cfb90e831c74099d89380b00b1c15713de5
MD5 3cf312c33631f09d1d1ce1b887ddeb47
BLAKE2b-256 58aafd465a758b15c19368303ea1ede0fe26de050eca0c10d57b0458ddd0c88b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-pp38-pypy38_pp73-macosx_15_0_arm64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f361996d31a3bd709df6e73d312d2aead38f953a85833b5cec867a513b4a906
MD5 6a9db510e028005fbaf65ab27295700a
BLAKE2b-256 64290d8a715a317324e8e8b59d6796cce45f6d9a7ec2a2b21e1b09d3198c06f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d472b055b4657434a3e3c3252fd752bf057ae31f06c63f122fc59a1ba20036b7
MD5 2cb3025984a39b3a930c12e62de895fb
BLAKE2b-256 a426e4f857195f9d8a1e9b6c30bf998f08a5c624bea55d9d65103872fa8f4037

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp314-cp314t-macosx_15_0_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 af697049e2a693dd5c37691a2d523b160faeb51d1dc8b722a47d4e299593e48b
MD5 433a36ef542e65fccf9f0325f51ac6ac
BLAKE2b-256 b2220f9adb7446915de0783f986831df6befcf17833bc9410cc0ab1c7e1ee390

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp314-cp314t-macosx_15_0_arm64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc63acb035d9d1a46c3f9f0948762bbcf6ece8c812b7b8a2707a35cdaec6218f
MD5 2c09cf2da115926b27722a3f9764a5c3
BLAKE2b-256 7d8c0aed5dade498c5dc1b3d2a2437dd71a0c9602c02c7f6dcd192904f479f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 9b887b521fa210d8d48acb40855b1c5704475ee86297556fac2ffd42c0178be3
MD5 649161f1ef4ed46136fef51a9c0222e0
BLAKE2b-256 b333ae1b154e6034c3cee428ef0a9a0eaf726bb546d87027ebebf996c9f5eeb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 ba4808fd498700a32beac69b6aea800e67bc35924811144c073431f5dd52d746
MD5 5f9f0f556e8e7c87b18793b2997e7fb1
BLAKE2b-256 585181d64e5234a52eb0dc26af19a4bd41f2a0b87c061db3712b12feec3926ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp314-cp314-macosx_15_0_arm64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5debdad493cfd0892f4ff79be3a5dc595b9b02a8baf60436a4088fe2af1c1589
MD5 a84434e23f3c3e5c6bd02dbaf18ed753
BLAKE2b-256 43ee1af2bf55fa8c66c0aab489260a7c1ee6ae7acc3f45b7bb697d4145f3ed36

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6680478853a4592414d2f732a173540e0d8f363bf1be1581f519178014b7632b
MD5 6b83e6a7a373d7ed170fb75add737c8a
BLAKE2b-256 bed85051faa61a22b0f0595a00729b8631e7bffaacfa5df0dc46412ad5e3a7e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3313bca73db98cf0943e053090029d1023fa8ec931d93e8028cce8b5b2990565
MD5 583880f51ac56ae3404f4f38e611f9d2
BLAKE2b-256 4fa48c1c65f6c5c5b33c088eae4e0f6268c02cd5b8eb85f655b8a370e9f4a3e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e4a46c038c2ba085f507d4dc0d0458927d9198bf5b406f7cb4473fa2206677c
MD5 30d3d21f9477705f2e5a81e0b57f1db9
BLAKE2b-256 371f622a726a9b3d6cf1273a5dae2a9cf91f955d8d56d1adeb9e70274cc9f5f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 12643451022ab9fba221bbb379e07e989ef323be739370772700a7f811a34c77
MD5 5039d23210d04ebc49da5e61230f124e
BLAKE2b-256 d7c99a177352e9afbc596b571e1e7775c05f76c78bafb823f2ee720413320ffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d1f0b4813f79dfc67695c8d5fe7f6561b57cb5659e102c36647df6a4f4aec68c
MD5 830ed48832c6b9e616944351aaba4372
BLAKE2b-256 100fd92a206b7a0575e9af224cba54c7cef152739daa2bf4be22445037092a17

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd88724a43c833ad81e7e145f51e1ec68e8a43ba6ae303058c80e872797d96ea
MD5 bab4efe55686957b46becb7b71ca4618
BLAKE2b-256 ad770fb5a843de0549b1b2971204dd6b135f34f2eee3c522e440de9e1e40412f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 035b2757a948962882a705cfda6102fef7eec7a9540d194cebd1bc1f7b482dd5
MD5 d55243abd65690050033a1a6d227581d
BLAKE2b-256 4296b72b00b1b8d987757af0ce8bc669f442cedd039e8235b144521743b0933e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3d24133d9ff5653e69167b1c9be7fa2bca9e3c1ed532896ac654b43171db2860
MD5 acb8f6c40ed9aa3a2e1026ac5c10b98e
BLAKE2b-256 60a589e237efdb658ac4a3aa8c5f4f2268a23f73cfa54da57fe630f96b63cd5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a740fe01d5f9899ae2998304d4b55bde6a4a9b4d1481afd7eee973cb64c1cc3
MD5 3fea4c32731ac71631ec8f762ac86449
BLAKE2b-256 1234da1440d7383b1776a544b4ff53a287d67b333feb7ed892d21af58dcb9601

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2e6ac21ecbbecb23a77faaebf42d351620f6d6c1952ef74fab8dddcf31fca172
MD5 e3b3e24e55484482df482e915178384a
BLAKE2b-256 e786d19a08d73f9fafae5f2af16d402a63d39dd4f983d4079d84253129a5ebf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp310-cp310-macosx_15_0_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a1908e2ecce44cb535fdca61f4d161f877b704f9b7019688acf8b293460d4bd3
MD5 f0b19eedabb00bde04fe7a711257d270
BLAKE2b-256 b398a4289193d1272aabc3ef49ed9bedfdaeb576edc7472112dbf55ca281d20d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp310-cp310-macosx_15_0_arm64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c8794d533e17cf34c430ae1be0f7613ba5f308935350be1139f82fded884096
MD5 f58fd074f6e66c444765ab4dd09b2c46
BLAKE2b-256 392ddc320101bab141043cc4874caabd93180fd468363e6e2f20d4392eedaace

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1f6261a0b471a0c0ca5d682c6508cff69e2cdef052772b1beea3641786e4dc21
MD5 5f64da2d599c23f1625bdf58002955e3
BLAKE2b-256 242a5090845f3eeba627b9c48cb4cf3443592cacf9d372c10221b356997bb812

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp39-cp39-macosx_15_0_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 910d31390d559c4204fb8049657efa27c7c26fa36530e8c7f708dc67a601f6c3
MD5 c6e586ea81b615fbdfa2b8fe57564240
BLAKE2b-256 b22db551a2c5895d268920982fa8e3580344f185319f416d58b85c86dc4df8c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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

File details

Details for the file tblite-0.6.0-cp38-cp38-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.6.0-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 24f0e10638407536a3a5acd11f6c096f92c4e87c36bfd2e9263c50bb9d8c0e03
MD5 e7cfa077d11df8f995291d3f57c9d5be
BLAKE2b-256 5c02323cf7c0c784d905bcfaaebfc9fa8b2b3580ead87a699a7121c7852e083c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.6.0-cp38-cp38-macosx_15_0_x86_64.whl:

Publisher: wheel.yml on tblite/tblite

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