Python wrapper for KLU
Project description
nbklu: Python bindings for SuiteSparse KLU
nbklu provides:
- Full low-level bindings for the public
klu.hAPI families- 32-bit index real (
klu_*) - 32-bit index complex (
klu_z_*) - 64-bit index real (
klu_l_*) - 64-bit index complex (
klu_zl_*)
- 32-bit index real (
- A high-level solver API with typed variants.
Installation
pip install nbklu
# optional SciPy integration
pip install "nbklu[scipy]"
# or from source
pip install git+https://github.com/determ1ne/nbklu.git
Solver usage
import numpy as np
from nbklu import KLUSolver
n = 5
Ap = np.array([0, 2, 5, 9, 10, 12], dtype=np.int32)
Ai = np.array([0, 1, 0, 2, 4, 1, 2, 3, 4, 2, 1, 4], dtype=np.int32)
Ax = np.array([2.0, 3.0, 3.0, -1.0, 4.0, 4.0, -3.0, 1.0, 2.0, 2.0, 6.0, 1.0], dtype=np.float64)
b = np.array([8.0, 45.0, -3.0, 3.0, 19.0], dtype=np.float64)
solver = KLUSolver(index_bits=32, complex_values=False)
solver.analyze(n, Ap, Ai)
solver.factor(Ax)
x = solver.solve(b)
print(x)
Typed solver variants
KLUSolver32RealKLUSolver32ComplexKLUSolver64RealKLUSolver64Complex
All variants support:
analyze/analyze_givenfactor/refactorsolve/tsolvesort,flops,rgrowth,condest,rcond,scale,extract
Low-level API
Import nbklu._ext for direct C-parity functions (analyze, z_factor, l_solve, zl_extract, version, ...).
Complex APIs accept both:
- interleaved
float64arrays (KLU layout) numpy.complex128arrays.
Notes
- KLU docs: https://github.com/DrTimothyAldenDavis/SuiteSparse/blob/dev/KLU/Doc/KLU_UserGuide.pdf
- Python API docs:
docs/python-api.md
SciPy API (nbklu.scipy)
SciPy integration interface mirrors scipy.sparse.linalg patterns:
import numpy as np
from scipy.sparse import csc_matrix
from nbklu.scipy import spsolve, factorized, splu
A = csc_matrix(...)
b = np.array(...)
x = spsolve(A, b)
solve = factorized(A)
x2 = solve(b)
lu = splu(A)
x3 = lu.solve(b)
x4 = lu.solve(b, trans="T")
This module accepts SciPy sparse matrices/arrays and internally dispatches to the appropriate KLU family.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nbklu-0.3.0.tar.gz.
File metadata
- Download URL: nbklu-0.3.0.tar.gz
- Upload date:
- Size: 213.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e11413f81f635ce768496ae5c0840d330a26eb93591c26e90eb1c60768fb7787
|
|
| MD5 |
b3b2efcc67773792647c000611e91d39
|
|
| BLAKE2b-256 |
54f4311a2c4eb7defc5dd23f187b676e4fb5390279ef11c97ac53b46ae4c5e9e
|
Provenance
The following attestation bundles were made for nbklu-0.3.0.tar.gz:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0.tar.gz -
Subject digest:
e11413f81f635ce768496ae5c0840d330a26eb93591c26e90eb1c60768fb7787 - Sigstore transparency entry: 982788534
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: nbklu-0.3.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 236.1 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b16a55487bb8d584a2cd24ccd156f638086636a2b51a333ac81e7f6cd373b0f9
|
|
| MD5 |
2f55c756a6049abba7373278f0251830
|
|
| BLAKE2b-256 |
007562422f357434d7f9afae0fac8773e623737d08afbeb014ed09312e73c07e
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp314-cp314t-win_amd64.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp314-cp314t-win_amd64.whl -
Subject digest:
b16a55487bb8d584a2cd24ccd156f638086636a2b51a333ac81e7f6cd373b0f9 - Sigstore transparency entry: 982788648
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp314-cp314t-win32.whl.
File metadata
- Download URL: nbklu-0.3.0-cp314-cp314t-win32.whl
- Upload date:
- Size: 199.8 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1855cc71e1dca48b18fde7e73b610f743f8b35a3e3e1c6b78b472c118cc326e
|
|
| MD5 |
1d385d3cbf0d040c01b7d6fd23815c26
|
|
| BLAKE2b-256 |
582cc00bacac83c4c981759cdae11ba8084d3a813e9c1e36c8ed91083e8dbd40
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp314-cp314t-win32.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp314-cp314t-win32.whl -
Subject digest:
c1855cc71e1dca48b18fde7e73b610f743f8b35a3e3e1c6b78b472c118cc326e - Sigstore transparency entry: 982788616
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: nbklu-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 341.0 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50a09f752b1fa3c73f2f4e31d2c5eff9fc35712716c81123d8f2880c8177fa12
|
|
| MD5 |
4b8282ddd08482daaf2c480b9774dd1e
|
|
| BLAKE2b-256 |
d3af120ce807465382615df51bf1110c0e542e34738204aaa57a2ec724181f3b
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
50a09f752b1fa3c73f2f4e31d2c5eff9fc35712716c81123d8f2880c8177fa12 - Sigstore transparency entry: 982788618
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: nbklu-0.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 242.4 kB
- Tags: CPython 3.14t, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f54e8c6830f65a54e634f21954d2374a6333007ec8af95a9f84efd8be0620223
|
|
| MD5 |
fe922533b2ad5fc84a3091a3294d2bb2
|
|
| BLAKE2b-256 |
600d2d7b635f5c3a091a932772e6c9e8adfe6facd8594fc41aecd1f41cd79826
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
f54e8c6830f65a54e634f21954d2374a6333007ec8af95a9f84efd8be0620223 - Sigstore transparency entry: 982788577
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp312-abi3-win_amd64.whl.
File metadata
- Download URL: nbklu-0.3.0-cp312-abi3-win_amd64.whl
- Upload date:
- Size: 223.9 kB
- Tags: CPython 3.12+, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59bcc6751d8793142f72123552bbfc8d330a9117f66b56ecc648995d2c7d5577
|
|
| MD5 |
c0c1b35d5f1ada18894e768c0ee140b6
|
|
| BLAKE2b-256 |
2ca667ead01abb33bf7b625804b71ae4b314a8ee7102f4dc50d9bfb50fb023fa
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp312-abi3-win_amd64.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp312-abi3-win_amd64.whl -
Subject digest:
59bcc6751d8793142f72123552bbfc8d330a9117f66b56ecc648995d2c7d5577 - Sigstore transparency entry: 982788629
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp312-abi3-win32.whl.
File metadata
- Download URL: nbklu-0.3.0-cp312-abi3-win32.whl
- Upload date:
- Size: 191.1 kB
- Tags: CPython 3.12+, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a2875c07742573d9aa0b8ba51fd71ae98088f71527a6c4353ffd2aa7398ca38
|
|
| MD5 |
0cc24d133cc782f5f80de669f5d141a4
|
|
| BLAKE2b-256 |
cadc49c40b201f50ca400737f32c2c055207bd7bbbaf7f8676d8ea692ef10ab8
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp312-abi3-win32.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp312-abi3-win32.whl -
Subject digest:
6a2875c07742573d9aa0b8ba51fd71ae98088f71527a6c4353ffd2aa7398ca38 - Sigstore transparency entry: 982788542
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp312-abi3-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: nbklu-0.3.0-cp312-abi3-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 334.9 kB
- Tags: CPython 3.12+, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f540a684818c763cbef0b734e00ad426ab39916be47bd38042b7a4e992c3f0d7
|
|
| MD5 |
581b5aaa3a7eb97c0883aea1c09ff71a
|
|
| BLAKE2b-256 |
ec8cf36217fb46c6132ca55a450471d4feee3323178388a68e9c436fdd0f8d26
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp312-abi3-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp312-abi3-musllinux_1_2_x86_64.whl -
Subject digest:
f540a684818c763cbef0b734e00ad426ab39916be47bd38042b7a4e992c3f0d7 - Sigstore transparency entry: 982788593
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: nbklu-0.3.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 236.4 kB
- Tags: CPython 3.12+, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ee5aec9164b9e5886119e00364b90d997ea1ec945f3ccf647661e57e8353575
|
|
| MD5 |
67db9be42bcb0069d0ab3a0f06e7aa1c
|
|
| BLAKE2b-256 |
af93e39a133f4b56bb9206c8a7aab23961206d69d54271bd6568edc73ff88da0
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
6ee5aec9164b9e5886119e00364b90d997ea1ec945f3ccf647661e57e8353575 - Sigstore transparency entry: 982788549
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: nbklu-0.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 225.9 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f7c177bd059633aa67dec7fd31e080e80e56829768c7e6bbdb887a5bbbaf1a4
|
|
| MD5 |
b406c9cd9d635c30fc64101bbc9ce47c
|
|
| BLAKE2b-256 |
9f24b12fdb0f7f96293412b9200a99f2e20d85264295f4fd1e5f268fd8c7b6aa
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp311-cp311-win_amd64.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp311-cp311-win_amd64.whl -
Subject digest:
1f7c177bd059633aa67dec7fd31e080e80e56829768c7e6bbdb887a5bbbaf1a4 - Sigstore transparency entry: 982788561
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp311-cp311-win32.whl.
File metadata
- Download URL: nbklu-0.3.0-cp311-cp311-win32.whl
- Upload date:
- Size: 193.0 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57fabc1b03aa34c41cc2381cc426863fa2d90b83d054dc55880821266841de7d
|
|
| MD5 |
974f4e980b5817048d842253cc44871e
|
|
| BLAKE2b-256 |
e8620ef6ad51de33417ec475c329f359b8377923232b6296d0a50afe649c2304
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp311-cp311-win32.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp311-cp311-win32.whl -
Subject digest:
57fabc1b03aa34c41cc2381cc426863fa2d90b83d054dc55880821266841de7d - Sigstore transparency entry: 982788609
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: nbklu-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 339.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0de8d1746388d5273613933d67c783141fe23d7723f9dabad04216cc07bd05e2
|
|
| MD5 |
69bfd86d2d03bca37d9c0923ae380374
|
|
| BLAKE2b-256 |
3d8d4196ba229715616d7ae8a76ddeee99df29f94380cdf9c6b13b06b528ecae
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
0de8d1746388d5273613933d67c783141fe23d7723f9dabad04216cc07bd05e2 - Sigstore transparency entry: 982788619
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: nbklu-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 241.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4c9584a7a3cceda92413cf433d394fe7968d6203c8d4c96ed3f68c389a9dad6
|
|
| MD5 |
fc9400b5c99f6084c0ffb04ffdc3edff
|
|
| BLAKE2b-256 |
028d4e7c628d198226336f711ea197f50a941ca97fae2962a9e1e1bc1b3a4adb
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
c4c9584a7a3cceda92413cf433d394fe7968d6203c8d4c96ed3f68c389a9dad6 - Sigstore transparency entry: 982788589
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: nbklu-0.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 226.5 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d7460fdbf2eb92c13ad09bb6f23cd8db512e5186e9dfdfaf3aa572527b06deb
|
|
| MD5 |
d1790a308fd9f9d1d8bdaaf9f55dbfc2
|
|
| BLAKE2b-256 |
083a8f9e846fb46011c3d3e495908d1f8843d10fb24991041f886c2047a0bceb
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp310-cp310-win_amd64.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp310-cp310-win_amd64.whl -
Subject digest:
2d7460fdbf2eb92c13ad09bb6f23cd8db512e5186e9dfdfaf3aa572527b06deb - Sigstore transparency entry: 982788635
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp310-cp310-win32.whl.
File metadata
- Download URL: nbklu-0.3.0-cp310-cp310-win32.whl
- Upload date:
- Size: 193.1 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24d7407a3aacb9ee50e8259e1775c11ac2a04a404fd6fab2d6517f1a4005a4e4
|
|
| MD5 |
3bb97f2cf909aef7ba622fdec7bc34c0
|
|
| BLAKE2b-256 |
4c89562fd2ff8d06641d976d879dea3b51dd4bdcb340f5b11c89fd28b444f808
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp310-cp310-win32.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp310-cp310-win32.whl -
Subject digest:
24d7407a3aacb9ee50e8259e1775c11ac2a04a404fd6fab2d6517f1a4005a4e4 - Sigstore transparency entry: 982788571
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: nbklu-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 339.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
105fd4c9f1e18cd1b4382f0320c402484d29dcc20fa26d850ff01474176df3ae
|
|
| MD5 |
df8ae7fbe1578bb7ceccfcf444fc6146
|
|
| BLAKE2b-256 |
949e08095949b9acbcb8122501c855e0a62c3ea8604288c5079fac4226d0d076
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
105fd4c9f1e18cd1b4382f0320c402484d29dcc20fa26d850ff01474176df3ae - Sigstore transparency entry: 982788640
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nbklu-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: nbklu-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 241.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dfff386371328b884d05b0a3e869744788887950d427949ba5a84cafb3150fa
|
|
| MD5 |
e9ed8184c86cc3144e6fadb8b5f2a2b0
|
|
| BLAKE2b-256 |
f9e27735c3e00fde0dbae4df3d37c68bae0078deae6db8c1db2f31a7562daf42
|
Provenance
The following attestation bundles were made for nbklu-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on determ1ne/nbklu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nbklu-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
3dfff386371328b884d05b0a3e869744788887950d427949ba5a84cafb3150fa - Sigstore transparency entry: 982788599
- Sigstore integration time:
-
Permalink:
determ1ne/nbklu@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/determ1ne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@85a57e352067b9b3d74437c87b3e6c70dbf27897 -
Trigger Event:
release
-
Statement type: