Skip to main content

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

Alternatively, a parametrization mapping can be passed directly to the calculator:

params = {"charge": {"effective": {"average": "arithmetic", "gexp": 2.0}}}
calc = Calculator(params, np.array([1, 1]), np.array([[0.0, 0.0, -0.37], [0.0, 0.0, 0.37]]))
print(calc.singlepoint().get("energy"))

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

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.7.0.tar.gz (3.5 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.7.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

tblite-0.7.0-pp311-pypy311_pp73-macosx_15_0_x86_64.whl (14.7 MB view details)

Uploaded PyPymacOS 15.0+ x86-64

tblite-0.7.0-pp311-pypy311_pp73-macosx_15_0_arm64.whl (12.0 MB view details)

Uploaded PyPymacOS 15.0+ ARM64

tblite-0.7.0-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

tblite-0.7.0-pp310-pypy310_pp73-macosx_15_0_x86_64.whl (14.7 MB view details)

Uploaded PyPymacOS 15.0+ x86-64

tblite-0.7.0-pp310-pypy310_pp73-macosx_15_0_arm64.whl (12.0 MB view details)

Uploaded PyPymacOS 15.0+ ARM64

tblite-0.7.0-pp39-pypy39_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

tblite-0.7.0-pp39-pypy39_pp73-macosx_15_0_x86_64.whl (14.7 MB view details)

Uploaded PyPymacOS 15.0+ x86-64

tblite-0.7.0-pp39-pypy39_pp73-macosx_15_0_arm64.whl (12.0 MB view details)

Uploaded PyPymacOS 15.0+ ARM64

tblite-0.7.0-pp38-pypy38_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

tblite-0.7.0-pp38-pypy38_pp73-macosx_15_0_x86_64.whl (14.7 MB view details)

Uploaded PyPymacOS 15.0+ x86-64

tblite-0.7.0-pp38-pypy38_pp73-macosx_15_0_arm64.whl (12.0 MB view details)

Uploaded PyPymacOS 15.0+ ARM64

tblite-0.7.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

tblite-0.7.0-cp314-cp314t-macosx_15_0_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

tblite-0.7.0-cp314-cp314t-macosx_15_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

tblite-0.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

tblite-0.7.0-cp314-cp314-macosx_15_0_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

tblite-0.7.0-cp314-cp314-macosx_15_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

tblite-0.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

tblite-0.7.0-cp313-cp313-macosx_15_0_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

tblite-0.7.0-cp313-cp313-macosx_15_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

tblite-0.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

tblite-0.7.0-cp312-cp312-macosx_15_0_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

tblite-0.7.0-cp312-cp312-macosx_15_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

tblite-0.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

tblite-0.7.0-cp311-cp311-macosx_15_0_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

tblite-0.7.0-cp311-cp311-macosx_15_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

tblite-0.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

tblite-0.7.0-cp310-cp310-macosx_15_0_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

tblite-0.7.0-cp310-cp310-macosx_15_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

tblite-0.7.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

tblite-0.7.0-cp39-cp39-macosx_15_0_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

tblite-0.7.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

tblite-0.7.0-cp38-cp38-macosx_15_0_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tblite-0.7.0.tar.gz
Algorithm Hash digest
SHA256 c303bc45e0c48e46dad7f032d377432c8717e17b0eb8eedb6c42c5237c3856d2
MD5 078d998e4f15a849c06a146271866439
BLAKE2b-256 f9815310a1495c2b3c484399f14b9b7be98ba2d031a0ee94a64dc20ad098345c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f61cea7a3077be7445afd28fe8e7fe27f1e87c17de9f3565db1ca55f4f7a16b
MD5 53eeb38b6fbc67889a5444b55cb8136a
BLAKE2b-256 f22fcaeac6d6e2430bd3737179c17f738cdc7b7c77b923ef3fcb62d650324f27

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-pp311-pypy311_pp73-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-pp311-pypy311_pp73-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6f8e756a4604bd0787fabffecc619a247b8b3452b9aa0e1a1b7ec4d8f5ab9586
MD5 d5c8abaea5c918aed21c4370e58d6a9d
BLAKE2b-256 06ac4ebd5b93b32818bfb38c299669ea163b9b5a55fd81318a186c160b2a7479

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-pp311-pypy311_pp73-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-pp311-pypy311_pp73-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f9401f329f4d5b9913872e396064168ed921f9d6c2b8395b3bc21b35e6055a0a
MD5 f811994806f9194047fc5ea7fc5ddf58
BLAKE2b-256 89a5b56016b650eb5de37c7d771f6ab82e35dfe7205eeed32c90b525ae9f8c43

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e49945c42a50e6bc3436e0278cef6ddf880ae45b7bfc3b2e20f94c39b88e1325
MD5 b90534894ffca7e25ea98413be7a01c9
BLAKE2b-256 fe8d5d7ccd324e619bb94d11625e296c3205e0aecd18df41fab85d4405e1a165

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-pp310-pypy310_pp73-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-pp310-pypy310_pp73-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3fafb4e12736f4039a84d35c22dadae1f09a29f758029a051038817246ccb718
MD5 72b5e289e1ce25b9ecf20e8ef7d8e8f2
BLAKE2b-256 4c62cc4dd35f9a2bf01ded5c10afeaa0da1b882b693766b25f84699860be7dd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-pp310-pypy310_pp73-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-pp310-pypy310_pp73-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 8e8d58534e33195e68eb0f1d609bc23fc0c295b4fc03a7e4b33196b14a350b45
MD5 bf985d155247f5b8997865ee7d9c8832
BLAKE2b-256 598465d2160fc0ddbe39a176a5a8caca037d8395c26f9abf6d96da40776855ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-pp39-pypy39_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-pp39-pypy39_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b20a9a77a406b064ca9cc611ac6a9c6bd1a9eeb9ba1308e96dce4ad4b634f7f
MD5 9d7a426deb4956ab9b6afe0f6193d309
BLAKE2b-256 75f19aadffd838f9dac9d19b74ec2c734522a7a18314c08b0ae7d2077f7f11aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-pp39-pypy39_pp73-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-pp39-pypy39_pp73-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 dc9428ba7093b89dd54e5b44c194ac7d477679d5cff2412aa88ebfaaa20b0ef7
MD5 593466499982996d381c3b4dd8dbc99c
BLAKE2b-256 6bb24b1fbcb1315382c105e6b61f2a4964c7383e5d0ac51a41c9d403418fcdcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-pp39-pypy39_pp73-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-pp39-pypy39_pp73-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 11bef46b6985e0fdfb4e2c05cba8b4a897700ecc9744dda2b0519646dc22d747
MD5 cc4b6e3b89d3ff010a8c69361a809f94
BLAKE2b-256 4d399b6e915dd19fae73324f61471d794d94c791c6a0644a0a95a689d0701550

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-pp38-pypy38_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-pp38-pypy38_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f5dab4c6033619b9486c853786242bbad71c3e9935e0e4b7923a26bcb591f35
MD5 aa47d80e1585545c3c1c4279fa552956
BLAKE2b-256 96bbe394c55ac0dad9005c13daa206b7b7813639e21581924b1e7a40f9722c03

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-pp38-pypy38_pp73-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-pp38-pypy38_pp73-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7471ea33674ff23007a6a82180efd6109b22a55dced373ab6ac790a1fa3017ec
MD5 e1d11ca257180e7b72c696deee45a960
BLAKE2b-256 6f3ee2d5da51716a267fee3fd6035741c59830b1374ed23907f5fb59d8fa58f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-pp38-pypy38_pp73-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-pp38-pypy38_pp73-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 df071d53ac9ddf07d3c7797ea14c251df2d22dd5cdaff07e4697d1f5d98d1d61
MD5 feb40b00da1895a2dbfaed1d38ee562d
BLAKE2b-256 9b1540ac1f6fc23539634d997e64ef78964d603f284bca2a24005f693cd528fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3a8d9e28b3c8ff3c67cc3b5f2a7bc631c2cbd6f648c95b767205e75205bc351
MD5 0bbbc84131eef78f2c821fbd2db0e45c
BLAKE2b-256 6bb7738fd3692a51fb3adb90f71ef3458923edb94143c6cd7af9753d682a981e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 000029ed9b6c60b662a90dbc5ce4a0a657126e89c78e048c2ff6b56003051b8f
MD5 19862edb5345ec6ebba9e0b0f4333395
BLAKE2b-256 d5d54fb5156a81692464304970a8ad583790156ae5d562a33e4d8a07bce37151

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 829eeb9e465f97650d69f6271096f031a80f951ff59e4a267eb6508a3e8f8ec1
MD5 0215ebc27c486d072fb530e07b6f5ec6
BLAKE2b-256 2a065ef247be3a244ed0b46d41e203a03e43dc11bb6c47ddeba34d84e518d8c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb5538e5a31ae02035a929cdea6dbbcca6ecf9a6e254c741383de637d58e9471
MD5 250f918e5ffad53dca0535cfa4477802
BLAKE2b-256 3b2454856a55ea8b9af0abde25732d9e011d2a6eb70ff579267facdfd52f0f3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f1353686659236a64294832b58c6ba4aaa5c74f928a7c144ff837cbdebdd54e6
MD5 232ea9fc5882b5d3df1b5fcdf66067e5
BLAKE2b-256 07ad08db0cddeaf51dd822c99a218dbcbff4173d26d293d5ece69f7283e60bba

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c7c0a24900cd7d92604fe04518390f1dc9690c67cced6876d72b2f697331d508
MD5 d2ba42ea5ff554dad4c4950ca97a786f
BLAKE2b-256 90dd76331eeeaa5346f5a4bdfc88da517110152d5f2eda445cf30c240bc8a9f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a57f5ec677b4b8b435c07b421bd0ec2c3795e12c1c1cf406aea18816df7e6ae
MD5 df62aa7c7ba624b09ab3e0016b8402e7
BLAKE2b-256 750792cebab27400a13c5a7b1167e68704e5dd6825a455797c8f4be3605bb141

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f119ea58b9e28676fc0278864690c391554f1288d23dc97b573348fc7a0d82fa
MD5 f82212df20a9ff96bdc6616966a82868
BLAKE2b-256 782af3887af0398824063747db7e152dc16f6d6dbee7aaeb62bf598d3e83dbe7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4c180756d5301c78f4fad31827b9ba7d4b62e7af6a7ef44d427fdc94233dad40
MD5 ca52459c4a6e8521802a999b7f5dc081
BLAKE2b-256 d5ebbf82d235e5cffb60fabfa5ad516d8e78bb2c8247da96faf88e8ef2e66bdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c95f8214221dc18c007e8950272fad9165521ff432a22ad8b7b099d42e31fc56
MD5 6eb9580dc6e25a5af2b75108e0f76c86
BLAKE2b-256 4c83bae6ba2705b4bb1fff17eeeb4f82d256c71834f470dc3fc201960220e9fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8d7923a396dd7401ca6b696b0a0fb0497e0e286b1d15fb71a144abbe88f4340f
MD5 27d18bc7246546db008915feca996f72
BLAKE2b-256 69cf20cdb04312a3c4add9573167e26631497be0207d1627f0676a482a7f71ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 29f4838f63bd22da973462c8912f2dfa6d260d39e1db2eb4bda455ec562ccfe4
MD5 6f3e772e9b8ea25aa05aea4aa8c05ab7
BLAKE2b-256 825654d9abe1db0b1926e19663df1db8a2129d8fcbf8575c78551995ec7d430e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 322e0fc2e8a288fb7d4b294f54f97b63181d4a7c1f20bb331e9e1741847ad657
MD5 f67750a22fdf93358acda2bdb28cb8b5
BLAKE2b-256 3932bcd3279362002bbceb3d5d1c3d9597a50b405b8bbc346d7b487f4e0a5ba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 43d7f2fcd7908deb51c2f085689464aa25ce3e45274170969afc2ec81a2b786b
MD5 98ebec50281b566258ef0c243c945af1
BLAKE2b-256 2aa51f5cf9f604846f85649c7b6de97002db032235357623dc0de5c85b31cc81

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 327e8f62e8b89c55a1117d5ab3644132fe6c4947bae70dfd018e189f2238164c
MD5 6a643ae043005f37af7542eed62f2c60
BLAKE2b-256 9d2c281a98602cb93b72419fe32de54aa3783166bbe5ab34f3996267750a04d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0faa6ffc2af5ecc457523fc6190dba25f5608a68646a3840298e1e25d493b594
MD5 17005c85db903e7c649e6ecf6783132b
BLAKE2b-256 2bac63fb9749dbeb0b419706548e8b2a231a526267502bd68d0bb536cb1e7d52

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 81f860a6241ae6f568cd17684ff883a67ec59b1f67bf1cb958d549f81b859c0c
MD5 270f3d04bc144d4973a510c6fbcced14
BLAKE2b-256 7d347441944a5f6127f0ca9b6238c2fcdfbdd7936d8ee2835b65b5c63f87618b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 9dc8e653f5192805c648b827417614b47f9b9b673f7152a665ac3909e6d4b912
MD5 90f18f913be7dbdd106a4cd75f7f9097
BLAKE2b-256 e655651abb7aff241acedcc8715abbc5330815493d9355190d0a7e0cfb61dce5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1418f762b1d4714e2548ce997ae5d9b717dc4038106012759f6f0ad16510427
MD5 30bb631ea5a8ea9eb1b4f7ae9f72be26
BLAKE2b-256 d325c7a092f5ba659aa6c6738afa9b23823eb590fc30e587b4914d6af347d5b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 968c7104b39b4ba118f07c17e8ee55eb457086a51c7bf972c4ab96068e9bd9b9
MD5 c7057343d2294face68491b44c0b8438
BLAKE2b-256 bedfeab20124ea638c0b480502f6f2934253a379a840bc37306d6dabaa3d2a7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5177863a4f54d301d490f97ff3e7c364a5380ffbc9f78619b2229b7c68c7494
MD5 3546cca830090eea4acdff625294ab93
BLAKE2b-256 af841f0b10abf20148691d776d25e5ffc8b6bd1ce554f0146670c14101fbdc0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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.7.0-cp38-cp38-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tblite-0.7.0-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6ded165cf352e9e117690592b47954e7f1fe953b121c16e4956fe0b88244a03c
MD5 274a9ab44bcc85e25566020b1f8ccd8c
BLAKE2b-256 a51f919db05bfbee0161c34d574f4c35632cf8d0201e502ad99d7133f564514d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tblite-0.7.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 Sentry Error logging StatusPage Status page