A thin Python wrapper for the Hochbaum Pseudo Flow (HPF) fast s-t min-cut/max-flow algorithm
Project description
Thin wrapper for HPF
Thin Python wrapper for the non-parametric Hochbaum Pseudoflow (HPF) min-cut/max-flow algorithm. The original source code by Bala Chandran and Dorit S. Hochbaum is availbable here. The C++ code used in this wrapper has been refractored by Patrick M. Jensen and published here.
Installation
pip install thinhpf
Tiny example
import thinhpf
hpf = thinhpf.hpf()
# Add s and t.
next_node_id = hpf.add_node(2)
def offset(n):
return 2 + n
s = 0
t = 1
hpf.set_source(0)
hpf.set_sink(1)
# Number of nodes to add.
nodes_to_add = 2
# Add two nodes.
next_node_id = hpf.add_node(nodes_to_add)
# Add edges.
hpf.add_edge(s, offset(0), 5) # s --5-> n(0)
hpf.add_edge(offset(0), t, 1) # n(0) --1-> t
hpf.add_edge(offset(1), t, 3) # n(1) --3-> t
hpf.add_edge(offset(0), offset(1), 2) # n(0) --2-> n(1)
hpf.add_edge(offset(1), offset(0), 1) # n(1) --1-> n(0)
# Find maxflow/cut hpf.
hpf.mincut()
flow = hpf.compute_maxflow()
for n in range(nodes_to_add):
segment = hpf.what_label(n)
print('Node %d has label %d.' % (n, segment))
# Node 0 has label 0.
# Node 1 has label 1.
print('Flow: %s' % flow)
# Maximum flow: 3
Related repositories
- Hochbaum Group on GitHub
- Original source website
- slgbuilder Python package (CVPR 2020)
- shrdr Python package (ICCV 2021)
- thinqpbo Python package
- thinmaxflow Python package
- C++ implementations of max-flow/min-cut algorithms
License
The original C code by Bala Chandran and Dorit S. Hochbaum and thereby the content of hpf.h (previously pseudo.c) is published under an academic license (see LICENSE file). More information on the original website.
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 thinhpf-0.1.2.tar.gz.
File metadata
- Download URL: thinhpf-0.1.2.tar.gz
- Upload date:
- Size: 194.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6033d232b575b150783bfb5efc01a329927cad68d110c1a6128d0dee15c69474
|
|
| MD5 |
e30c11e5e06ad5dc15748629ba59337f
|
|
| BLAKE2b-256 |
85942f8603b6dba5a8a422b4b4528d6b97ee532cf3f1efd7f2f0820494fcd7e3
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2.tar.gz:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2.tar.gz -
Subject digest:
6033d232b575b150783bfb5efc01a329927cad68d110c1a6128d0dee15c69474 - Sigstore transparency entry: 192799349
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 113.8 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7acecce3dd44dda073d42c947cb247da9560eadd34024c8aed9ee10cb9e20179
|
|
| MD5 |
4c80f9ad747d0da3cb45fb82ff7706e6
|
|
| BLAKE2b-256 |
5215bec329cf64253ff552b2bac1c021682c25401d513663819aa111e214e133
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp313-cp313-win_amd64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp313-cp313-win_amd64.whl -
Subject digest:
7acecce3dd44dda073d42c947cb247da9560eadd34024c8aed9ee10cb9e20179 - Sigstore transparency entry: 192799419
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp313-cp313-win32.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp313-cp313-win32.whl
- Upload date:
- Size: 93.8 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f774f848d4f29c966c2591306016d9775a35274c815ab4c011501ac371cb29f
|
|
| MD5 |
90b04172cea6c5cd53c692d5af1a50bc
|
|
| BLAKE2b-256 |
fd5804a745f9e3624461afa81021c7664f96993796b7f30f4cadbfc3059545ac
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp313-cp313-win32.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp313-cp313-win32.whl -
Subject digest:
4f774f848d4f29c966c2591306016d9775a35274c815ab4c011501ac371cb29f - Sigstore transparency entry: 192799387
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c51de1887238f2ab5afd1c656376f7ed9b8ff2ab5217d5337c429694feb84d0d
|
|
| MD5 |
40919d47de6c1ef08535b65978139f71
|
|
| BLAKE2b-256 |
d1008b751aad7e1ced39b94523623e37260371750858b2e7e2f8eea86c80caa2
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
c51de1887238f2ab5afd1c656376f7ed9b8ff2ab5217d5337c429694feb84d0d - Sigstore transparency entry: 192799363
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e935ce4563dffce44e3e311a281b95ea70e33b507fae99604001f44536958b9f
|
|
| MD5 |
45749ac29a92e63b939549d306aa7e93
|
|
| BLAKE2b-256 |
9de3b249292e24cab4a29caa09143d7ee1dfdace798717580ec4472015017647
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp313-cp313-musllinux_1_2_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp313-cp313-musllinux_1_2_i686.whl -
Subject digest:
e935ce4563dffce44e3e311a281b95ea70e33b507fae99604001f44536958b9f - Sigstore transparency entry: 192799398
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db4aec4108fdad100a1e247809aec2a7a55884471bc1d234668339b1cfff5456
|
|
| MD5 |
44f8ec27f0e458cb59a648ded5380f5d
|
|
| BLAKE2b-256 |
5f0256e0adcbe3852b6529e1c57915251f7c1f3a023020d24f613a6e962c1a79
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
db4aec4108fdad100a1e247809aec2a7a55884471bc1d234668339b1cfff5456 - Sigstore transparency entry: 192799422
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3060d0915cf291535d58597f9609d744ce6e57d5aaa513a8a73e9fd5c630dd99
|
|
| MD5 |
753da4de9c35311b89b0824adc7ae32f
|
|
| BLAKE2b-256 |
920f4ac1d2bf9cf717e839aced2b49bff9c4ca8b9a3770671854c526c100aadb
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
3060d0915cf291535d58597f9609d744ce6e57d5aaa513a8a73e9fd5c630dd99 - Sigstore transparency entry: 192799420
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 125.1 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66acb4d0ce18e0b196acfcd1f3275d6e79b6e6c5f50fc5ffc72990c6df896ef5
|
|
| MD5 |
39379bb0c405624dd4047c94628e383d
|
|
| BLAKE2b-256 |
511680a00102f0cf22d91638689e1a2ba6a6d20665c3a4470948719ef41a2303
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
66acb4d0ce18e0b196acfcd1f3275d6e79b6e6c5f50fc5ffc72990c6df896ef5 - Sigstore transparency entry: 192799377
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 114.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef23137e9a7cf05850d9529d0435ccd47ea1962deadffea3047ef09bea81a488
|
|
| MD5 |
a0023c9dfe23da6c178079e17b9c7c96
|
|
| BLAKE2b-256 |
9e48d84ac01856dfc586ca37ea747ee84d0dd2870e80dcc051e2375e2d1bdc70
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp312-cp312-win_amd64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp312-cp312-win_amd64.whl -
Subject digest:
ef23137e9a7cf05850d9529d0435ccd47ea1962deadffea3047ef09bea81a488 - Sigstore transparency entry: 192799407
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp312-cp312-win32.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp312-cp312-win32.whl
- Upload date:
- Size: 93.9 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5de881752c528250e4038fc3b8e7c094b7e3317c1c770aa4ec54bfb7aef1540c
|
|
| MD5 |
f87cbb58a513b55ee728769583870b7f
|
|
| BLAKE2b-256 |
14e40e0415d7a5f9b3174d6a768ad85596710ef890ca3a6dc657abd083d7d18e
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp312-cp312-win32.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp312-cp312-win32.whl -
Subject digest:
5de881752c528250e4038fc3b8e7c094b7e3317c1c770aa4ec54bfb7aef1540c - Sigstore transparency entry: 192799433
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13baf59f9ddec9d1a64066f0d531030ed1bd0539cc748a420e74e3758d60e682
|
|
| MD5 |
01492618a60e064611a806c6a209a7c1
|
|
| BLAKE2b-256 |
502a5503cd343fdf7ffaeba9ce69e4f8c4b4c8785737a7210178abf556b6b7be
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
13baf59f9ddec9d1a64066f0d531030ed1bd0539cc748a420e74e3758d60e682 - Sigstore transparency entry: 192799415
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c15925dbb64d350aa3a671ae260b88d1168b96e757e79bbc338932fee02244ef
|
|
| MD5 |
c7e9e8a1c431178e55edc2df3403e91e
|
|
| BLAKE2b-256 |
85e1a8203f8cc43cf54e342704d61177bb46c903204dfb68e4a4fd84a6fabff5
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp312-cp312-musllinux_1_2_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
c15925dbb64d350aa3a671ae260b88d1168b96e757e79bbc338932fee02244ef - Sigstore transparency entry: 192799425
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f21d9107de41d64d0e06f050b88f7e51464aacca5212adbf0c412fb2106b62de
|
|
| MD5 |
860f8e77cc1e5944aa44bb23bd14d00f
|
|
| BLAKE2b-256 |
cd9aca420ad063320549d36a8c257d61d9c7c99777ace469dfe427ed81b48990
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
f21d9107de41d64d0e06f050b88f7e51464aacca5212adbf0c412fb2106b62de - Sigstore transparency entry: 192799417
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b76faf59c27af25ea88e34555714336cd8650a2da68d2515aa57d488c90c6f7
|
|
| MD5 |
6be068cecd258d4c74d476a2d26dd4e6
|
|
| BLAKE2b-256 |
c266ad5f9edf6426098cf59bb50af3940909a0dbfed746d1f0eb502b66630686
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
0b76faf59c27af25ea88e34555714336cd8650a2da68d2515aa57d488c90c6f7 - Sigstore transparency entry: 192799391
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 126.0 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2888f898d5f6988911355f7a1d5d3eb9fcd36a6fb98ace69a923919f317e821f
|
|
| MD5 |
5e65aff800c311829ac02245d0421842
|
|
| BLAKE2b-256 |
beb4a6ffcf0ccff5dc9adfa23c64b5f349ef9a392663f601924677e1363a54a6
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
2888f898d5f6988911355f7a1d5d3eb9fcd36a6fb98ace69a923919f317e821f - Sigstore transparency entry: 192799371
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 113.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b35bdd3b85dec892090297982126cd1545924036125c51e64aa1f5e5e7af1880
|
|
| MD5 |
7819b5b578f42c2a4446270815ea6c19
|
|
| BLAKE2b-256 |
31c5c069e1973b28abddf39b2693a66586e87b050578c8d41ecb5225cbb7a46a
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp311-cp311-win_amd64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp311-cp311-win_amd64.whl -
Subject digest:
b35bdd3b85dec892090297982126cd1545924036125c51e64aa1f5e5e7af1880 - Sigstore transparency entry: 192799351
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp311-cp311-win32.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp311-cp311-win32.whl
- Upload date:
- Size: 94.4 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00932197a23418532fd1843355fd2c40a4ea2e1dd49b5b56d59655ef6b63c31e
|
|
| MD5 |
f78e1a66412dab84561a319c43d60b5b
|
|
| BLAKE2b-256 |
23d71d61d0144f1f2517b3351ea717efda23801147fc041967b0888fb6bbd354
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp311-cp311-win32.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp311-cp311-win32.whl -
Subject digest:
00932197a23418532fd1843355fd2c40a4ea2e1dd49b5b56d59655ef6b63c31e - Sigstore transparency entry: 192799412
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a4b75d76126f8924c52c912a3a3c1e0f56f92d0deebcfca12d3afc96d39a6e7
|
|
| MD5 |
e6dd431e5dc708a62f6e2274534046ed
|
|
| BLAKE2b-256 |
b0eac3a0f29b2401924e5a1aaf4f80c74de0a9427210a53cca28e793f6513887
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
7a4b75d76126f8924c52c912a3a3c1e0f56f92d0deebcfca12d3afc96d39a6e7 - Sigstore transparency entry: 192799359
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3951a928948f36b7fc2713172b2cce144d73b54fd031fb3be473f583ab55246
|
|
| MD5 |
242dd8c3656867f0c2d04390e749eda0
|
|
| BLAKE2b-256 |
1dbc472b1f0e334382408d70918990cfd26f3ba19fb7afca2222bcba20ea13ed
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp311-cp311-musllinux_1_2_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp311-cp311-musllinux_1_2_i686.whl -
Subject digest:
f3951a928948f36b7fc2713172b2cce144d73b54fd031fb3be473f583ab55246 - Sigstore transparency entry: 192799421
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7b52470f539f69809874f5e5897c83e5c8a5d14a048e2c526feeeb0698e1665
|
|
| MD5 |
36995126b51a4adefeeee0367b6ba602
|
|
| BLAKE2b-256 |
a29d506a1d3860f79f539e909c69c3fb1fb1b33e7421c37739898c233b819c22
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
b7b52470f539f69809874f5e5897c83e5c8a5d14a048e2c526feeeb0698e1665 - Sigstore transparency entry: 192799389
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86f9cd0cbc35682db73a16fd3112f6af302fa80d059da595cd16af2b068ecdec
|
|
| MD5 |
b2a2b28e1fad1784482044060eaf8ae2
|
|
| BLAKE2b-256 |
53b623e8e9c5953fc46b60d8dbb2a7c3fc1c5a9d5645db8a422e344c756285f0
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
86f9cd0cbc35682db73a16fd3112f6af302fa80d059da595cd16af2b068ecdec - Sigstore transparency entry: 192799385
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 124.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70909ca97024ae12c2b22b0b25aa7e8356296d06bb0f592e6cb2f61839cc26ab
|
|
| MD5 |
f7f6a270cd32502afba84a0ecd1866e3
|
|
| BLAKE2b-256 |
1aa378efd83841c21c0981b563a0e0c73a5a39fb492bc11ad0c7d7b3cd8d90e5
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
70909ca97024ae12c2b22b0b25aa7e8356296d06bb0f592e6cb2f61839cc26ab - Sigstore transparency entry: 192799411
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 113.1 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2a6e2642bcbb5bc94a94b5503c6a501fa957e8cefb38777a3f4fa1106f8a679
|
|
| MD5 |
5fffa3b967dee2f32f1627d7d2263dbe
|
|
| BLAKE2b-256 |
db5569064c32ddb29852806106cbaef0c830d7ea71e9f8b58c7ae7eef1687b15
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp310-cp310-win_amd64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp310-cp310-win_amd64.whl -
Subject digest:
a2a6e2642bcbb5bc94a94b5503c6a501fa957e8cefb38777a3f4fa1106f8a679 - Sigstore transparency entry: 192799369
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp310-cp310-win32.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp310-cp310-win32.whl
- Upload date:
- Size: 94.4 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
362d6a851283459622df740c66de6aa276d0bde725c306accd8744d73642022a
|
|
| MD5 |
987765093cbeb2038fec8b93a404858c
|
|
| BLAKE2b-256 |
346c9388ddee753c7cac7f6834f2916d36378645eccdd1db8863fd714b521b5c
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp310-cp310-win32.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp310-cp310-win32.whl -
Subject digest:
362d6a851283459622df740c66de6aa276d0bde725c306accd8744d73642022a - Sigstore transparency entry: 192799410
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af0946126c7d52519432d922adef692556a5b0103f245f4bdfaa12ad04425d94
|
|
| MD5 |
c170bb840b0ccd98d67ff96a96d9ceab
|
|
| BLAKE2b-256 |
dad90067ca826c5860186df3011a6d438e6586a4126362312a3de3b85dba6366
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
af0946126c7d52519432d922adef692556a5b0103f245f4bdfaa12ad04425d94 - Sigstore transparency entry: 192799378
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcd2c688b01eefc205e289ad521dcb0149f8bc5f84ac865cdde85a44c77f70fd
|
|
| MD5 |
59935960cb85b2e1b8d120a9a010d568
|
|
| BLAKE2b-256 |
e66da8865f391087b3f3b2fc448d265a2f9cb82e712b6843762e368f6b66622a
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp310-cp310-musllinux_1_2_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp310-cp310-musllinux_1_2_i686.whl -
Subject digest:
fcd2c688b01eefc205e289ad521dcb0149f8bc5f84ac865cdde85a44c77f70fd - Sigstore transparency entry: 192799400
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad4b985150cd66098cc7251c4884c5ce8fd98a04e288998732fde4db8e64f540
|
|
| MD5 |
082bc40afc16c2ac2e26f491e2c85212
|
|
| BLAKE2b-256 |
a766cdb08fcc31ae6b64de9e6ad33e867a4bbc2be87e395a2ec2ce75287e432a
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
ad4b985150cd66098cc7251c4884c5ce8fd98a04e288998732fde4db8e64f540 - Sigstore transparency entry: 192799356
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7d07d0b23f9a53370804b5813ee506245e301267f6421e7ea399af838c2fc99
|
|
| MD5 |
50184707b2bf7054d4d9ee0feae27bdb
|
|
| BLAKE2b-256 |
d2a4e70d8b18d97c29eeb0b90a2a3d7010284ce4424ebd9415ae60a666dfd531
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
b7d07d0b23f9a53370804b5813ee506245e301267f6421e7ea399af838c2fc99 - Sigstore transparency entry: 192799383
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 123.1 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
916cea6e0106cad5535a541d3cc63e6441fbdf62e771f16358af6e5c1915519d
|
|
| MD5 |
3238871d404fabf87e7fedf845086916
|
|
| BLAKE2b-256 |
2bc8bf37d1c60baf08826f9a7f834f1f0073a58f5d4bcbaee26a815d7a27c37e
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
916cea6e0106cad5535a541d3cc63e6441fbdf62e771f16358af6e5c1915519d - Sigstore transparency entry: 192799434
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 113.7 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
533a0c72b7d61c38707d7ef22c98e2f2ae51988b0b615c02f4d51684a323ebda
|
|
| MD5 |
9739a55dd5f83099df39aaea3cb58f9b
|
|
| BLAKE2b-256 |
6f75b8eeeda60fb1bbf45aca5bebff1ef7073953b83fd92e110fbc595284892d
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp39-cp39-win_amd64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp39-cp39-win_amd64.whl -
Subject digest:
533a0c72b7d61c38707d7ef22c98e2f2ae51988b0b615c02f4d51684a323ebda - Sigstore transparency entry: 192799364
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp39-cp39-win32.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp39-cp39-win32.whl
- Upload date:
- Size: 95.0 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f287ee4a3cefde32ccc033322e0d084ac051a326a087582d44c91433343d52a9
|
|
| MD5 |
7791cd2bf6c33ab789bb852e493d8125
|
|
| BLAKE2b-256 |
9b733ee1785337e34735e6f72e1a262a892d002f16476f330009db51ccd9160c
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp39-cp39-win32.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp39-cp39-win32.whl -
Subject digest:
f287ee4a3cefde32ccc033322e0d084ac051a326a087582d44c91433343d52a9 - Sigstore transparency entry: 192799376
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ae4f19ff704b9826ccb12b46145e1f11ab0690166d6cd9e016a2958d34b45d1
|
|
| MD5 |
fcc66c2f21bca987e7351396cf31f135
|
|
| BLAKE2b-256 |
3b78b53bfd0072927bf14b49ef30b18a74f9186f7e3e8468594c9863187b7c24
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
0ae4f19ff704b9826ccb12b46145e1f11ab0690166d6cd9e016a2958d34b45d1 - Sigstore transparency entry: 192799382
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b3a284675a8e4e65e5ed5d46509704d75d5ba11abe9bb9819cf70b98dddf0f3
|
|
| MD5 |
6679e495b1d4d063b13c84c514a78c93
|
|
| BLAKE2b-256 |
7cc080892e273eccf4381973d374ad033d23e937b4220cd902229d65b9895c3f
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp39-cp39-musllinux_1_2_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp39-cp39-musllinux_1_2_i686.whl -
Subject digest:
5b3a284675a8e4e65e5ed5d46509704d75d5ba11abe9bb9819cf70b98dddf0f3 - Sigstore transparency entry: 192799431
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
993f528e7e555a940919fc6f77b44bc559b3f288a952168e9dbc9ab8f7547d77
|
|
| MD5 |
1d1722b18437d55f04d3f4391c626111
|
|
| BLAKE2b-256 |
5ee83afb5f9bdab77fd937d193e714e6aad7cd6b795774a85c09bdc1c12af741
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
993f528e7e555a940919fc6f77b44bc559b3f288a952168e9dbc9ab8f7547d77 - Sigstore transparency entry: 192799384
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f39ff4944902f06b1a284f18e3101efde53a3cba760020e930d1609059fed77
|
|
| MD5 |
f0904538d2a0ee88953781801cfc308a
|
|
| BLAKE2b-256 |
29ca8a6a58290b3a01d07e5c55b3654b10d0c00a3b7504dd7750496b770783c7
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
2f39ff4944902f06b1a284f18e3101efde53a3cba760020e930d1609059fed77 - Sigstore transparency entry: 192799404
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 123.7 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f50be062d8ba66be00202259046d922056bbe0df3c207bc9b7850c2594f8af82
|
|
| MD5 |
290299e515b6df2aa5c1c8a36a6369b3
|
|
| BLAKE2b-256 |
a497f14d4097a289cf5508820514387d522927a3bdb7e9aabcbbfe351939e7ab
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
f50be062d8ba66be00202259046d922056bbe0df3c207bc9b7850c2594f8af82 - Sigstore transparency entry: 192799414
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 114.5 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56cffb322ebee15b45dc439e4e6b64bacb9af8596e3dc6a130a14629aebaa84a
|
|
| MD5 |
63a3e76045d4d2e083b1f07837acc37c
|
|
| BLAKE2b-256 |
2b373cd203f5a77abd2d49fb8dc8c1fe820b29d419d22dc7f49e8fe26384b1c4
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp38-cp38-win_amd64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp38-cp38-win_amd64.whl -
Subject digest:
56cffb322ebee15b45dc439e4e6b64bacb9af8596e3dc6a130a14629aebaa84a - Sigstore transparency entry: 192799394
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp38-cp38-win32.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp38-cp38-win32.whl
- Upload date:
- Size: 95.4 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c5af2b0a54d8fa4ff6ad32c6b8eaafa8e890ac0546ed26ff9e37a7bed9f9594
|
|
| MD5 |
34c6a839b3884da05f83bb9159daa03e
|
|
| BLAKE2b-256 |
d1557bef474517e5194eed773946e0358115c824a4433c9f905a2390f8a4a15a
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp38-cp38-win32.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp38-cp38-win32.whl -
Subject digest:
9c5af2b0a54d8fa4ff6ad32c6b8eaafa8e890ac0546ed26ff9e37a7bed9f9594 - Sigstore transparency entry: 192799353
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
581dc3d557494f7e75e9d9ab95db80ccb71d51f33d588f95d9e26bc362b17038
|
|
| MD5 |
ec0ec9293aaa761b79b124eaf07887f4
|
|
| BLAKE2b-256 |
7680a540f885c3c966a76f4ae09679f6e2c89252d992cd29834be0b6c269c8ee
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl -
Subject digest:
581dc3d557494f7e75e9d9ab95db80ccb71d51f33d588f95d9e26bc362b17038 - Sigstore transparency entry: 192799424
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f62486d80e28d1eb835314c669cca85c70e45ec02f077a46ed1d22e091ce73c
|
|
| MD5 |
442dbc1910ec6fd7af914eca84e3014c
|
|
| BLAKE2b-256 |
a7293fe22bded2e768efe9f3eada2fcae2a52bba7f0742aca20df0ea07561ab9
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp38-cp38-musllinux_1_2_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp38-cp38-musllinux_1_2_i686.whl -
Subject digest:
3f62486d80e28d1eb835314c669cca85c70e45ec02f077a46ed1d22e091ce73c - Sigstore transparency entry: 192799354
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad5ca33747e9b97ea74189b28016298b853c079659e0330ff35df3646c609843
|
|
| MD5 |
61137857c657c03c4f17cf3a72d528d8
|
|
| BLAKE2b-256 |
aa77d48ba452fa10b0661ef96cf5c9b061d03cc54ecad50f4162477e66054399
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
ad5ca33747e9b97ea74189b28016298b853c079659e0330ff35df3646c609843 - Sigstore transparency entry: 192799396
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2025bb7ab736e614b3a44cc0e3da10827a4dfb3a79b41352af76fb2ed4d515e1
|
|
| MD5 |
3cc818dff5ec4a2aa1f4a8cef6bed7ea
|
|
| BLAKE2b-256 |
398cfad3c81a63d06894f9c17c46111f4ef5f1e7db03772a70fb0ffd21324306
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp38-cp38-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
2025bb7ab736e614b3a44cc0e3da10827a4dfb3a79b41352af76fb2ed4d515e1 - Sigstore transparency entry: 192799392
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 123.4 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdede32daaf013a6ef4e63195e80662a0382d823f80c27f37101615e4cf72edb
|
|
| MD5 |
af43d15a1c47908edfc9a60541a32675
|
|
| BLAKE2b-256 |
4fc1dd5dae642d4918dc1d57c8c83678f2f0eabc23f5e4db74ac1401a9ce6539
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp38-cp38-macosx_11_0_arm64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp38-cp38-macosx_11_0_arm64.whl -
Subject digest:
bdede32daaf013a6ef4e63195e80662a0382d823f80c27f37101615e4cf72edb - Sigstore transparency entry: 192799426
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp37-cp37m-win_amd64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 113.1 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d48cbbd82ece3c15b9cf2b7041fc73b263f76b8e126743bf2315dcdb6084a427
|
|
| MD5 |
e3ec0a8f99f49472170912eed513f842
|
|
| BLAKE2b-256 |
25321d4a855b7dee086e223766781ba1334bb010b699fe86edb6e730614d8617
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp37-cp37m-win_amd64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp37-cp37m-win_amd64.whl -
Subject digest:
d48cbbd82ece3c15b9cf2b7041fc73b263f76b8e126743bf2315dcdb6084a427 - Sigstore transparency entry: 192799368
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp37-cp37m-win32.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp37-cp37m-win32.whl
- Upload date:
- Size: 92.5 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cd8266c2078604fbc891b5eee1f7d7d388dfaaedab2da220f61016dd9a65945
|
|
| MD5 |
0638b8585354c4fcd03f66527c9a9c35
|
|
| BLAKE2b-256 |
19a1c4ded9129e53a73ba11b2f16a8e8708e0c5654f6fc415d9028d7fdf4c5f5
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp37-cp37m-win32.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp37-cp37m-win32.whl -
Subject digest:
2cd8266c2078604fbc891b5eee1f7d7d388dfaaedab2da220f61016dd9a65945 - Sigstore transparency entry: 192799373
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp37-cp37m-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp37-cp37m-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23266909c5d8c922cb159c4771ce940fd19cd387732d876d90c88ac87e6dcd5d
|
|
| MD5 |
57a57a56e6c9f1dfe1c811f17e8a80b4
|
|
| BLAKE2b-256 |
0b1c2cc90efe93e4c5122a52c160f855cb795bf4282b8b6dbb8307e9f62a9f21
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp37-cp37m-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp37-cp37m-musllinux_1_2_x86_64.whl -
Subject digest:
23266909c5d8c922cb159c4771ce940fd19cd387732d876d90c88ac87e6dcd5d - Sigstore transparency entry: 192799427
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp37-cp37m-musllinux_1_2_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp37-cp37m-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a2c58c89fee53f81d122c37d864e3f27ece3e7b2348ce0bf6a44671918f569a
|
|
| MD5 |
a5bc1977aaceda2f4f6391bb82089a26
|
|
| BLAKE2b-256 |
1e5c8863d29ccfc113f8cabe6078992d0928a9f5076a41bc01feb3a8c71544d8
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp37-cp37m-musllinux_1_2_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp37-cp37m-musllinux_1_2_i686.whl -
Subject digest:
7a2c58c89fee53f81d122c37d864e3f27ece3e7b2348ce0bf6a44671918f569a - Sigstore transparency entry: 192799428
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f582a5b0ce04d33e69165ded846a8d5573e44e28ba6a996ecbec9f175b4fba2d
|
|
| MD5 |
5e1359aa5e93db7d714d57aaa5d6ff11
|
|
| BLAKE2b-256 |
6bb94fd97d18e5f797e27363651db598c79db6feaaa67e6971f1dd1bebf077ea
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
f582a5b0ce04d33e69165ded846a8d5573e44e28ba6a996ecbec9f175b4fba2d - Sigstore transparency entry: 192799405
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c059ed0a3cdd1c749220bb69505c224cc2497ff230bdc5e96bd6a77897fcd3f7
|
|
| MD5 |
0c5f5481852856642913af627ffa1c37
|
|
| BLAKE2b-256 |
c34f989d3889c1270e8b5de7872cbb60a4b4a01e69e18a5108fd9914b6f28f59
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp37-cp37m-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
c059ed0a3cdd1c749220bb69505c224cc2497ff230bdc5e96bd6a77897fcd3f7 - Sigstore transparency entry: 192799393
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp36-cp36m-win_amd64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 129.7 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e4c08a6a5e932cc03b2891c0d4aa3923ed2fdd68c559cc155725bd7f55459d3
|
|
| MD5 |
5bde22f3c205a3c3c39d28955ee4294a
|
|
| BLAKE2b-256 |
ef199733902f2a55a2b14558259855d69999af1037f5283f1b524420fc633618
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp36-cp36m-win_amd64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp36-cp36m-win_amd64.whl -
Subject digest:
9e4c08a6a5e932cc03b2891c0d4aa3923ed2fdd68c559cc155725bd7f55459d3 - Sigstore transparency entry: 192799403
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp36-cp36m-win32.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp36-cp36m-win32.whl
- Upload date:
- Size: 104.0 kB
- Tags: CPython 3.6m, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19899b8df3cea5277019a8e3cc6461c8c64a3c8b53c2284c36c0afc8130ca36d
|
|
| MD5 |
bb013b3f4b24d99dcdfaad284c0768bc
|
|
| BLAKE2b-256 |
f21b633d3579b448725db0296a72ffc0986e2e70e526a01ed7e5a4bea45fe633
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp36-cp36m-win32.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp36-cp36m-win32.whl -
Subject digest:
19899b8df3cea5277019a8e3cc6461c8c64a3c8b53c2284c36c0afc8130ca36d - Sigstore transparency entry: 192799352
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp36-cp36m-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp36-cp36m-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.6m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf5e0990db18efa60d8876b56526069da0d08d1deac0ff4107319213edd90b9d
|
|
| MD5 |
f8c7149f82b92587f7b613966f96c3f9
|
|
| BLAKE2b-256 |
a969946d8efe6cc00faeeafa1cb5e01a2d2aeebf4278ad71bddca0e5f926a9a4
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp36-cp36m-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp36-cp36m-musllinux_1_2_x86_64.whl -
Subject digest:
cf5e0990db18efa60d8876b56526069da0d08d1deac0ff4107319213edd90b9d - Sigstore transparency entry: 192799409
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp36-cp36m-musllinux_1_2_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp36-cp36m-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.6m, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91f493146b4768d1a706d950969880940c80f20bbb5fe63bcf9e31b96756e793
|
|
| MD5 |
44abdcfa8f2d40d64bb85bfe06ff5567
|
|
| BLAKE2b-256 |
b80c884443c246638018cadd57b78d34d236e8e7d1d48f61fcabdbb2ab51b097
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp36-cp36m-musllinux_1_2_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp36-cp36m-musllinux_1_2_i686.whl -
Subject digest:
91f493146b4768d1a706d950969880940c80f20bbb5fe63bcf9e31b96756e793 - Sigstore transparency entry: 192799374
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
067e734217f49ea3b3e03b422408e9c6aea6bad382fbef20386710638271e2f7
|
|
| MD5 |
bab4e4e135b8b18a613373cc6a194635
|
|
| BLAKE2b-256 |
1a8e4ab33852bff138390cd445fa15acee7e1f3fe9f243596aad6972543dd5c4
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp36-cp36m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
067e734217f49ea3b3e03b422408e9c6aea6bad382fbef20386710638271e2f7 - Sigstore transparency entry: 192799361
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type:
File details
Details for the file thinhpf-0.1.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thinhpf-0.1.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d31d6983d1ccd2c31fef6417ab7d50e4a8ff30e1afadfb34cf710c6536eaec9
|
|
| MD5 |
8fbf37f7e01e7b6b5a42040f5a132526
|
|
| BLAKE2b-256 |
8d8415a0f962b75749bd484375a660cb3c4d9cd84cb1801cd93ddfcff379435d
|
Provenance
The following attestation bundles were made for thinhpf-0.1.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on Skielex/thinhpf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thinhpf-0.1.2-cp36-cp36m-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
5d31d6983d1ccd2c31fef6417ab7d50e4a8ff30e1afadfb34cf710c6536eaec9 - Sigstore transparency entry: 192799429
- Sigstore integration time:
-
Permalink:
Skielex/thinhpf@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Skielex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cd02bb94bc2a19f1d4eb16d0c9ab347459683681 -
Trigger Event:
release
-
Statement type: