Skip to main content

Molecules, crystals, promolecule and Hirshfeld surfaces using python.

Project description

CI DOI


chmpy logo

chmpy

A library for computational chemistry in python.
Documentation»
Report a bug · Request a new feature

chmpy supports handling molecules, crystals, Hirshfeld & promolecule density isosurfaces, spherical harmonic shape descriptors and much more...

Installation

Basic installation can be done through the python package manager pip:

pip install chmpy
# or to install directly from GitHub:
pip install git+https://github.com/peterspackman/chmpy.git

For development or modifications, install locally using pip:

pip install -e .

Features

While the library is intended to be flexible and make it easy to build complex pipelines or properties, the following is a brief summary of intended features:

  • Load crystal structures from .cif, .res, POSCAR files.
  • Evaluate promolecule and procrystal electron densities.
  • Easily generate Hirshfeld or promolecule isosurfaces and associated properties.
  • Easily generate spherical harmonic shape descriptors for atoms, molecules, or molecular fragments.
  • Efficiently calculate crystal slabs, periodic connectivity and more...
  • Automatic parallelization of some calculations using OpenMP (set the OMP_NUM_THREADS environment variable)

It should also serve as a simple, easy to read library for learning how to represent crystal structures, molecules etc. and evaluate scientifically relevant information quickly and efficiently using python.

Examples

Crystal structures and molecules

Loading a crystal structure from a CIF (.cif) or SHELX (.res) file, or a molecule from an XMOL (.xyz) file is straightforward:

from chmpy import Crystal, Molecule
c = Crystal.load("tests/acetic_acid.cif")
print(c)
# <Crystal C2H4O2 Pna2_1>
# Calculate the unique molecules in this crystal
c.symmetry_unique_molecules()
# [<Molecule: C2H4O2(2.12,1.15,0.97)>]
m = Molecule.load("tests/water.xyz")
print(m)
# <Molecule: H2O(-0.67,-0.00,0.01)>

Hirshfeld and promolecule density isosurfaces

Hirshfeld and promolecule density isosurfaces

Generation of surfaces with the default settings can be done with minimal hassle, simply by using the corresponding members of the Crystal class:

c = Crystal.load("tests/test_files/acetic_acid.cif")
# This will generate a high resolution surface
# for each symmetry unique molecule in the crystal
surfaces = c.hirshfeld_surfaces()
print(surfaces)
# [<trimesh.Trimesh(vertices.shape=(3598, 3), faces.shape=(7192, 3))>]
# We can generate lower resolution surfaces with the separation parameter
surfaces = c.hirshfeld_surfaces(separation=0.5)
print(surfaces)
# [<trimesh.Trimesh(vertices.shape=(584, 3), faces.shape=(1164, 3))>]
# Surfaces can be saved via trimesh, or a utility function provided in chmpy
from chmpy.util.mesh import save_mesh
save_mesh(surfaces[0], "acetic_acid.ply")

The resulting surface should look something like this when visualized:


Acetic acid

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

chmpy-1.1.11-cp313-cp313-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.13Windows x86-64

chmpy-1.1.11-cp313-cp313-win32.whl (4.8 MB view details)

Uploaded CPython 3.13Windows x86

chmpy-1.1.11-cp313-cp313-musllinux_1_2_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

chmpy-1.1.11-cp313-cp313-musllinux_1_2_i686.whl (8.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

chmpy-1.1.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

chmpy-1.1.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.9 MB view details)

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

chmpy-1.1.11-cp313-cp313-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

