Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pypikchr-0.2.0.tar.gz (77.7 kB view details)

Uploaded Source

Built Distributions

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

pypikchr-0.2.0-cp313-cp313-win_amd64.whl (58.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pypikchr-0.2.0-cp313-cp313-win32.whl (52.4 kB view details)

Uploaded CPython 3.13Windows x86

pypikchr-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (200.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pypikchr-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (198.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pypikchr-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (195.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pypikchr-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (183.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pypikchr-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (54.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pypikchr-0.2.0-cp312-cp312-win_amd64.whl (58.2 kB view details)

Uploaded CPython 3.12Windows x86-64

pypikchr-0.2.0-cp312-cp312-win32.whl (52.4 kB view details)

Uploaded CPython 3.12Windows x86

pypikchr-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (200.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pypikchr-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (198.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pypikchr-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (195.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pypikchr-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (183.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pypikchr-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (54.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pypikchr-0.2.0-cp311-cp311-win_amd64.whl (58.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pypikchr-0.2.0-cp311-cp311-win32.whl (52.4 kB view details)

Uploaded CPython 3.11Windows x86

pypikchr-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (198.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pypikchr-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (197.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pypikchr-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pypikchr-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (183.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pypikchr-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (54.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pypikchr-0.2.0-cp310-cp310-win_amd64.whl (58.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pypikchr-0.2.0-cp310-cp310-win32.whl (52.4 kB view details)

Uploaded CPython 3.10Windows x86

pypikchr-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (198.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pypikchr-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (197.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pypikchr-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pypikchr-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (183.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pypikchr-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (54.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pypikchr-0.2.0-cp39-cp39-win_amd64.whl (58.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pypikchr-0.2.0-cp39-cp39-win32.whl (52.4 kB view details)

Uploaded CPython 3.9Windows x86

pypikchr-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (198.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pypikchr-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (197.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pypikchr-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pypikchr-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (183.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pypikchr-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (54.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pypikchr-0.2.0-cp38-cp38-win_amd64.whl (58.2 kB view details)

Uploaded CPython 3.8Windows x86-64

pypikchr-0.2.0-cp38-cp38-win32.whl (52.4 kB view details)

Uploaded CPython 3.8Windows x86

pypikchr-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (199.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pypikchr-0.2.0-cp38-cp38-musllinux_1_2_i686.whl (197.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pypikchr-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (195.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pypikchr-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (184.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pypikchr-0.2.0-cp38-cp38-macosx_11_0_arm64.whl (54.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file pypikchr-0.2.0.tar.gz.

File metadata

  • Download URL: pypikchr-0.2.0.tar.gz
  • Upload date:
  • Size: 77.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pypikchr-0.2.0.tar.gz
Algorithm Hash digest
SHA256 cd3d7051cff3f3191a7254a39de6ffcceb34567cca1de023c8c3bf0377b30dc6
MD5 c3a96eca3b2e580ab0fe4cf20b952471
BLAKE2b-256 a90068d3085208a481cbcc2f215924a071f00b9ebf50fdf588f17e893c4b71ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0.tar.gz:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pypikchr-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 58.2 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

Hashes for pypikchr-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 134effb2bc2f4c8565205bf4819b0e5f82ecaf25c3f51ecc3654bc896e062fd8
MD5 f83dba275d9548cd1b4edefdbd5fd353
BLAKE2b-256 08ae6dfebc9edb867aa44c3d8020c1c2d02fef67ef02160fbba6d64087949cac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pypikchr-0.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 52.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pypikchr-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9939a80fd8815385854efdc576a33232579e0613cdfa94c29d9bb0017b49ae2a
MD5 3bf3b4feb2f5cf6da6a66b43e917da8b
BLAKE2b-256 a210b4cb0635b4468362560f274d2d037d074c978695838855a325e40625f5d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp313-cp313-win32.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16b9bc7608aaa615ec0e8b6b92330f0e0807368943223d0bb1a6a434f9669664
MD5 2fc6a5cac27be1a1aaaa9aa05707d2ce
BLAKE2b-256 1c5fa96306bf55c208482c2cc68fcfff09dd51b71674d0b50267442ef59565cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9953aeb319e0b4dd9875558a8f9192e17cd4658606a2f8de7396fbd43c5366af
MD5 93c431d5ed2328235cf4bd2d6f34feb6
BLAKE2b-256 2eb3744d9634f5b8c689f13b654bffff639af370fd5653191954b10cf6ffc97d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4b56308339c41aed98668008186be9eeeee79f9b7c0c3379cd792c9544b32c8
MD5 9ac5650166fbd928e181ffce1fbd89e4
BLAKE2b-256 21a0e5dbeed5874cc3faa186c9422b601ae0dea9c42321577bf9cd3415601ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea2f6bddfdc5c20b58033e215cab3080031bab4615e9af4712a0edb7a7897076
MD5 9abd21f427d9843c3ec935f15cd78523
BLAKE2b-256 72d389c54072dde7f3015c36822354fd9eb25d6d95e56c16ee7fd68ef9ac2f9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 290e3df67032b95b97f927fe4ac091793b6d32fd3683dc9aefb60850efceb336
MD5 bc54f225b417c37b48470641393c404a
BLAKE2b-256 452a900c4cc5bc9141dc2fa4f04c642e9487edfa7c7c9a904897040972540724

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pypikchr-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 58.2 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

Hashes for pypikchr-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1c1e757cd60cf02e2d8f99576e9d83e2bbfbce66066f114a00520bd73d3ff63c
MD5 d9e3254d21475372072305bf71d34fc2
BLAKE2b-256 d80782699e88b570a02201abe9b7ae99133a317ceadadc7004aae08db1eadf7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pypikchr-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 52.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pypikchr-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3703af6919068f962fc29baa44e8d24f0f386622975ee467defb2b3dbee7e75a
MD5 630b32854f193a1b1aa9342063b16bdd
BLAKE2b-256 62d29ab0db2643c716ee3ac8dd93f2945a783bdb6660d1a48614645ee0b82922

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp312-cp312-win32.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 effddcedee7941243121d95b67e027c60c44d4a889def1ccbc2d1585364b3c62
MD5 80707b98e4bb0af511e0499adf0ddb52
BLAKE2b-256 52966783be1fed4b0a00696fcca2f740f5978e91f41c87fd0d12bca93e5f4379

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e7dad66890631640c73fcb2035a253af7752fd9d20cb3d4b5fdd06db4295540
MD5 ebad852daae603669c9b42a9b7f969d3
BLAKE2b-256 4f52b334df3e268ed42c204bc996e69650f8542007c815abb62f6ed6cf026b5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca853980ba7375434be5ac298f2a5d83539fb7a0500da6c85a75b182e2c641e6
MD5 b8ccacb55b053bd390a901417bc613c6
BLAKE2b-256 92c65ec22e1b2cae1c05152fde734b2a4082ff72a171d2172331b9791857198d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85069bf8b3416f3020380347f8e0b2e3d5842e8f732ac7e52d579175b4e25e8a
MD5 eba1a3da34bcf155ec8b5ca242743055
BLAKE2b-256 056330c1820e75dde0be0d44f50d77ead3ba9dca2caae7400aee79333dd26b31

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec9a75c177c49ef3910743acc90a06bd650228ffa59f1d69f11609d6f7f0eb90
MD5 1d68da5d493442248c15f5358968e4a9
BLAKE2b-256 e23f424b5ab36483db4694f61b54eea3dcf6121f82b4832e7b2dd622bd4949db

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pypikchr-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 58.2 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

Hashes for pypikchr-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1b1bcfd156bb33950c00f6e789f2ada45078931698ca7330b98c1b36eef66bbe
MD5 3228df0a86d5d712c9de8943442be882
BLAKE2b-256 7005d5efa929c7cf9e2bc28e923d6b847646fe200109074977ef9a0e00967d82

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pypikchr-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 52.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pypikchr-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ff54aca7350b1d927b9d67f00fb900847449a428a65613de517b80edd11584f4
MD5 e81c088c49369a89f94bb0f069f327c3
BLAKE2b-256 a722fea7279912924c3500d0bd043d930fd0737173bc34e99f96c4cdff3058f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp311-cp311-win32.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9dc4ad8a288bd5af299c07220544b3eff63b656108bfcecfe40baf986c67c42f
MD5 0b38899abd048b1d83401a5aa86dee49
BLAKE2b-256 c3f972c7b836e9c785ef3e27fcd0fc3de708097cb75d1e9aff48fd8f66bca106

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d518f1a114d431c33a0c7c17186f2fe1fdc821b9a1220ffa1a68d4341f2b3bb3
MD5 d5a218c225b28cd4d67d765d36175d54
BLAKE2b-256 dd0196008b2e9315e13c83e2c70c750564fa7a9ba3c68c69e7f9321b5b87212d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d561493b05997a5f89c8f48d83d9902759539f0ec92401bbb5a48911c61886bd
MD5 0f97b3db80fcac12b8a127702298b7b9
BLAKE2b-256 58c073dd9c8cda19809ccab62e2048357549e2457cff865b62c3a300878d5dda

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6cefa85a1b057a2afccc7558507352e12195dfaf6c37ce80e58ecbdf306b9238
MD5 71b65bce779daee266b05654d98b60a0
BLAKE2b-256 c0939cf6735e7c1c9c6fd484c6c1a376bace050e44f88e0b8edaab573ffcd780

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c675565c433679d8d3eb5255095158fcb352990d37a158571d52e72db526334f
MD5 2b9e1662251b255459c3c36359cdb7fd
BLAKE2b-256 32ee978f9fa9d800b0854991df29d897e23f7125bba795c7d801ffb351135d35

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pypikchr-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 58.2 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

Hashes for pypikchr-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ceab0552da77ccd16d37cec5077034a49fbbdae93f6ff9423d26447cbba20b5
MD5 c9354dd477da52bfe59eef56942ee615
BLAKE2b-256 436bf026c902292fa9176f7f9cc19c50d869d881daac9ef76a0facf3c9fdbb86

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pypikchr-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 52.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pypikchr-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cd19d248f143ac53d2e242bad9c67ae2f080693bdfe3b2f8d649b17657fe1b5b
MD5 00e666cc3c2270bf813edd647bd1be2d
BLAKE2b-256 8f8026d32e1a5d600fe3a7eeb800e33064dbe08fa3b4d21ec1d219e08d1530a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp310-cp310-win32.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 057e815789a40bb15d277284047ea72d9a5371c8ff9412f07b0067977c48a3ca
MD5 8fe5e1402b6bd98922314da8565e0948
BLAKE2b-256 31813d34d0a17f2f56b757c98380ca1051fd8336c49d7e120bdff3590e15da2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc74ca661f5105f1b779f0d832acc143f146ae1c599bf4163ee3a7b7841cbd44
MD5 ff97d488d1d285b61e4d68e3cc3b1898
BLAKE2b-256 037eaa212667f1aee330a5dc32b0ebe608a157c3eee4904cef2be9012f07aab2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b127b90af41fa69ef60a0d419cb0acbc3d34b30a1f2e7bc12a90312e4f7df23d
MD5 821b61bbb276d161e514dd6ca786a7b6
BLAKE2b-256 e4ea0bb00268cf5ae35fcbffe8c200033ff48d4e34ab6791f7c8c8a163403307

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 519fdeb75e33b072923402fcb8c6781b87fe14a3ff35fdbdcf0ddbc855817168
MD5 b8d99b1909c0567a0d8703524167ea5d
BLAKE2b-256 17ee907ccc5b1e398227b77790e0227316ef9f9b5d578ddcfab990c8bfdf45c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31fb98f173ddae47e11956a0ae649896ec14844a392239a91d9446362e681ea6
MD5 2490f1682c7f69be0506ac9a47b000f0
BLAKE2b-256 1919d2594f35325b6816dc9d8d70255c67ba4c2274e70359ae45f8306f99469d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pypikchr-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 58.2 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

Hashes for pypikchr-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b64de0652a4a6fb6658481ec41feac85b9fcab8273d1c34b66c70b63cb708b74
MD5 12ddca4ad5d22e93bfed31e06fff6fb4
BLAKE2b-256 97d271a89c1228861023a8af79ae7d6c0629c45267ad240cdf4d3bb9c90c76df

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pypikchr-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 52.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pypikchr-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4b3d3d9a39e3b54218bbde3bc15d8cad48880f79edc3d9876bc22cc21560a037
MD5 e9b6aa92fb8c4c9ce7ecb1f3be3193a7
BLAKE2b-256 89c48a23e5035ca5c529ad4a073e3ce82b1d876ea006fdac8249b6d839ffb2b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp39-cp39-win32.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 359da04e07fa4722d236bb054709ece812d4571b06289f82aeced0361f2417ee
MD5 03f28b915ab85c13aeb9c2091161f1e7
BLAKE2b-256 69d0b78aa141d60e1942e06f6e18791733742398f1027c6f89824ee209bdb1c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f12247b75dd7ab8ab4a255f41309dd70d72702106bf7f0afa0addd5d200f2bcd
MD5 e0eaedf141992f8d43a7be85a55bd844
BLAKE2b-256 596e430b9e76e36e687a099c1ab022f6e714674f9cf47b875917ac857ca1e164

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 099d562cbf5d4c1f972accd73ee32aa0465a4859fe194d652ba6e99789f1b602
MD5 34c0b9f5ab4adb00499b8f396a495dde
BLAKE2b-256 ace2247e9550950f77a14625a0be3d59af3ed716bcc17f9b6d32b536adf278eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c1282b817ba8ca2e3249a034aed0304f4afbfc2aa0a6e22b493fd9a1e464f907
MD5 29d7751d15c42e31d23b721693a409ef
BLAKE2b-256 0d5fdd30e3cf966aedf6aeab3a701afdb9a4c8833b11c73a5e6e4a94db6039d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c54a4cb8e9b86eb6533d39f6f757b4e6d196bdae7c9354ad2cbdc8f1840036de
MD5 73dc80ee83707406bfae530fa1913050
BLAKE2b-256 1e81f369f57a06cda62db03c40ba3f1767c8eff303baeef309ca5ec15683ea27

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pypikchr-0.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 58.2 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

Hashes for pypikchr-0.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 31465ada9d5a62b2f0c16edcb838b41e2aad69fc05df56dae99b8d22db94e4d9
MD5 bcfb6c1fc967da41c9e102b1813e362c
BLAKE2b-256 a5976903f401fbf1bc814ac69fc78f0e15af889f72b2040e722f0ccbe0e68de5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp38-cp38-win_amd64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pypikchr-0.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 52.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pypikchr-0.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d7e0a25fd061c381eb6f64516c6e3e37e4f4b1d80d3e3fe7b9743d5a94e66204
MD5 ac6e82f4adc22ed20670551ac1f8939b
BLAKE2b-256 2ee8d8ddf1c4629e9b89400cd4ea2127236f101936cc97aecccf3b9770c04848

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp38-cp38-win32.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2534d3d8b1938f368dfee5ab31231711fc12d25c5dde868172816c5909b3e43
MD5 13855673327af739da7cef1863f67e90
BLAKE2b-256 32601857a9f815edd765a624c9988a3241f5cc523742d1f1f4a2c55c224eef1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0de0c8ba4f6340715b174dc2ab9a584d69e1cc52a69d4d88f0bac4e1e9d0a9f7
MD5 59bb3509e7de46b62cccbfc41fae2385
BLAKE2b-256 01baf03b1786d97b40630a967d85e9367e657c643a1d42b4621e010165ccd613

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f85cb0f7add55140c8c6362cd4fbf29cac5473290456b7f03b16395cf0356ea1
MD5 55a21ce53cd7da63df0ea33c534f44e6
BLAKE2b-256 2fa54002c69f76c8c23edd047d5c50a32fa09654648e38fbb7dda5f4e84b6518

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e54c75da6cf8489905844c389e0ccfe027af13414b9188a328918a98d284385
MD5 2da819a22285de067e4c2d3dbb80eab5
BLAKE2b-256 dad7b09b89d9084db03d3452211e9485875c085d1f867e6bd5fe95472b05bf28

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

File details

Details for the file pypikchr-0.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypikchr-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1dd243810b58a37d26930689a1819c985f37d786529a0d529a8b3fb69638264
MD5 87a4a0cd4b1ccaaf15fafdc2137993c4
BLAKE2b-256 b8c037ab3167e78fb9ecef7ae6bae4104316d1662e0cd35109734499b307f3d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypikchr-0.2.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: release.yml on gadorlhiac/pypikchr

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page