Python wrapper for the pikchr markup language.
Project description
pypikchr
pypikchr is a small Python wrapper for the Pikchr diagramming language. It allows you to embed Pikchr diagrams within Python applications.
The goal is to eventually support the range of features available in pikchr, in a "Pythonic" way. See the pikchr docs for more information and examples.
License
This project is licensed under the GNU Affero General Public License v3.0 (AGPLv3). You can freely use, modify, and distribute the software under the terms of this license, but any modification must also be shared under the same license, and the source code must be made available to users interacting with the software over the network.
Third-Party Dependencies
This project uses code from the following third-party libraries:
- Pikchr: Uses code from the Pikchr diagramming tool, which is licensed under the Zero-Clause BSD License.
- LEMON: Uses code from the LEMON parser generator, which is in the public domain.
Third-Party Licenses
- Pikchr is licensed under the Zero-Clause BSD License, which allows you to freely use, modify, and distribute the software with no restrictions.
- LEMON is in the public domain, meaning there are no restrictions on its use.
Installation
Install using pip:
pip install . [--prefix="/path/to/installation"]
Basic Usage
Example for usage after installation.
Construct basic sequences
from pypikchr.diagram import *
# Create a diagram
d = Diagram(direction=Direction.down)
# Create some objects - the input string is the text you see in the shape
# Provide a label so it is easy to refer to it when chaining together
# Be careful! Labels must be capital letters!
b1: Box = Box("Box 1").label("B1")
# Can also adjust fill
c1: Circle = Circle("Circle 1").label("C1").fill("orange")
# Add shapes into the diagram
d.add(b1)
d.add(c1)
# Link shapes together
d.add(Arrow().from_pos(b1.s).to_pos(c1.n).dashed())
# Generated markdown
print(d.md)
# Generated SVG HTML
print(d)
The above script will print the following to console:
B1: box "Box 1";
C1: circle "Circle 1" fill orange;
arrow from b1.s to c1.n dashed
<svg xmlns='http://www.w3.org/2000/svg' class="" viewBox="0 0 112.32 148.32">
<path d="M2.16,74.16L110.16,74.16L110.16,2.16L2.16,2.16Z" style="fill:none;stroke-width:2.16;stroke:rgb(0,0,0);" />
<text x="56.16" y="38.16" text-anchor="middle" fill="rgb(0,0,0)" dominant-baseline="central">Box 1</text>
<circle cx="56.16" cy="110.16" r="36" style="fill:rgb(255,165,0);stroke-width:2.16;stroke:rgb(0,0,0);" />
<text x="56.16" y="110.16" text-anchor="middle" fill="rgb(0,0,0)" dominant-baseline="central">Circle 1</text>
<path d="M56.16,74.16L56.16,74.16" style="fill:none;stroke-width:2.16;stroke:rgb(0,0,0);stroke-dasharray:7.2,7.2;" />
</svg>
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 pypikchr-0.1.0.tar.gz.
File metadata
- Download URL: pypikchr-0.1.0.tar.gz
- Upload date:
- Size: 76.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f652fd63afd31354a6ef9ef12755859bd4e51ac972d78751d880c184fa78fe02
|
|
| MD5 |
a05185cb301c9907d63b0384318b3a2b
|
|
| BLAKE2b-256 |
d96553fa8a3ab4348209b0260016b5fa305a52f43a6b5298c9ed6facfe175e2b
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0.tar.gz:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0.tar.gz -
Subject digest:
f652fd63afd31354a6ef9ef12755859bd4e51ac972d78751d880c184fa78fe02 - Sigstore transparency entry: 907319163
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 56.1 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1079816f764dad3fdf9ef6ec2483ed402792510da22163f9fa4cedd656429dc
|
|
| MD5 |
a850658f9b8f55d79dffef8526907d36
|
|
| BLAKE2b-256 |
3d196f23789eadc9e3e44ba54a0715dddf1b5a004f152589dd27f71d042562d4
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp313-cp313-win_amd64.whl -
Subject digest:
c1079816f764dad3fdf9ef6ec2483ed402792510da22163f9fa4cedd656429dc - Sigstore transparency entry: 907319681
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp313-cp313-win32.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp313-cp313-win32.whl
- Upload date:
- Size: 50.2 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89d03ff067a321326a20794c4cc128565ad1f1803e7f70e8e20017aef48be5f7
|
|
| MD5 |
0a23dfaf13cc9d9cb3876edf476c81ee
|
|
| BLAKE2b-256 |
2a3c06114464f3769448e1b6a5d402571e2d12fa77f6322da81603e1796b1a16
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp313-cp313-win32.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp313-cp313-win32.whl -
Subject digest:
89d03ff067a321326a20794c4cc128565ad1f1803e7f70e8e20017aef48be5f7 - Sigstore transparency entry: 907319817
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 198.0 kB
- Tags: CPython 3.13, 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 |
ab1ad5f0c0c586475870d4c3feb72fe05c4d40792913d204d59eef719c4ebb59
|
|
| MD5 |
dd1f0377d612dbbb9ca19c83e298a4c4
|
|
| BLAKE2b-256 |
3f08917f6a9a2fa521309f5e847d0d155ebebb368a863f6933be8ecdfceb4342
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
ab1ad5f0c0c586475870d4c3feb72fe05c4d40792913d204d59eef719c4ebb59 - Sigstore transparency entry: 907319425
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 195.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a386ec22acb9bbdb1ace11fa0be6cc8b80a1e820742be529e00a3f2c4e81b080
|
|
| MD5 |
7576fed7ef389bb9776b4fbf7881b604
|
|
| BLAKE2b-256 |
2a368e4cb59a4278543670d8c7c05ebb3607d6a86b4f8aecd9d6fa89e9f99740
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp313-cp313-musllinux_1_2_i686.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp313-cp313-musllinux_1_2_i686.whl -
Subject digest:
a386ec22acb9bbdb1ace11fa0be6cc8b80a1e820742be529e00a3f2c4e81b080 - Sigstore transparency entry: 907319349
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 193.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9079e7ddec0fedfa27eb536023192c692587fb043bfb113580ad40a94d6a2512
|
|
| MD5 |
10ef1533562507065bbaf74e2867e22c
|
|
| BLAKE2b-256 |
733031ab7903af7e29201ca8341d3a3b07b6c5472d8089852aac11910f65791f
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
9079e7ddec0fedfa27eb536023192c692587fb043bfb113580ad40a94d6a2512 - Sigstore transparency entry: 907319795
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 181.7 kB
- 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.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05f878273c3e2b67e3b0264edf3565417f3730c2120f6422822d13594e06cd5b
|
|
| MD5 |
4b7a461e9ba2f2dc5a335721930e8077
|
|
| BLAKE2b-256 |
1a760bb283ce30c4c0dc751159b42118b221e68bd77a181d8c30b291b297d030
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
05f878273c3e2b67e3b0264edf3565417f3730c2120f6422822d13594e06cd5b - Sigstore transparency entry: 907319704
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 52.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ee2d710fcfe37053dae583f65fcdba35034fa39cbf86f4ba00030a5f923db15
|
|
| MD5 |
01135ce10040c8a1d633c4b4b2f91c35
|
|
| BLAKE2b-256 |
2a9e1a70e85e22dc0554672f167d07ae581dbbaea55f2daad8d2bce6e0b9b99a
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
3ee2d710fcfe37053dae583f65fcdba35034fa39cbf86f4ba00030a5f923db15 - Sigstore transparency entry: 907319206
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 56.1 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 |
a2538af744a9f2ec78e60e3b272ef7aecef674ab0c510301af9a391d707e0713
|
|
| MD5 |
fd6051b5bea6a99d1e13a6e0f023e9ab
|
|
| BLAKE2b-256 |
a9306bccf303f80aeff2fa4539ab4c1830a939f8be98cea5bc139f06990de440
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp312-cp312-win_amd64.whl -
Subject digest:
a2538af744a9f2ec78e60e3b272ef7aecef674ab0c510301af9a391d707e0713 - Sigstore transparency entry: 907319636
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp312-cp312-win32.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp312-cp312-win32.whl
- Upload date:
- Size: 50.2 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 |
b428ab82aef34de9bdc477cb28f7dd11dd43080504b9d1434cb9e540565963ab
|
|
| MD5 |
e30f64f1ee8723192eca9d9c172a6310
|
|
| BLAKE2b-256 |
2c5b82852700e52fb280cf5ac72d8fb249284ab405af2c77e7b51c7bd40f8667
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp312-cp312-win32.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp312-cp312-win32.whl -
Subject digest:
b428ab82aef34de9bdc477cb28f7dd11dd43080504b9d1434cb9e540565963ab - Sigstore transparency entry: 907319776
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 198.0 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 |
b889362d06189e0228e58a58942db9ff5c04aff07f220d45504afabeec0e5d03
|
|
| MD5 |
2a5b3c9d161d1d7cc8d19c942af34828
|
|
| BLAKE2b-256 |
33f6f72701b7f709bce073fde20f321530fc6dc9df8c83c4b76e68d728309f2d
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
b889362d06189e0228e58a58942db9ff5c04aff07f220d45504afabeec0e5d03 - Sigstore transparency entry: 907319226
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 195.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03d6a95d16371c8a0ef8256037c7223678bec20b7dccf53cad097a25f1a94887
|
|
| MD5 |
4a3f3c0125fe7affbd0c8e10a6027df0
|
|
| BLAKE2b-256 |
80bb4ed3f2acc358e44e50369bafd0b11d1c6c6040df92ebce5055c2f6d5d38f
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp312-cp312-musllinux_1_2_i686.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
03d6a95d16371c8a0ef8256037c7223678bec20b7dccf53cad097a25f1a94887 - Sigstore transparency entry: 907319565
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 193.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5180a75985223828557b5c64cfdb1b6486bc8a241cc0b66d6a387acec00c4c48
|
|
| MD5 |
d143e3bb55d654a4fa2982e8201ccd60
|
|
| BLAKE2b-256 |
3d201606188ded8941e2cfa67a6b7fe7420a9efe42226a067434e456da9cbd51
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
5180a75985223828557b5c64cfdb1b6486bc8a241cc0b66d6a387acec00c4c48 - Sigstore transparency entry: 907319622
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 181.7 kB
- 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.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c8152b25f32cf9a76da17f9dac28d72845286b33ce7e277ef1709560432818f
|
|
| MD5 |
e2b619ed95f8361a18357a7dba27f800
|
|
| BLAKE2b-256 |
b7a3742316f457821eb14d1fa6ebfe81f9bc8a7da93ba02bc60ee5e53a78e883
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
3c8152b25f32cf9a76da17f9dac28d72845286b33ce7e277ef1709560432818f - Sigstore transparency entry: 907319398
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 52.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abc6941bc018edff89df47f7c9e2ade771fdd75e3823645488065d6d4171bcb3
|
|
| MD5 |
eb651b1c9d95ad247069bdf2d51447a7
|
|
| BLAKE2b-256 |
b36f571a5dd32015d14d98d0abed1c5aef6259a350c3980e92e0ee9aa915c708
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
abc6941bc018edff89df47f7c9e2ade771fdd75e3823645488065d6d4171bcb3 - Sigstore transparency entry: 907319410
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 56.1 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 |
fed0cbd3526911e4bc315b89e92519d0f129fdc12ca9bdbfb976697282cd7d72
|
|
| MD5 |
763a2cfa4c5b59ae8f402c35bbca2ce8
|
|
| BLAKE2b-256 |
08faf69e9375440449f9953130cd804ac3c91a2b6d003e8020a8a4755b1127bd
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp311-cp311-win_amd64.whl -
Subject digest:
fed0cbd3526911e4bc315b89e92519d0f129fdc12ca9bdbfb976697282cd7d72 - Sigstore transparency entry: 907319475
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp311-cp311-win32.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp311-cp311-win32.whl
- Upload date:
- Size: 50.2 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 |
8b6cf4e155c1c8f84be4a6415eda4860859a72f95e658d219826c38dc6f881d0
|
|
| MD5 |
43c41e28297d2fd338131906e4ea70f2
|
|
| BLAKE2b-256 |
88cf85cd0db03aa19d5adeb02a8eb3b6f43ab931b809c3c5910de3a0ae8ce947
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp311-cp311-win32.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp311-cp311-win32.whl -
Subject digest:
8b6cf4e155c1c8f84be4a6415eda4860859a72f95e658d219826c38dc6f881d0 - Sigstore transparency entry: 907319530
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 196.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 |
792d1acaf172e75f7fb5ad4adad149417e9d6fc8f6b77f538c0d834a18d3ddc6
|
|
| MD5 |
39d0bd128ec94ba1163ed7b053df8253
|
|
| BLAKE2b-256 |
c37fd128d235e1db76017508bb700da79ea06f18f8496e3312184d0de44a8db5
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
792d1acaf172e75f7fb5ad4adad149417e9d6fc8f6b77f538c0d834a18d3ddc6 - Sigstore transparency entry: 907319260
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 195.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76450fd6ba0cea146938b7881adeba97d602e7e26f4f90ffe0e759c13ca02484
|
|
| MD5 |
101cd44cbafb4f47859d8f7c1d9c9926
|
|
| BLAKE2b-256 |
f61b044e554de5edeb30e564ffdf7371ef854079f4cc3e5e4924e20635f0543f
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp311-cp311-musllinux_1_2_i686.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp311-cp311-musllinux_1_2_i686.whl -
Subject digest:
76450fd6ba0cea146938b7881adeba97d602e7e26f4f90ffe0e759c13ca02484 - Sigstore transparency entry: 907319740
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 192.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d60f9e185abe7720ee928e0f0e3a12262b73ac49bdab19125b7877dc495da80
|
|
| MD5 |
19e8866ac493368c36e3be5e1d35da02
|
|
| BLAKE2b-256 |
175ece71c228247d46b11b48c22da3e0e04135d6eef2bd6e3bf64b3612af16b9
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
5d60f9e185abe7720ee928e0f0e3a12262b73ac49bdab19125b7877dc495da80 - Sigstore transparency entry: 907319240
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 181.2 kB
- 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.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7c0b722470beebb1545e65d13ee86f1e5a42e1d2ea011294596c5e7ef3f199f
|
|
| MD5 |
6e04bcb8138a8ad4ee8bd3c652bcfb56
|
|
| BLAKE2b-256 |
f034b136ee1ce681455dde42890e63f01caaeb4b77ea32b48cd242ef81ac3d68
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
a7c0b722470beebb1545e65d13ee86f1e5a42e1d2ea011294596c5e7ef3f199f - Sigstore transparency entry: 907319385
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 52.4 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b8322a5860fb70126c8819a8d6a931fdfc0a5371987e32a73930f6cfcb244e9
|
|
| MD5 |
481c8fa36d61dac34bd4bd31765fa0d3
|
|
| BLAKE2b-256 |
ab8d23585e4f60915721431857d3c2b72302f0502861da1bb3fff454182c4207
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
2b8322a5860fb70126c8819a8d6a931fdfc0a5371987e32a73930f6cfcb244e9 - Sigstore transparency entry: 907319274
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 56.1 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 |
e511da128a4c9c1c56f49bc9345c98d1481b76fde4561368ee1d81cb1d38135c
|
|
| MD5 |
de1b7f4b8fafeca3f3e47707d4005b89
|
|
| BLAKE2b-256 |
dba6f0ef634b1b8de533468b3e05efccc4d73a055ec7ab3280ac6f7c6b958c2a
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp310-cp310-win_amd64.whl -
Subject digest:
e511da128a4c9c1c56f49bc9345c98d1481b76fde4561368ee1d81cb1d38135c - Sigstore transparency entry: 907319696
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp310-cp310-win32.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp310-cp310-win32.whl
- Upload date:
- Size: 50.2 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 |
3b56b9efe5f56c93b0d5d07ec926c091cf2293eb96771bc42014227f911ccb00
|
|
| MD5 |
4aabbd3bb82efb0f5f4b5a7681374e07
|
|
| BLAKE2b-256 |
4f2cba97e8492073051ba2f04133075373e50e116d78197aec978316583c9edb
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp310-cp310-win32.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp310-cp310-win32.whl -
Subject digest:
3b56b9efe5f56c93b0d5d07ec926c091cf2293eb96771bc42014227f911ccb00 - Sigstore transparency entry: 907319831
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 196.6 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 |
c62149be7b51de24b9edf870e7ed2edc8054740eff1edc33b32353aef57ecfb4
|
|
| MD5 |
8a507d133bd4fe2a34328d6e2ed39856
|
|
| BLAKE2b-256 |
912dde334b79a6f64070220c9a39b6208131364fb3e86685033ce6bd3f654f2e
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
c62149be7b51de24b9edf870e7ed2edc8054740eff1edc33b32353aef57ecfb4 - Sigstore transparency entry: 907319671
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 195.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e299d990ecfc9da016ebba66513ed02eb54a685ac6eadbacf569df6fb18eee2
|
|
| MD5 |
a48e9f48ae0f6b129566e947a230bc17
|
|
| BLAKE2b-256 |
9fc2d32e1cb70e92333e81be2ae4abf88ca386969b74434e3888f2ff619165d6
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp310-cp310-musllinux_1_2_i686.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp310-cp310-musllinux_1_2_i686.whl -
Subject digest:
5e299d990ecfc9da016ebba66513ed02eb54a685ac6eadbacf569df6fb18eee2 - Sigstore transparency entry: 907319657
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 192.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c479b7bcdb7beec5cc6c03888fceec3151281398dcca742d954c08973a621c35
|
|
| MD5 |
964c933e972395f02639e77fa8ee53ad
|
|
| BLAKE2b-256 |
6bef53bb03c370518f8a5254f21320bf4476c4ee6481b794bb6cf3685bb17497
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
c479b7bcdb7beec5cc6c03888fceec3151281398dcca742d954c08973a621c35 - Sigstore transparency entry: 907319547
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 181.2 kB
- 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.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62491116852549947704955dfedb0d4e807771a55e2a4db8f6cf1cc028a6fd3f
|
|
| MD5 |
6579974f644ed5a02ff59b9fa7fdd32d
|
|
| BLAKE2b-256 |
b2182c04c570ff71d507098427e55a89326203aa83691a590a1e538f0b625abd
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
62491116852549947704955dfedb0d4e807771a55e2a4db8f6cf1cc028a6fd3f - Sigstore transparency entry: 907319329
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 52.4 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd472325642f23c7340de050133b5ec0cf3ab2307bf5de67da0b425d0583f1d3
|
|
| MD5 |
9d645d7fbe6c02313c96d80ccdc8e093
|
|
| BLAKE2b-256 |
bc9d60f16505ab19582912a5790e01277a03851687431e4429b809880310be1b
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
dd472325642f23c7340de050133b5ec0cf3ab2307bf5de67da0b425d0583f1d3 - Sigstore transparency entry: 907319369
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 56.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bccfe5590aec7002f037d1f6375ba58d215e38cb06816a112a314f70efb7819e
|
|
| MD5 |
4ad8aee967889a37a42c282a43c2ea3c
|
|
| BLAKE2b-256 |
da83641c8ab7cfd257b1e9f0b97627ea57f1662403468aa492fb0c240683f41c
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp39-cp39-win_amd64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp39-cp39-win_amd64.whl -
Subject digest:
bccfe5590aec7002f037d1f6375ba58d215e38cb06816a112a314f70efb7819e - Sigstore transparency entry: 907319460
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp39-cp39-win32.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp39-cp39-win32.whl
- Upload date:
- Size: 50.2 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f96750def8aaad6b0abc9ebd26b030dc4e2ae7ddca49d343761944c6621366b5
|
|
| MD5 |
cb1f84c7af56beb6ebbbb81c3e4bc139
|
|
| BLAKE2b-256 |
7b4d39f0d6b9f2ab594c7d8854ed5bb47f995ba5b0908e897c53a665118c4db8
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp39-cp39-win32.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp39-cp39-win32.whl -
Subject digest:
f96750def8aaad6b0abc9ebd26b030dc4e2ae7ddca49d343761944c6621366b5 - Sigstore transparency entry: 907319718
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 196.6 kB
- Tags: CPython 3.9, 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 |
803796dd3b5640a7cd8bf837f262d26a2b654d2c4e3fb541a5449b783b87122e
|
|
| MD5 |
1576fb88dcfcfde7713d812e62c4fee3
|
|
| BLAKE2b-256 |
cc1379ed9c5fb36dbc32d674b88fb4e2679919895f331af3e9f92ab08553e4eb
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
803796dd3b5640a7cd8bf837f262d26a2b654d2c4e3fb541a5449b783b87122e - Sigstore transparency entry: 907319175
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 195.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b88f97a9d38fc6e3e4efc61e490e7cebeaa0bbbdff79284c46f7333a1dde450f
|
|
| MD5 |
6e9a6aad44eb653344caaa7eee862221
|
|
| BLAKE2b-256 |
5289500eb7e437a80b338a3f5ca39719d88bde5bae6c5526b0ef3827b2ac1734
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp39-cp39-musllinux_1_2_i686.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp39-cp39-musllinux_1_2_i686.whl -
Subject digest:
b88f97a9d38fc6e3e4efc61e490e7cebeaa0bbbdff79284c46f7333a1dde450f - Sigstore transparency entry: 907319287
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 192.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e47d1f36dbca0c79ad21ebed5284ebae0cae6835eef3d8237799e2c97c2f7daf
|
|
| MD5 |
dc5211bd639f1e86a5195b4f8d7eaf01
|
|
| BLAKE2b-256 |
25b7b0198c86d10135593b229c07da9001266668964f79b6112fe9d1726dc7dc
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
e47d1f36dbca0c79ad21ebed5284ebae0cae6835eef3d8237799e2c97c2f7daf - Sigstore transparency entry: 907319754
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 181.2 kB
- 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.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1672a86c1e00435f0a563605ecb3082bef235eb2e35a66f4b74ade03dc9ad491
|
|
| MD5 |
cedb341043598519c9492e29c5e7c7db
|
|
| BLAKE2b-256 |
b7fe550f2462cf5cff3d01f80260387dd45f6ad96b70922a811fe1f51ee5111b
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
1672a86c1e00435f0a563605ecb3082bef235eb2e35a66f4b74ade03dc9ad491 - Sigstore transparency entry: 907319593
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 52.4 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e68bf6b61beaa53e2d4f5d5059437bb1e8892ed060e4e3edbb9ebf4adbb82617
|
|
| MD5 |
02384be3e32390446bec81dd8f06b3ac
|
|
| BLAKE2b-256 |
1e35d73ac72cf3edf4748a39941aac9fd4c815bb024852ac0f79092e6344436a
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
e68bf6b61beaa53e2d4f5d5059437bb1e8892ed060e4e3edbb9ebf4adbb82617 - Sigstore transparency entry: 907319189
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 56.1 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c62571c5cf875cb1130e8c37b2e9c31a2f9e409ce7f78c08bcf156bcd17b0cca
|
|
| MD5 |
ed962611fd3ca77c1726203e998ab8f9
|
|
| BLAKE2b-256 |
c2b113d5d32b74b6d42439b2bb9fcd2c2e153ac75f943e561d70a58654a175d4
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp38-cp38-win_amd64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp38-cp38-win_amd64.whl -
Subject digest:
c62571c5cf875cb1130e8c37b2e9c31a2f9e409ce7f78c08bcf156bcd17b0cca - Sigstore transparency entry: 907319318
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp38-cp38-win32.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp38-cp38-win32.whl
- Upload date:
- Size: 50.2 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94dac6170a6cca50f8ac4e96c980deab3760fec55a25b950fd357ad4765f329f
|
|
| MD5 |
d3ac20d3d3d41a8c107bc80e75db82cc
|
|
| BLAKE2b-256 |
2841305818985394940bd5c1544449a6d589eb10f3fb72db2f09c986ace508d2
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp38-cp38-win32.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp38-cp38-win32.whl -
Subject digest:
94dac6170a6cca50f8ac4e96c980deab3760fec55a25b950fd357ad4765f329f - Sigstore transparency entry: 907319580
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 196.8 kB
- Tags: CPython 3.8, 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 |
471e80e9d82900b29516129915ec91980c5e4a26f2e7baca6eee5ee146ca2d6a
|
|
| MD5 |
afbe36112fc21b4fec1a8f93a75b3793
|
|
| BLAKE2b-256 |
72172eca1d9fe9aacb5bcb7294f849389b4e3bf0c7a676c92462d559647bfad4
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl -
Subject digest:
471e80e9d82900b29516129915ec91980c5e4a26f2e7baca6eee5ee146ca2d6a - Sigstore transparency entry: 907319309
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 195.6 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62d586c19a15becdb7bec08d75ae74f102234ca69584b51d33465a0d292347e0
|
|
| MD5 |
3eb5aa23686b27986cc2a17191511ad6
|
|
| BLAKE2b-256 |
669a6caa198a5e252e6a5570bbc2580ee8ce6bb6cb5194f86f78b4e321d70132
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp38-cp38-musllinux_1_2_i686.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp38-cp38-musllinux_1_2_i686.whl -
Subject digest:
62d586c19a15becdb7bec08d75ae74f102234ca69584b51d33465a0d292347e0 - Sigstore transparency entry: 907319519
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 193.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b9a92797de7e43ed9af6d749039c2b5870a083c7a405cfb734e71d59e308c3d
|
|
| MD5 |
0d9e169ad3470dc995d341a708419947
|
|
| BLAKE2b-256 |
b64a44a3aaa8905c892acf6ea54a9e3b33a5b54a2095cf74246cf3a9241b1543
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
9b9a92797de7e43ed9af6d749039c2b5870a083c7a405cfb734e71d59e308c3d - Sigstore transparency entry: 907319600
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 181.9 kB
- 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.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33a72d1f709ecbd4162df9517a7a92e47e4b13fc6e35ffaf79d6ce41b7e453ff
|
|
| MD5 |
10cea4d1a3521d0c30b2d9151e633a40
|
|
| BLAKE2b-256 |
294708780740a71495c3631612cdb6e547d4f39a832b9472e83e6781e4df972e
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
33a72d1f709ecbd4162df9517a7a92e47e4b13fc6e35ffaf79d6ce41b7e453ff - Sigstore transparency entry: 907319444
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pypikchr-0.1.0-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: pypikchr-0.1.0-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 52.4 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
649b5333a2b3991bcd127b5228088d1ba74bcd94296c20b41946c1999a33fe93
|
|
| MD5 |
ebad9a59a7b7b7ee9657a13caa706bd4
|
|
| BLAKE2b-256 |
05db98a3f319f57b9ab4d3ed4763f337a043b0e7cc81b8059046ad735ecf7e6c
|
Provenance
The following attestation bundles were made for pypikchr-0.1.0-cp38-cp38-macosx_11_0_arm64.whl:
Publisher:
release.yml on gadorlhiac/pypikchr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pypikchr-0.1.0-cp38-cp38-macosx_11_0_arm64.whl -
Subject digest:
649b5333a2b3991bcd127b5228088d1ba74bcd94296c20b41946c1999a33fe93 - Sigstore transparency entry: 907319497
- Sigstore integration time:
-
Permalink:
gadorlhiac/pypikchr@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/gadorlhiac
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77643d9765db2c141f0b29b8062e0cb1cfa5c696 -
Trigger Event:
push
-
Statement type: