Skip to main content

Create 3D images from atomic coordinates

Project description

Macromolecular Voxelization

Last release Python version Documentation Test status Test coverage Last commit

Macromol Voxelize is a highly performant library for converting atomic structures into 3D images, i.e. images where each channel might represent a different element type, and each voxel might be on the order of 1Å in each dimension. The intended use case is machine learning. More specifically, it is to allow image-based model architectures (such as CNNs) to be applied to macromolecular data.

Some noteworthy aspects of this library:

  • Algorithm: The voxelization procedure implemented by this library is to (i) treat each atom as a sphere and (ii) fill each voxel in proportion to amount it overlaps that sphere. Although this procedure may seem intuitive, it's actually quite unique. Macromolecular structures are typically voxelized in one of two ways: either by assigning the entire density for each atom to a single voxel, or by modeling each atom as a 3D Gaussian distribution. The advantage of the overlap-based procedure is that the image changes more smoothly as atoms move around. It also makes it easier to infer the exact position of each atom from just the image. The disadvantage is that calculating sphere/cube overlap volumes turns out to be quite difficult. Here, the overlap library is used to make this calculation.

  • Performance: Because voxelization can be a bottleneck during training, most of this library is implemented in C++. However, the API is in Python, for compatibility with common machine learning frameworks such as PyTorch, JAX, etc. Note that the voxelization algorithm is deliberately single-threaded. This is a bit counter-intuitive, since voxelization is an embarrassingly parallel problem. However, in the context of loading training examples, it's more efficient to have a larger number of single-threaded data loader subprocesses than a smaller number of multi-threaded ones.

Here's an example showing how to voxelize a set of atoms:

import polars as pl
import macromol_voxelize as mmvox

# Load the atoms in question.  These particular coordinates are for a 
# methionine amino acid.  This is a hard-coded dataframe for simplicity, but 
# normally you'd use <https://github.com/kalekundert/macromol_dataframe> for 
# this step.
atoms = pl.DataFrame([
        dict(element='N', x= 1.052, y=-1.937, z=-1.165),
        dict(element='C', x= 1.540, y=-0.561, z=-1.165),
        dict(element='C', x= 3.049, y=-0.521, z=-1.165),
        dict(element='O', x= 3.733, y=-1.556, z=-1.165),
        dict(element='C', x= 0.965, y= 0.201, z= 0.059),
        dict(element='C', x=-0.570, y= 0.351, z= 0.100),
        dict(element='S', x=-1.037, y= 1.495, z= 1.409),
        dict(element='C', x=-2.800, y= 1.146, z= 1.451),
])

# Add a "radius_A" column to the dataframe.  (The "_A" suffix means "in units 
# of angstroms".)  This function simply gives each atom the same radius, but 
# you could calculate radii however you want.
atoms = mmvox.set_atom_radius_A(atoms, 0.75)

# Add a "channels" column to the dataframe.  This function assigns channels by 
# matching each atom's element name to an index in the given list, but again 
# you could do this however you want.
atoms = mmvox.set_atom_channels_by_element(atoms, [['C'], ['N'], ['O'], ['S', 'SE']])

# Create the 3D image.  Note that this step is not specific to macromolecules 
# in any way.  It just expects a data frame with "x", "y", "z", "radius_A", 
# "occupancy", and "channels" columns.
img_params = mmvox.ImageParams(
        channels=4,
        grid=mmvox.Grid(
            length_voxels=8,
            resolution_A=1,
            center_A=[0, 0, 0],
        ),
)
img, img_atoms = mmvox.image_from_atoms(atoms, img_params)

This library also contains tools for rendering these images in PyMOL. Here's what the above image looks like:

Refer to the online documentation for more information.

Project details


Download files

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

Source Distribution

macromol_voxelize-0.10.0.tar.gz (1.3 MB view details)

Uploaded Source

Built Distributions

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

macromol_voxelize-0.10.0-pp310-pypy310_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

macromol_voxelize-0.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

macromol_voxelize-0.10.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

macromol_voxelize-0.10.0-pp39-pypy39_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

macromol_voxelize-0.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

macromol_voxelize-0.10.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

macromol_voxelize-0.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

macromol_voxelize-0.10.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

macromol_voxelize-0.10.0-pp38-pypy38_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

macromol_voxelize-0.10.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

macromol_voxelize-0.10.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

macromol_voxelize-0.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

macromol_voxelize-0.10.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

macromol_voxelize-0.10.0-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

macromol_voxelize-0.10.0-cp312-cp312-win32.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86

macromol_voxelize-0.10.0-cp312-cp312-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

macromol_voxelize-0.10.0-cp312-cp312-musllinux_1_1_i686.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

macromol_voxelize-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

macromol_voxelize-0.10.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

macromol_voxelize-0.10.0-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

macromol_voxelize-0.10.0-cp312-cp312-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

macromol_voxelize-0.10.0-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

macromol_voxelize-0.10.0-cp311-cp311-win32.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86

macromol_voxelize-0.10.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

macromol_voxelize-0.10.0-cp311-cp311-musllinux_1_1_i686.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

macromol_voxelize-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

macromol_voxelize-0.10.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

macromol_voxelize-0.10.0-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

macromol_voxelize-0.10.0-cp311-cp311-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

macromol_voxelize-0.10.0-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

macromol_voxelize-0.10.0-cp310-cp310-win32.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86

macromol_voxelize-0.10.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

macromol_voxelize-0.10.0-cp310-cp310-musllinux_1_1_i686.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

macromol_voxelize-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

macromol_voxelize-0.10.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

macromol_voxelize-0.10.0-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

macromol_voxelize-0.10.0-cp310-cp310-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

macromol_voxelize-0.10.0-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

macromol_voxelize-0.10.0-cp39-cp39-win32.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86

macromol_voxelize-0.10.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

macromol_voxelize-0.10.0-cp39-cp39-musllinux_1_1_i686.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

macromol_voxelize-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

macromol_voxelize-0.10.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

macromol_voxelize-0.10.0-cp39-cp39-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

macromol_voxelize-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

macromol_voxelize-0.10.0-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86-64

macromol_voxelize-0.10.0-cp38-cp38-win32.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86

macromol_voxelize-0.10.0-cp38-cp38-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

macromol_voxelize-0.10.0-cp38-cp38-musllinux_1_1_i686.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

macromol_voxelize-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

macromol_voxelize-0.10.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

macromol_voxelize-0.10.0-cp38-cp38-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

macromol_voxelize-0.10.0-cp38-cp38-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file macromol_voxelize-0.10.0.tar.gz.

File metadata

  • Download URL: macromol_voxelize-0.10.0.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for macromol_voxelize-0.10.0.tar.gz
Algorithm Hash digest
SHA256 f69815dff8d7ef54cd1897e7dc63c13fd3e208d96a849d37353f0e531a214f53
MD5 9f2460cb9cdb61aeb226a514b6ffb7f2
BLAKE2b-256 a9dbbd1a96ad30f040b73cea02830b5e4a0d670a83ebce37e16d2e3415ddea25

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0.tar.gz:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e25f459c2167ed23d1c4fa4775a32ebca70626bf720fa37ee35e37bfe0dfd7e3
MD5 04804ad0badb1f6680f156a11e967144
BLAKE2b-256 211187284af4158a748af018e70bf92a985c08bdc7c868b52605f3a33ebca6b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3b636b2bfefb31d548a5488bd3d16540cd8534803f7da4727520fb5925cc7d3
MD5 6449338ffda4c3e552f9ea9c5d485553
BLAKE2b-256 eb791607b9a923bfcd346e95eec06db7bd1dd2fffbf816c858ce90bc0076367f

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b1223903354c195a1770ef205d1279c72ae8671f1c7e8e81c8ce59ef61bb289
MD5 c70591b821e84b6e206ef634e556fc6b
BLAKE2b-256 565a6f4930e0eab268fee4bae0c39dc4131bf3f2671224ac75f4d2ef1239909f

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6270f021cb446bbcf679fb394497d701910994bf6af463c068a21eced7724141
MD5 55b0f7792de549f041f828256e74e792
BLAKE2b-256 613e83c6d0c3373717a361e83e4c1d87d5f90df529cf883356a46fe8676096f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a5bb157127eefe20af5846950898424490442b44c1614b51d78e7de604fe213
MD5 a99dbce2f6333775e305a9d7c82512dd
BLAKE2b-256 2df3f4e4ef70cdec14db42ee217e14ecabef9187d18aeb2de0a9b5aea35f504f

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 261759acf36bbaffc5f26dc21715e45badbedb026e8a974cbc2de83bee5c2a13
MD5 204ecd56591d2194919d3b6969bc0251
BLAKE2b-256 a0131c5dc8c35fbbb2a97ace74d79e75e7a8f33c3dc2ad55ff87ae1879c28731

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp39-pypy39_pp73-win_amd64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 946db9b38f8d1286a1eddf8639effce90a782c46c5e934d367b0a2bb62f8412a
MD5 c5b24d498ff25626fb58e07796f7fd30
BLAKE2b-256 51878f1c10c92a525daa6ab3efff51177c08eebc42233097975c2759c43ec8d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f48cfa4fa05f0a1491b3b695dee9c2e324887797736f1c38c992462b8740a573
MD5 796f5165f8669b1f201f26110b6a14b8
BLAKE2b-256 143cb8188a35ac090afb56853380ef157869fa0c21e4716fdac433957a6370bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b0ab1e8511c76ae41310b4585f28e6c280110c402feac9dddc284ee47033df6
MD5 6f4f8f79bde6ad053177a6d840d5160c
BLAKE2b-256 9dbeda9d9a383a3292f9a97bbc59e600110317bba8ff2dfccc9348185b36786c

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9850f19935d5946517e291c037ca569f5d5ce0ca3fa039e894af7b64bbbe3839
MD5 a9af37aa3392b985b1465dbc0bac0f7c
BLAKE2b-256 dcc5799d0f63f9541285e06eb3f6e41b8b7a520b2c05a341ba2932ecfc12712e

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1846e9424568d4401996819c67e7faffe91023b50079a12ebb526964087be28d
MD5 fa05bfb81c0b93ba6c27561bc6cccdce
BLAKE2b-256 1af1f73ad0f2655b2f95c53d9b06cbadafbc45494a4217b82955f398694713a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp38-pypy38_pp73-win_amd64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a8967cdc41e2d2e27238b36fbb8361da4cc816eb1dc003eb268e455f69858eb
MD5 136e689a9b02ec7993e1a80f76f603c5
BLAKE2b-256 348b3f16ff27961e96c18db609acc82bb5fa8a420f62ee5c4cb4a66a119200fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 408ea98eb6400840acbd5b0989dbed18acfc1023bc5c298a7d495117288e6f15
MD5 8fbc45ca17a9b12f139f26acc54c67a4
BLAKE2b-256 0308c9aa7e15e3be0f638807399dd964613dafac3fc516753b7d818b27fa0aeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d7bc4c86bc3c5de1521a62c66b282aa84aa55f16a01a13a082cec427308a3ca
MD5 7ad3c3b94fe56629235bc4f445711c9d
BLAKE2b-256 4b9ff6eeac41ad98c32a610f5e6a4422016a4345376406116dfd4b5e092b65c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6994098c27c1ab3f13016dcfc69407a85cc5b873aa61234f3d3b59206382db0
MD5 0f9a69e0176e0eb9965207706ad2f801
BLAKE2b-256 c83942312e6387e9c6d3e84fb7b5c6facbfd3dd9b76a3b26632008ba21a1ebc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e7bb1fad64e723c4386b176ecd019782c9cb5d92ca5fa7d9ed5b4068c8f3ba10
MD5 4ae7dab9be322b247e0465d69629ca1d
BLAKE2b-256 bfb04c339e6c7949842c3a22b246faadca24bba1c9daa9eeeccb19eb629307b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8f59f4926bbbbf44017806f2c73b6323de85a1b3c5cfc05f7c69d9be6f39dbd1
MD5 5c591cc1dbab702000a911851570ebf5
BLAKE2b-256 a53991bcab0616f57c53a512c1e7debe666f435691d24099d65383845fdd4209

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp312-cp312-win32.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5032dfb3d624d7b8b456278d96c27531f14ca8a8cefe453ebe452bd7ab843a52
MD5 30a7181e220d6fe4f1840aabcbe682e6
BLAKE2b-256 360f9a0d3b278f93a10cd0d7665866ea0a57d2c28d08a6f2bdd101e1c080de67

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a8bb784abdb175b2faf0a6a1e30d58e8fd0bd9137227ef6a4a68f7f029cdfe1f
MD5 b57505ab8cc390ea085db44b932706fe
BLAKE2b-256 7f0cc6c56c02846afbf8a818dcafdb6b0e803ad218ece69f5ddeb257e162a7d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp312-cp312-musllinux_1_1_i686.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52a13a5988f7c591161bbbd2be638da683536e0f7b3dbadb029811b2e554616e
MD5 f3d7d953ba42bb8b1f410b03585866f1
BLAKE2b-256 ccd31acc0c55282279d6be4ed9aee402ed5d7ff934e90ba46bde6fdf7eb55386

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b1d87856b4911f98d8e5f007de6d49ec2e4edffeaec18dc4636e96d9381746e9
MD5 ad6984da61b452fdf0841be51fb9113b
BLAKE2b-256 b8248df9005895a586d92fca6ce81dbb684f9dea2d90f4bcd497434b80c33d59

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 baa216002abd47a1f8460b15d0cc253713a857decfed0e768749a06c82e3a138
MD5 93da66458e14c29fccd614fad23a6c76
BLAKE2b-256 9bda3acfcaa4bdcaac0d1b97dc8a27382d1d48005baf965560907f371037c888

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83f53e0212349e887bb70c976c271f4681f694e8017e25e9b59e4541eb6781c1
MD5 d9bc13f527bed9b9529b18123214478e
BLAKE2b-256 f61cc6dd0a224fa44ad21b1c895c20e09caefcfb69201d90332f48437b723754

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 35398c6bd9960a0a4d6f91e9c1475f5393b688e13130e25c87c2f75050743052
MD5 80bd4a82ef2d333f2fc2818eff74e75d
BLAKE2b-256 dfe6e3a3cdd4ee70b6d5278254cc9621605f6d92276592b2c5e051cd1aca00f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 08caf404c0c7f83387c01d4e7173650cbf155231a41e5c9714f8acb90b59eb78
MD5 af379c3a9f670c97d847e8f3e7ffa164
BLAKE2b-256 a981f2287ac50e4d6feb8e3bd1c9dcd2f8ba57ab990739cc67e7731b824937d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp311-cp311-win32.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2a018a5b1efff1b29467947d33d0ae45320174953bc1144b9931b44182644a98
MD5 a3266e9d5f962db38084a9f0ac20063f
BLAKE2b-256 217d6580153ca051bb47df1a84be0db999b6cfd8f8387ad34e55cffe3a684f9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f12fe466a09a1e973e52dc2dd0c021cc465e96ecec129ed77ef7d4a9e8e6cf24
MD5 c53a7922dad3a9d3050fbc41af6dca0c
BLAKE2b-256 f96e55b35e3a4be8c886e0035ba9a015f767d14cbdda69e23200528d2cf0b947

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp311-cp311-musllinux_1_1_i686.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0990faa82eb545884a9ea4c356b91169946a36dd08d21844d64d60630bfc4cf5
MD5 89ac102e4fb7c11c3cb12ea52e8061ec
BLAKE2b-256 2a46c4dd0efe80fabe3c88ae52c1f1a6491ac509f0e84024e5bd5d59b752b144

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d03bf60555d42221c28fee0d82786e9662a1913ebbba832c5208c62b3cff8a52
MD5 17dddd73a76ef1afef5873141dfc47c5
BLAKE2b-256 3f6420a413710da27998e7f8a17c3b3769a94787b6a558aed3025d0ba4e8b318

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2273d486968011e2e7065891a6751254aa1a81cc1792e03f489bab4b1640b0e
MD5 f7278c19a46c7e0fad672579d555cc39
BLAKE2b-256 25f29a0a8b71968f4cd911189040c15627f0f6dcd35b3240ba1c020072bbe5a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 acc38d536862b23885138de9df53305c3633a4738b890a3c25bc697d83591118
MD5 8f82e1ce2ea2eb1e4f4adfe02ffb21f2
BLAKE2b-256 724f32de865843a0b41b2afce6602e375a54f7894ded0cd97d20866a50437a79

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a6d0dc813e9355e3f43bfaa94c1f2d9f86566d4b5df399ed66f9861d296bf737
MD5 023b152634ab29d37cd85dec42ccd3dc
BLAKE2b-256 5ff42aa941040fba7894ee6653a76edbbb3125f3549a4df151c4229efbc30273

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 20be9fce70d75d8e5020232c6cd39c62ec5d9fb64c5972bced7f7a6d5e2eb637
MD5 594fb6b6bcb677de346121ba1efb5f69
BLAKE2b-256 c308b29ccc92d54e39222a6f256bd2a23496fcef499524291f909688eff95cad

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp310-cp310-win32.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dc18c64ee8bd20de25453d4a58f40142c158565faacd899c472972cb77c17503
MD5 f2b173b0ca3717572ce733fbccee184a
BLAKE2b-256 2644ebeeaecf0788ac4a443d6745007434b59c843044049043473e169edffe81

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2ce6b4111dbe0872584de1f3037954c247257986ab1a37bd4d349dbadbe06da1
MD5 40ab38be73b15ea8ed5e66f85f5f10d4
BLAKE2b-256 7bcd04f27609e935f5e4a7a27a4efe7843135f6695c9957949fa47c46fb51474

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp310-cp310-musllinux_1_1_i686.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29d6c26c22263edf4890f3c3685a27ee86fd7eb4daa0d641f19a834b35b5ba77
MD5 101e01f842b7d6e42216dc424abfc3e5
BLAKE2b-256 8914e1b619865a4411e35168b93eb5ced7cb9ea87f61a196b8dbd3de5affa5aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4624d95dc987405d69c426f87b0dac825e392e2140615fc15f5727469712809e
MD5 8e9cd9d241ef243817c4107ee61a502f
BLAKE2b-256 ba1d04afaeebd88bac02a9fc9580d0256e734123b44e26ef1c8af20eb0dceacd

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20880fcbcb9f6b6a39598eca4162e8016e28bfb47585f2bf4dbb750e0897f6bc
MD5 d6c386990fe8b4bbac744f0a2a3bc2ca
BLAKE2b-256 c03d1ca5b465910726ef9196b67469648bdb4590cd23c952730ba72e7503692d

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 065d9bddb65a4ce663818be84ef64fb193997fe8c361cc441b67a6373a573da1
MD5 20887d0af16dfde0385c0d08b8c9f397
BLAKE2b-256 7d5d276592977f5a3fb7064f6844fcca9e9e24d3f1fd00b37c9c2ab297e7a1ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 da2321078cd53a8170aa4202c9d2347a738ca3711a7b1ce31b93ddedd57532d9
MD5 dac26f78d42272a9e1091efb7685401b
BLAKE2b-256 121a3d90098b351fa536bbab3daca9996fb865f34d1ec19a589e1253e685ecca

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a1f79d1f099e8dd5588a9bb2ec87c5d4a7eb3bbcbdb92ab1f77fadfe80ebc544
MD5 914b54f15422e8f6d54da5ac84510a6b
BLAKE2b-256 b4c9d5bf7bd4acdd92e3b7ae2bac20e08d11cfc64a0022aa851c6a1243aba474

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp39-cp39-win32.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b233e627a2d1bed01044ca9369d720e8a8ea9568292af757b1dac6bf403a2362
MD5 436b1b1327e9f5e8cd4890d9060308cf
BLAKE2b-256 63f8aceefc01fcc411fa64ca8ced1a835d9202cf18dd01d62e7ecf812c710d91

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 52f3c97b7aa573c4fe07bf1f611f9d4ce5d2e570f32792ab8ba9d4f6815359de
MD5 49a6f85692e97a5a9f8d55ee6a932695
BLAKE2b-256 b79540b8028bc97808673275b50f87b8b9f73de30454f1b59ba9487b40cba398

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp39-cp39-musllinux_1_1_i686.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14e83e92bbf4e0ac751a3279a8fa3aaa0f6f52fb7ecc5ab1463650accb1d0c16
MD5 735f70eb1e83e2deeef7bd9700efa49a
BLAKE2b-256 7b9f999f3314ccaa3d46996d92b6127557c7d24e76090cb5cd016166d438c8c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1caf5c9e7b8e5879a57165e57d1a2249d25a3921501609ac9f1969342159cac
MD5 18b57f384cb1ec3a085279ca68c24116
BLAKE2b-256 291c947f4d7a6c90c645af77ff03e9de069c9d46f7017c61d928a1596a58ee8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 373d1c99e0435fb102fa1d7b26ebd7e83c37bed493ab83832caf9751ae6a488c
MD5 ddd97419c5bdcbc8dbae584849cf59db
BLAKE2b-256 427aee5e6bf2e7a1e073d2b5c2a3de3820745a8cf0f29011329d72a98963c95e

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40f361777feccf104b662a3ec1163f3474bb79abdf164b1cddd494db5c66b36d
MD5 c4d6bb33646df2790093e0340125897d
BLAKE2b-256 04fcdbebf7223128fb77c9f191386439cc2803f6ebb1271875514118367409b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 738ae4e876cae5a5de4ba690571955d6046136cb843de26fa53a50463bc46054
MD5 874d6dcf5ee65e21c633de407d9302c6
BLAKE2b-256 a9740fee9856c7b49b38937e66112734a45351ae78b77b7a95a97cea77e2ea92

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp38-cp38-win_amd64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c086e3d2c4454f2b4e91a34650596bb19c74b870d7c17bc9f920764af63ed75c
MD5 03d1f424ee5bc0b757aab2c1626d8cbc
BLAKE2b-256 1822239658f95d76ad7b0d61c1049010ee0cbc26365a3405ebeadc3a118c78de

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp38-cp38-win32.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0bb76cc5dc48972e088544bf4a85712ac5f794fa8eedebd4a9c23f400e3cefd9
MD5 96972afb64b496465cfee42ce62dce12
BLAKE2b-256 04af47d0eac671de5f7ab1685360c02c5980db92785f989448493a833b6ac7a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp38-cp38-musllinux_1_1_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 19e026aa1fa976df55d77b1b2d31acfc31e36a94ad7a121a50ffcefa7f7afaca
MD5 9d42e1567bcfa31c3ad5579823a824aa
BLAKE2b-256 7de6874550f3f9c259d6b05bf8693cb65ef45d08d539043080ad57e9815da0fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp38-cp38-musllinux_1_1_i686.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32c2ab6575c7a62874c985ec6d30f5f9fdbb27beb09fe6679d760723aace4d57
MD5 a5546ac13063626e6606bb6f517fa853
BLAKE2b-256 048b28748f66497bbe2997592ebab7594ecd5429fda523d12a247542cec97ce2

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93ff503844350aca79b3b421896dfb3aceaf75395d2f0c7e3aeceb485a962c0e
MD5 f660eacc5c2f7f3b0db3435db6d17a93
BLAKE2b-256 74be671456534897a5c6fd372d396aedb8eafa0fcb7a6d26734fd237a63922cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ad4301533c3ad9176c26e421f5fc3b76fdd857cf0636d0b1cc1e3d9f6a75df7
MD5 23e28f9dfde09638c41e50bdc564a87b
BLAKE2b-256 562d22ed173df821a135961f0d9cfd30b9f0f42c3cbe6e47102738dd236a675c

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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

File details

Details for the file macromol_voxelize-0.10.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for macromol_voxelize-0.10.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d798aec9b114d661990b302884d29b8140f19177d773e5183b427bb6d75b25a1
MD5 520ce5639524133da65eb258bf83747c
BLAKE2b-256 853b1f15b7d8c73c5922beb4240b152de7b8363ec99ba2dad1926c7d44e5bf46

See more details on using hashes here.

Provenance

The following attestation bundles were made for macromol_voxelize-0.10.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: release.yml on kalekundert/macromol_voxelize

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