chmpy-1.1.11-cp313-cp313-macosx_10_13_universal2.whl (5.6 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

chmpy-1.1.11-cp312-cp312-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.12Windows x86-64

chmpy-1.1.11-cp312-cp312-win32.whl (4.8 MB view details)

Uploaded CPython 3.12Windows x86

chmpy-1.1.11-cp312-cp312-musllinux_1_2_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

chmpy-1.1.11-cp312-cp312-musllinux_1_2_i686.whl (8.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

chmpy-1.1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

chmpy-1.1.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (8.0 MB view details)

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

chmpy-1.1.11-cp312-cp312-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

chmpy-1.1.11-cp312-cp312-macosx_10_13_universal2.whl (5.6 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

chmpy-1.1.11-cp311-cp311-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.11Windows x86-64

chmpy-1.1.11-cp311-cp311-win32.whl (4.8 MB view details)

Uploaded CPython 3.11Windows x86

chmpy-1.1.11-cp311-cp311-musllinux_1_2_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

chmpy-1.1.11-cp311-cp311-musllinux_1_2_i686.whl (8.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

chmpy-1.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

chmpy-1.1.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (8.0 MB view details)

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

chmpy-1.1.11-cp311-cp311-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

chmpy-1.1.11-cp311-cp311-macosx_10_9_universal2.whl (5.6 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

chmpy-1.1.11-cp310-cp310-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.10Windows x86-64

chmpy-1.1.11-cp310-cp310-win32.whl (4.8 MB view details)

Uploaded CPython 3.10Windows x86

chmpy-1.1.11-cp310-cp310-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

chmpy-1.1.11-cp310-cp310-musllinux_1_2_i686.whl (8.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

chmpy-1.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

chmpy-1.1.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.8 MB view details)

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

chmpy-1.1.11-cp310-cp310-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

chmpy-1.1.11-cp310-cp310-macosx_10_9_universal2.whl (5.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file chmpy-1.1.11-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: chmpy-1.1.11-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • 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 chmpy-1.1.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e4d253740ebf8e3ee642808ca2b1f461e1cb9769528b254fb3bf7da0f77e5209
MD5 c0b7d3731c43af9592ed6fc14dd0f814
BLAKE2b-256 98593b7846bdb27a0988049e38c97f0389ab4385620de6d4592812dad62334d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp313-cp313-win_amd64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp313-cp313-win32.whl.

File metadata

  • Download URL: chmpy-1.1.11-cp313-cp313-win32.whl
  • Upload date:
  • Size: 4.8 MB
  • 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 chmpy-1.1.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 826801fdff454c7de1183debf75164ecf188c99e2659dc6564431cb1c0cbbd97
MD5 899db91481cc0a3ac5d6cfe36015e5bb
BLAKE2b-256 4262b4016c12e768b2e252e9f65429b40c0e878ce073067796dbb3372009936e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp313-cp313-win32.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 102e8bd81e1fbe39f5730978754758454b003e71b52b7c580d5d28369014f727
MD5 3451b5b3a86389c3ef83a5b9b7f1f91e
BLAKE2b-256 a93fe3e4cbc0d762347ddd2674361dd734adf141ec41c8d5c788e3b1c37804be

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9dee3594d9c51cdcc488d3852123b22c16e4ec536395e7597759e058811a0094
MD5 cef03205d1fc7ecd8ddffb2ce8f858fb
BLAKE2b-256 6edf3ed7c8067226dcdc4f97983200c9d80d299bd640605a31b5e3ddbe8cf610

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a750be3d508e397d429fea899e6a2c020ab63b383f3d8f3f815dba000a693650
MD5 57e76c963df16824f80a013f009e1cf3
BLAKE2b-256 ce4985d6e62b0a3226c2cb90fd448699a65680865fe05fa161aee1887f81951e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9cc675a90e465172d1752e5c701179ba862dc5fe54602f39fbaf8b7bd1089caa
MD5 2226f16b8324fabbe0d8ddeb844a1ccc
BLAKE2b-256 d838dfe8f42ebf32cf3b39148470ba588d3b6eca42eff8ac7297c744c30ee81c

See more details on using hashes here.

Provenance

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

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2e742241d9c7f01b091db77bbc0d143361221642f5ba4e32a7ecf1cc260e743
MD5 02876f8ddd4b5dc8c5480db430efb7db
BLAKE2b-256 41855bad03ee118efb8ae5f8fb43ff82547cd3cf7af666310baf9f4c6cf62087

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 080e00d987555b70f6823a0ff4f22f1323a4a02dd7a11ff3311478c2b1dcb98b
MD5 3e6a229c7c130de132a100f00d640d81
BLAKE2b-256 d1e5ad8ae9a617cb929b8024f7f056dc0acaf2eb7cbb37253320512b2a428365

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: chmpy-1.1.11-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • 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 chmpy-1.1.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 006f934fa3d4a0905d69594d76423f4b5e08d18313a6e675d37eae96670e3dae
MD5 d905bf2675aa009885a34c3fdde225b4
BLAKE2b-256 7d3a7445a092a8d0445d0200858e4deb561f100055193003ffce784021029252

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp312-cp312-win_amd64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp312-cp312-win32.whl.

File metadata

  • Download URL: chmpy-1.1.11-cp312-cp312-win32.whl
  • Upload date:
  • Size: 4.8 MB
  • 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 chmpy-1.1.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 404f7dca8450a746d46ec10f732fa3a56ef6f2c3bd6b8b828d2c760efc422a66
MD5 788251ea41d86f30fe79dbea53521e6b
BLAKE2b-256 2b171da71bdc34d450aa750cdeffc71324649a43029afcb27bb6a820a465a752

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp312-cp312-win32.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f23b82829aec511deb2f86e2e9975090077ef1509bf047d91ca31fecadd431d
MD5 2a39661d2761135fee46e07b38aee0ab
BLAKE2b-256 a1ba7ee3815715acbd938c517ade9edd46135881ead45cd34ccf3a3037887bda

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e69ddbaeb34c2388217ef630db6f865855c9d8ba8609834b0eb46e0bd03e3f3a
MD5 445a263773b1cf418cb720de33501cd8
BLAKE2b-256 a77937e8737953bf2d30c1aef7b243f19744ec11a8154e0849dfaeafb7c79d77

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38c84673f45fe33c573aa8359a162f57100a35c6f100227faec671f393e18f72
MD5 99638775c32b48e357cd9e0e32e1fdbb
BLAKE2b-256 1101263a3b4f9562e529550e0917020cbef7450340d725585e4fcdd0caf7d971

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a79fc52d0f193cee53cae931d7942e86918977fe7683e4379308673599c8105
MD5 f82d7e1e5dd7689ee11fb7ce5b0c3427
BLAKE2b-256 1ca89ee81b321d647ac1126371c0d0e38f45de8a02518d8f5140e8d1df518d4c

See more details on using hashes here.

Provenance

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

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3a1786af1ac5c42a0e1a08c407fcce83ac9bef68d4cc499fca93f6ab2c3ae2d
MD5 9ad723c57087351e50aafe127ee19ef0
BLAKE2b-256 bec64858f645c2bb8df6d8282e4836c51cd49ccb847469aad2171dce353471fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 dd4edda760dd83f2d3cb52b30b774e25431a63d62ec082962f1db6f3baa48cb1
MD5 673d81a99fbe82fb75c81bab433fee91
BLAKE2b-256 ee934f1c3dd80f57fb20e4843cee31afa8d3dc752c1012e4e207e872d34eebe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: chmpy-1.1.11-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • 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 chmpy-1.1.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a5e0b06f1d582379a1604ff802034d7bcdc281d0c618a2162edb5910dced9cb1
MD5 d790a925ab5c0450cc158f4d5acb4f9b
BLAKE2b-256 c500d05a8e12800dedf2eb504a5d6227d04b201b238fc2fbbf8e4ab6e74ca704

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp311-cp311-win_amd64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp311-cp311-win32.whl.

File metadata

  • Download URL: chmpy-1.1.11-cp311-cp311-win32.whl
  • Upload date:
  • Size: 4.8 MB
  • 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 chmpy-1.1.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ba93553c34695353249bf6a0d9bff0066ee8cedc5449e47e7226ca6e7d30c006
MD5 252a258535b9a675a011001de32c81bf
BLAKE2b-256 b65852a90d9f2299b3ebde9937c58b0a6857cbfc56e5b3b4b56eda2643026a34

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp311-cp311-win32.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e02c2b6a47c76fe0f2767753972f5b0e9997a6d1cc6d7fa6c43ad143db1948b
MD5 9db4d9e01c23c42c9824907162798d31
BLAKE2b-256 9bbae8683995c0699e1f6e3e8f5fd70d84fbef0a7bf14f611df9418263ec8150

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00a6632f09187ea06bf9861745f6859f433d1066c8ee8f7aec6243af9133bdc6
MD5 06841a3698a9e6c6cf56191336fdedaa
BLAKE2b-256 dd3925174d0f5c6360d04ad0f9bd3999e720537abc809dd57edd7a38ab7d4d7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44334cabd0f4f3236ab07ca3205557c36c3c33d9888928ba21cb6628c0ec8abf
MD5 6e5182a1d209800147751f2f0112d06f
BLAKE2b-256 a675a1eecfacf12a5fcf8c31c272cea70ca9584a7e71da9faa76c206e8c5b54f

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b5963785e2748a8f7f5112e9f4aaf9e92decda8f2da950e0b9245e5a1d81043
MD5 11f2b899f7960a4747f6e5672bfd8e8f
BLAKE2b-256 925e67a747f48c93438c0d0ef7d98108daf632a28b64e668b819921f5daaf835

See more details on using hashes here.

Provenance

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

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f121ff6123560d9f87c7239fa68162166e1423f1eec696fd42380f19db6fa3e
MD5 0979e84403222425db07f23e00362fbd
BLAKE2b-256 6ca6c005ef9a44b445ec5b0beb83368987556a228f7cc0221e2684ed6aa138cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 334bd1609a484bd7a582405c3d7dca41c72f59b5be23c791956a454689b508b3
MD5 aa17f05dfbdb47e34e01663e1d98bdd5
BLAKE2b-256 d92e7e06b05e10700973655300d1b14e6992fe9411e728e1b51f891cd8990919

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: chmpy-1.1.11-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • 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 chmpy-1.1.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a9f8bf50dd0ea6ff60f62cdda90980f97c7eea15c4a52c1c020dcf4f80e960c5
MD5 103b04c46443984819362dc6213877a8
BLAKE2b-256 04d38cc40a05ac196ecf81db094fbba543c2c2dfdfc94fb932be7b8d3598cf17

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp310-cp310-win_amd64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp310-cp310-win32.whl.

File metadata

  • Download URL: chmpy-1.1.11-cp310-cp310-win32.whl
  • Upload date:
  • Size: 4.8 MB
  • 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 chmpy-1.1.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 908241da3236c8206538e5dbc11b1e7893b425a965e607d09797b159700c14f5
MD5 dcb7eebded75a456a455d9688460b833
BLAKE2b-256 813bd749fc6fee87a81fb940db6d941f5259f6a1a8f012ac37ad616e251ad83d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp310-cp310-win32.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd6de4f7bda1dfebe23854e49d00028f0e32ebf31469b46195f6e099ddcfb093
MD5 5fa298bd71c920e6680be0aacc41de18
BLAKE2b-256 17582def4f64d566bf75802feee390b7bac16c5c157faa4de9d0bce36ca02e72

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 937867f27c79d2e99b093fa1d717befe31f44e65d091dac044a845bfc5d43525
MD5 b6c9b08be687498eec1a85df61a4a63e
BLAKE2b-256 a74bee4173b2d3d64294cb5ebe70aa87daf01d6225df554421587d3461dc90e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f8ba386b78fbfe2a3f1d0e702a20cc89a7b6dad121f5959a82aa84a23bd6feb
MD5 922a1f43a327d87f230630d899badfc8
BLAKE2b-256 134dd8e6071af387e58415d67995d2f089bfbd826852d716801825960136436a

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8114921330241c109fc51c184d9fe13ce2050ae6aa51a3af703a0bcd0b6f370e
MD5 9907705935b018a02198f98223060e67
BLAKE2b-256 5c55b7dd8115829fa8741de22cd6521a34321747da4b4edbafbedff72d4cf546

See more details on using hashes here.

Provenance

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

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29928c1bdaac6dc763ba815413c386a9fceba67ffe056cdd127fdb8b889a7380
MD5 46b62a9f9612ad4764e72ac8725028db
BLAKE2b-256 8ad086f95c9a7867e6d2308753ba5267ae7cb14055d632a017e75da0945eb562

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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

File details

Details for the file chmpy-1.1.11-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for chmpy-1.1.11-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b66037a8070126d7c903dd3ae02002409bc73dbd8b4c5da0eea15143fb60ab18
MD5 6da14b1c97a0368561bd9d44b3d83abe
BLAKE2b-256 349221257a95f5401e13a9e9910f8f83c2b7fa0b9f1bb90ae8f3668becb5454e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.11-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: pythonpackage.yml on peterspackman/chmpy

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