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.9-cp313-cp313-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.13Windows x86-64

chmpy-1.1.9-cp313-cp313-win32.whl (4.7 MB view details)

Uploaded CPython 3.13Windows x86

chmpy-1.1.9-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.9-cp313-cp313-musllinux_1_2_i686.whl (8.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

chmpy-1.1.9-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.9-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.9-cp313-cp313-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

chmpy-1.1.9-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.9-cp312-cp312-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.12Windows x86-64

chmpy-1.1.9-cp312-cp312-win32.whl (4.7 MB view details)

Uploaded CPython 3.12Windows x86

chmpy-1.1.9-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.9-cp312-cp312-musllinux_1_2_i686.whl (8.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

chmpy-1.1.9-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.9-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.9-cp312-cp312-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

chmpy-1.1.9-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.9-cp311-cp311-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.11Windows x86-64

chmpy-1.1.9-cp311-cp311-win32.whl (4.7 MB view details)

Uploaded CPython 3.11Windows x86

chmpy-1.1.9-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.9-cp311-cp311-musllinux_1_2_i686.whl (8.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

chmpy-1.1.9-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.9-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.9-cp311-cp311-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

chmpy-1.1.9-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.9-cp310-cp310-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

chmpy-1.1.9-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.9-cp310-cp310-musllinux_1_2_i686.whl (8.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

chmpy-1.1.9-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.9-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.9-cp310-cp310-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

chmpy-1.1.9-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.9-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: chmpy-1.1.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.8 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.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 78bcb254186b88293ef3e9d6198b93495c0dd4e08728b85d60016529aec6d553
MD5 2f34600875f1eb36d19dc5cd26c5f24d
BLAKE2b-256 f902a15499ef7944ccd0d196a52aa1ee6ffc754b1955b20334a06e56ee559356

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp313-cp313-win32.whl.

File metadata

  • Download URL: chmpy-1.1.9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 4.7 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.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f2138648ef0e2684bad22841e40a4800b31966cbe518daf94bf43ec006a3b5d3
MD5 7b77d09a2190953e16617ccb4419f880
BLAKE2b-256 a8138d43db78721451351137e9928c336e4ab8946e3055b7a1156128ce9e56d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 548190eccc4bf0800ddaacb1bfe381b1dfffeae3076c47c5cd1f58aec69d5b93
MD5 c67c309204219dfd823cdf3320142c4e
BLAKE2b-256 cb387202dced8d29cb546ad5687700fb7596fee126f89b4d69e2097169dc3322

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b60a0c9f400296fdf14a7f32c14b5e190936e928d3e9a897a6f6b563e7419c7
MD5 1a450b7ceb2290e9173fac66e2bc33ef
BLAKE2b-256 9aed5d0e0cfaaae1e100f58c401b62d1684657fb6fefea029c92d60d796a0820

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1262eaf5373ce33f46fd6fe0cb743a08283c393ee847ac52a05c49e01b6a38e
MD5 147acde1fe64c02947b48db9251347b7
BLAKE2b-256 826224fc5b47e82e1c500ee98bbf8dfc5dea4fecce7dc499ff30f8dc414f754a

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c202435b8e47b2fd2b3ead96e2bbbfa78582a35c413a57fb938fb461dfb0e28
MD5 2545b979976b9b89dab2e59e5a56e42b
BLAKE2b-256 74a0dd913cef471f99c8362dbc37525977f71b961e5b232c18f23938ff7b3c4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9cce7c40445efa93c2e7df028e3766808b24093eac4b06ef74fd83180b5ed01
MD5 0ddbb262312faa514cd2457accd9357d
BLAKE2b-256 ab6a86c812148100a0ef25a41d0c8181c1cb6a4d1e2c4c734180efad3e04a194

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 1c76ff034529f8686fefd648f81e643537596f02e88ed64f4ca16f3e576316c4
MD5 7a9de483c5616c3e8b59135ecb683625
BLAKE2b-256 69e7151862b633832c24bae0b61abbba625bc256f1ba2f5acbdd1a1aaa12086c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: chmpy-1.1.9-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.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 266a312805f583fc3bf05fa64adf13967ff4ad898a68d818e356af99d9deed6f
MD5 43ce6daea7b5e53a0a639dc8db3129c7
BLAKE2b-256 58dd1352aaa773d356d5ac163d8b7cf1040291c2ffbb2cc804eb7e5a92efbb0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp312-cp312-win32.whl.

File metadata

  • Download URL: chmpy-1.1.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 4.7 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.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bc2a2aa8e2899d0b371118f7680606d35da2b8d44829f70910f1457b918a49d1
MD5 af127d9b36ad413e915b861f81f7cbfd
BLAKE2b-256 be7908953521b36ec0ebc177b7c7b24cb14ddb6d69da0a5f614b695df5c64ce6

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a28a0018ff832b687d9aab77b2596b9892afe94a12fa59a104649ca3988f05d5
MD5 3c8a44bb56a16784ba49188e8c1e5f0f
BLAKE2b-256 4d33cd553d86e07a69cdacc530c037d974635dd8b6f232b8435b78ad28e84a34

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d77b644cc2ea52e8bcc94b819085b92575df3ae69781cbdd1dd37e5c1c0dd0f9
MD5 ca81b04688194eabc9b02ee98f9b7144
BLAKE2b-256 0dc4a43d272e6666f271a98d3d6a3b11876c8a04c37f4c1c92b102b6da38381f

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bccbee8b8a397a5897b5f9af139c986df16800c766b3bc671e280c63baad7dee
MD5 a34f6791c199d9b83c2c7fbfa816b4e4
BLAKE2b-256 00648833abb436a13e976f09b957c873e0a3207d1605a6b9c40963222a34fe9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 54df9ca3bea7891e7f348562a81aec16efad6c92d6c675a3bcf2b66d6dc8ed69
MD5 c01b2c2358865ef26907048ee50bee7a
BLAKE2b-256 e98daade0ee66ec1897f1f3c5131a7c31ce66a772637c68ac7870e740f60a67b

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 092be9bc937b89dcaf16bd383e4c4d2fd82fe8f271378658966595f9ac9ab210
MD5 765e178237e75012a2b6236dfd7d4770
BLAKE2b-256 ca0f3a3fe5fc112d75655633d03d2d665386ac9235e43a62412f85fd8774c6de

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8a1562ede9f3768a5f133b98e512b4dcf2d38677aca2002e9fb13981c5161e14
MD5 70f3f46b89c27e4a945a108199fdaa75
BLAKE2b-256 9fc07fa353fede17a8300055d4d249f807669872c30b8cf74c6a3454b4cc3265

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: chmpy-1.1.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.8 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.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 83a0896a8f3ec712053c2d80a08ae1cd131d0c3f263a6d5fcbbccea60e6d3fac
MD5 76d63a6f51b03ea2ca5ab04452b47904
BLAKE2b-256 8943fa36438ae3e44e32fa3af6317d2f4b2b1029468c95611c508fde774cad5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp311-cp311-win32.whl.

File metadata

  • Download URL: chmpy-1.1.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 4.7 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.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1ec7067e1c56fb303c6b4c5333de2bd1cbb85c8abcb95c766d1f464475f0e089
MD5 fc5adfea78d875aff386ce7be61d70fb
BLAKE2b-256 6c77551284e2833697bc7788ad8d8513c93917b159d9b7895650b5a060e2a06e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12d752c774854e6d61c64ba3b622294e4556e6f850c6b9fd8f6b27d3e704a46e
MD5 d98a10dff41a3bb5e29c8517e9b78bd7
BLAKE2b-256 11d351298571344eaeed78507e3a38e4b1bbc796bdc907c06dbd545ae7ad3b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be9000187f230455757075a8315fdea8e01a61f6144aa305ad97997e7855671d
MD5 605490a9c892f1923453c5e744cdebe0
BLAKE2b-256 f3f276992c2e4278e1c59d3071def239bc554951cb9cca14508aecf78b2ce24c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a7a385b93928940e9c2b0e6320bbed7a678f853733021e88c52ad7cd462a11c
MD5 2266a899053bf5662b64c7257a2de555
BLAKE2b-256 e514493269d14d3369fddedf9b339466e78868de92b4d004f20da6df39b3ac51

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3bad08fe1f9859f34f9ae83459a6a212b4df91343e9bdad004708f1bf896a21c
MD5 2eab9b9ef040bdff4d237c7cf67999fa
BLAKE2b-256 1c12d67fec79ef9fc107149f17e885c590f714a1dadf6be6383a63ea48cb5829

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac532cde484e7a18ea97858aee2546964bdc20754c96847a63248f17413e27ec
MD5 067d85bb6b7de10be6bd9883019e637b
BLAKE2b-256 4a82e12aed92529ff93ae058e39b76cbdf95a3ef5877550a45094516680997bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5e9ef1a61d3f60d9120f388495a232e5aebb78b39881575106469c74462e62d8
MD5 31297ff3feefeafca8d6d817eb89b2d6
BLAKE2b-256 72513b897f27086b0996a6d2dab10942d111ee43fb0ed69a8bbd0359688dd756

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: chmpy-1.1.9-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.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a131df8ca194b09eb3e768303dcfb18387da244822fe0da6ae55603b61097d57
MD5 968d0d542ee61e1259b3417427b2b563
BLAKE2b-256 b1209f4beab6e99d18db567ea964345ecfe21879392aa5158bc77c06c3bdec3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp310-cp310-win32.whl.

File metadata

  • Download URL: chmpy-1.1.9-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.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e8933f5224f7bd17870e9b9d33fc93aecc2ffcc015d8d8ed6df7e876e12df649
MD5 5c2fac527b23c006a26dc2ceb7b1046e
BLAKE2b-256 87b14c71850ee660b77e263c61f330ae4ba019e7766ee651305a9674f017c7ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8c3e1e43e12babe75daba73f42f626c42c1135be5556b13222e169244f6cfeb
MD5 6b43581393acf4045f1c6ae0647bf2ef
BLAKE2b-256 017cddfee1790339e2af99f4f297bea8417df4ca5d79e5a03fa47539785055fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1639d830f1744d27a638f3bc12dbc42912618b86be081bb6219ac3ade3882510
MD5 fdf659f1e0a46b3f118da396e7269181
BLAKE2b-256 b2677455f8f7d9c80f049d6aff753097449ad4ee64c87b5936f5561e9997c2f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3e822261ff3f204344ad250586a896b180fce9163490c474d786c9b1767855d
MD5 fc72c74ab525a449774ca0c1d3da6208
BLAKE2b-256 82d0e8265c428bea305c47edba621ada097b4b9145d57f403f5d8cca4bfc1b05

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eaba0160d446ce5afb96947073935edaa1f5428ee6bf9adcd3eddc9f9c439354
MD5 3b7ace8851f02947e7c8393c6438f8ba
BLAKE2b-256 3bd020df8d0ecf23ab04a68ed934c0d4c774d10f0164b2635aa674a5b10a7d50

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a821ae727bedf8e51d90a4bec668c9cbad9cd785fedeb5748c5cb0e14601f31
MD5 428c3a7e1321bee54383beefedfe7d48
BLAKE2b-256 d10bfaf014b5e3bae264f8c181b7d8cb12bdc2a56c4bce4384821523a3c0a3f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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.9-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for chmpy-1.1.9-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 99da0230538cb25d073c77383784d3484555aeb7041b7d55fe9387d6cb95a0cd
MD5 bef1f9d09dd8f611eb601204960ac6f0
BLAKE2b-256 5419aa2da47e09ae8b0baa2a5d517386c56edda557f68992ff4b8a3d5ae08cb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for chmpy-1.1.9-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