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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

chmpy-1.1.8-cp313-cp313-macosx_10_13_universal2.whl (5.5 MB view details)

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

chmpy-1.1.8-cp312-cp312-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

chmpy-1.1.8-cp312-cp312-macosx_10_13_universal2.whl (5.5 MB view details)

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

chmpy-1.1.8-cp311-cp311-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

chmpy-1.1.8-cp311-cp311-macosx_10_9_universal2.whl (5.5 MB view details)

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

chmpy-1.1.8-cp310-cp310-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.10Windows x86-64

chmpy-1.1.8-cp310-cp310-win32.whl (4.7 MB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

chmpy-1.1.8-cp310-cp310-macosx_10_9_universal2.whl (5.5 MB view details)

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

File details

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

File metadata

  • Download URL: chmpy-1.1.8-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.12.9

File hashes

Hashes for chmpy-1.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e3ce4dc764b887ebfb6a1971cf8f164ef2e53515e8340b37625dc5ee31c527af
MD5 e8ff44c32cd89b584ba3a31eeddb25aa
BLAKE2b-256 8b04b7be157b3d8eabdf1f6766d063b2b51eba890dafe8ca6df1d3feed5ff596

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chmpy-1.1.8-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.12.9

File hashes

Hashes for chmpy-1.1.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ea6e84fe16045bbc55cc9f256487ac637b226d0d49c235657542fb93b56b98f0
MD5 ed28b236fcd9822af7ed559d8b7eca17
BLAKE2b-256 92d5580c123f975b8eff22b35ae11bad55605ca390cdb537db6ef17621f75e37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd85e2d41a9c86f4111ff6ebed46d59f6227e10ae0ca1ba5f2e87b26a2bb31c3
MD5 424570b7936c00c0e9821ad78ecba362
BLAKE2b-256 062ea9b5fe47a639e66cd847abc29691c53a2142a95cf6eeef6e60d956b9163a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12ca2e029f18393f7b9ce4092684f070fd30124b0423c9bf6a728fec46842706
MD5 a739478ec3ec5d8f3a4ce3209c7203bb
BLAKE2b-256 9bbd99ba3e7cf7e239281cb25e1207f0e1c33ed1d13aed13b919578f965ea39f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c60a9cf7e2d1a558bba2b86f8e30bf50ad811a23ed2566fa508743d3dd9d7eb
MD5 03e7558c1fd677104fcbc3206208dfa2
BLAKE2b-256 ad703e2d7fd6ff6ba2c3873ac2dce3eb6ea8d51a6fa256ba471ca7fa316fa4fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd7d1fe8cd057d0ead7f8f6b0424a6d9dda0e2fc647d7f3423feb2f6a37c8f37
MD5 ba88cd9d8b2f4454cc82f3f674358684
BLAKE2b-256 ed53bb9c66490e502cc258f2269446c0690608d99fc2adb28eba99d03bb1f6a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a2c069457bb6b21b5909e882840b97c13c3b0afa8d95e6ae7c807da5ce1ecb8
MD5 e069ea57472543f3194b5e874a5167c1
BLAKE2b-256 81c05afbb39cc921bb19c88e4fa5ec53c565dde5eb8407d623fc59d365e13a37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a1d4d76e32e643af7794f3642ae351b4f861eb45005371f859b6ded7a553be12
MD5 f25c0a09f46e0298da7a3626b6f7df1f
BLAKE2b-256 f031b2d1bad461657c9af7cfec56da055cfebc5569688b300f28188da133cbff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chmpy-1.1.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for chmpy-1.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e545abc84dbccddd86fc0281584544a8c7e40b64e0f445935537f5f14d7f3fcc
MD5 45ef43ba2597864bde19f5a57709c67d
BLAKE2b-256 41df0efe7a98e64793ede4d0bc64e97f4b3ea856836fbfddff54b90bd83fd82d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chmpy-1.1.8-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.12.9

File hashes

Hashes for chmpy-1.1.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6a1721ea01245b65690bb21abf7dcd1ffc7d79c87a47b2860b01063965169a8b
MD5 f7ff4aeefb0bf2e33ebdb6e05889ee04
BLAKE2b-256 905c4bc5cfdad77712c2d5c8bfc9c91ad4c41f4b78e3fbba9c76b30e2b50aca6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfb1d28dc96e420078090194ecbbfe09c515e149917e08af95026584cca38d93
MD5 6fa671d615e499b623eda92d1f14cc02
BLAKE2b-256 703e8024cdfcac3e3cf1f3cb6ce7adb149d0bbd7e7d6de33a8538b55232a52a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12a845f49ac20c843e3169916f41ec4d79da3efe74dc1d3a1ea1f1cd5075d1f6
MD5 170be2e981064b17f1c93d5fa49272cd
BLAKE2b-256 745c6153388c870de543c913bc045e72c0cf6f0f4d977cde604d6deb77d5260e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d716a79bd93e5a0aea7f0855d176f2ebcc76cadf1177721919989d236854431e
MD5 0a6c6e7d29aade5d722761ea427f92d6
BLAKE2b-256 764edeaab7faae3024c813355c15fbba4ecb342b0bef439986cdcff52cc78fd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 340b74436025a12ff47de7d9c0f34e7c3bc98e58d7069e0ad18423a0c1e35f5e
MD5 89eb7d36845b79016d5ed3c23e0dc7bf
BLAKE2b-256 4c91920d46e8fd4340c2142bfde5a2b0c8c1d49c9e0f94be9333e748218464eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b16c9afd33c14fe49968cde346137590acde78ad427525e7b5ea2cc853d07dbb
MD5 fd927454d6fbcd94c4c0306a9ef23d16
BLAKE2b-256 e3b9bdf3bad7027d62fd68cec3c6f48601c50e5218e3b60fbd38a4733ae4c4e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5208d554befc201d97941a2ecdec02b74e41e417c0855b82fc6601950538be89
MD5 f34efa68633f8afb4505f7c05390bf31
BLAKE2b-256 a875b0c5ad765788c309cf0ee10ca2dd8a94e1e508bd959995c8face32051656

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chmpy-1.1.8-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.12.9

File hashes

Hashes for chmpy-1.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bb64260f8ea536390a62bfdad9fca8c9efea0ba93eb217d93e0819449530211f
MD5 d492ad37d94dbbcd001a0c8c1b9b081f
BLAKE2b-256 b9b70a4988e0debb455efefdb8f09899c27596736e9e52ddea58b94fc1a87ccb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chmpy-1.1.8-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.12.9

File hashes

Hashes for chmpy-1.1.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7abdbf9871d937c3b55f17d66b15ebef34874583d4a94fad418883be16b9c4b0
MD5 12ba07f1d8164c8e07eabc4c3c40e131
BLAKE2b-256 432fdfb48bf829adc3cffb19a4ebf9193c228b84fc0e00fbc4967507650f1544

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86fbed8e0d658951c3d87a6c1f5bd8e654d6a8b0b782274eee02b6693d6c4c79
MD5 92660bdfa61b7333081e6d4aa139cfc1
BLAKE2b-256 193d6d7819041c1112f3554802120a528ffc1c2f8c0ee3704f94ba1675e10b14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f83ff8507740a8b6fc31f9de800db6a7f7a58e4c65e62ee59ba6059e05b8d46e
MD5 63b812d9cfdb911309d3132f2b68a8ec
BLAKE2b-256 bdef9cb5a86b01b302bdf8ddd5541e02934760a1c4ef7953721ed5be1af3651c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e17ba48e562ab4cf425dc490f843f092bd15f7d0e084bf473fe00dc6a1ce275f
MD5 b784ef57e0a02300232d0349fd5e268a
BLAKE2b-256 f2b655506b3c09c28b165eecbc3bf45ce2e72e033562ee040f1e7c4ceadf1c7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 879b05091bc407c4f180a651f2b329d9ad0393b594c96f59b32fc8474a2ef2bc
MD5 8ffbd1ed16078b4d188eb0d82de54d9c
BLAKE2b-256 9f0734c9a3192b89501581d5f6cd2068f31eb59762a502a1a5447af7637856fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f000bdbdb03e67060cc63739a56d7aa1cf863cf764465888436c99f0136627f4
MD5 e0727cfc0b85fc2f97b10f3341f5f849
BLAKE2b-256 6c48802c9c01cf835f21f33179fd0a59a369c2f032eb2ef97803c06b418dd67c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8cec2b7b398a4da8582abe5f3aff5c46ae5fdfe5f8bfd3475c3c828859f8f830
MD5 cfed53fbc8cd3177ad6522eeab914ce3
BLAKE2b-256 164e0fa608ee0c2f19e42d9e4e0d7a08745e3e95bc5eeea55e56cc36f8f00893

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chmpy-1.1.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for chmpy-1.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aa3b489e57774ec05806bbb9a181bec4588f86eb5110fa4c5169616f13eea032
MD5 0ee4a3a9399ce981b6495bacb8c173ad
BLAKE2b-256 4c0f54c4ae0ea3a4ca81712f863190e7d32586978126a86840355f45e9c2c143

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chmpy-1.1.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for chmpy-1.1.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8c73d32ff7856a2fb889eb6594e3cd4f82668c4586cba1e576db2d2f9bd6120d
MD5 4d4d3629cd1ed934493131d311a5e7f5
BLAKE2b-256 249927db41850c3b9ff4fa9fc52266192e3e0acbb5913554d6550e60c9d123af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20a6720526fe326c77040b784d4a5b930d77bd8b0822e5e479298e4d7fe97f6a
MD5 8bbb9dea002daa5eb0497745c6c16658
BLAKE2b-256 396313eb067bf71f9ba74d1c53bd17b11e52e55c8918de51652659833513ebfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da93cbf1948a41931cb92d5433821524e114b7417dc67c061d404555fd90f449
MD5 2e0d7d391032e1aef10aebd887180f12
BLAKE2b-256 e417503e1976075a5d47addae910d32bda512a02cfcc8df7af7c2f4d3611a782

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a40df695544c2db93bb004b8d7cf792d4f191f4431b246f871b9e7745ce8b50b
MD5 00575fdc1d567e465d4322bf6b35915b
BLAKE2b-256 980d6ec30bf77950a4348cdc26cea2fd75b96082d6fd2e9c13ca1726a36f8857

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2bb27a7c3306e82abde700970857897d28c5b113e7ba22b2ba30d36d6b6b023f
MD5 cea9ec45250e52ede41c151af30c5f6f
BLAKE2b-256 33a03a2cdc9c35ba55cd1aee24c4c2be041d8c9ee283a291a003b2b7b048b3cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff885b5f612b97b3536cda33ade0e75d9910188bfe2d436eef13eee78366a45e
MD5 1c5aaf591743324be5ad2455d93087df
BLAKE2b-256 99b7f1d00fcb914dee802bd14dc730612fd72cb680e0dc0cf56918bac38c74e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chmpy-1.1.8-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f4ebe37c5773f998bd0300dee9efa2b26ba80e2e65b1a78d3156dd646c463423
MD5 5e8b499e57491fc7a5e2b89f35641348
BLAKE2b-256 034b8df6b207c9c7b4e42cf8a07754586ad763ac80b1ed38d2168694771d591a

See more details on using hashes here.

Provenance

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