Skip to main content

Fill voids in 3D binary images fast.

Project description

PyPI version

Fill Voids

# PYTHON
import fill_voids

img = ... # 2d or 3d binary image 
filled_image = fill_voids.fill(img, in_place=False) # in_place allows editing of original image
filled_image, N = fill_voids.fill(img, return_fill_count=True) # returns number of voxels filled in
// C++ 
#include "fill_voids.hpp"

size_t sx, sy, sz;
sx = sy = sz = 512;

uint8_t* labels = ...; // 512x512x512 binary image

// modifies labels as a side effect, returns number of voxels filled in
size_t fill_ct = fill_voids::binary_fill_holes<uint8_t>(labels, sx, sy, sz); // 3D

// let labels now represent a 512x512 2D image
size_t fill_ct = fill_voids::binary_fill_holes<uint8_t>(labels, sx, sy); // 2D

Filling five labels using SciPy binary_fill_holes vs fill_voids from a 512x512x512 densely labeled connectomics segmentation. (black) fill_voids 1.1.0 (blue) fill_voids 1.1.0 with `in_place=True` (red) scipy 1.4.1
Fig. 1: Filling five labels using SciPy binary_fill_holes vs fill_voids from a 512x512x512 densely labeled connectomics segmentation. (black) fill_voids 1.1.0 (blue) fill_voids 1.1.0 with `in_place=True` (red) scipy 1.4.1. In this test, fill_voids (`in_place=False`) is significantly faster than scipy with lower memory usage.

This library contains both 2D and 3D void filling algorithms, similar in function to scipy.ndimage.morphology.binary_fill_holes, but with an eye towards higher performance. The SciPy hole filling algorithm uses slow serial dilations.

The current version of this library uses a scan line flood fill of the background labels and then labels everything not filled as foreground.

pip Installation

pip install fill-voids

If there's no binary for your platform and you have a C++ compiler try:

sudo apt-get install python3-dev # This is for Ubuntu, but whatever is appropriate for you
pip install numpy
pip install fill-voids --no-binary :all:

Current Algorithm

  1. Raster scan and mark every foreground voxel 2 for pre-existing foreground.
  2. Raster scan each face of the current image and the first time a black pixel (0) is encountered after either starting or enountering a foreground pixel, add that location to a stack.
  3. Flood fill (six connected) with the visited background color (1) in sequence from each location in the stack that is not already foreground.
  4. Write out a binary image the same size as the input mapped as buffer != 1 (i.e. 0 or 2). This means non-visited holes and foreground will be marked as 1 for foreground and the visited background will be marked as 0.

We improve performance significantly by using libdivide to make computing x,y,z coordinates from array index faster, by scanning right and left to take advantage of machine memory speed, by only placing a neighbor on the stack when we've either just started a scan or just passed a foreground pixel while scanning.

Multi-Label Concept

For multi-label void filling, see https://github.com/seung-lab/fastmorph/

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

fill_voids-2.1.2.tar.gz (3.2 MB view details)

Uploaded Source

Built Distributions

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

fill_voids-2.1.2-cp314-cp314t-win_amd64.whl (203.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

fill_voids-2.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fill_voids-2.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fill_voids-2.1.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

fill_voids-2.1.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

fill_voids-2.1.2-cp314-cp314t-macosx_11_0_arm64.whl (202.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

fill_voids-2.1.2-cp314-cp314t-macosx_10_15_x86_64.whl (218.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

fill_voids-2.1.2-cp314-cp314-win_amd64.whl (175.8 kB view details)

Uploaded CPython 3.14Windows x86-64

fill_voids-2.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fill_voids-2.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fill_voids-2.1.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

fill_voids-2.1.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

fill_voids-2.1.2-cp314-cp314-macosx_11_0_arm64.whl (190.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fill_voids-2.1.2-cp314-cp314-macosx_10_15_x86_64.whl (208.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

fill_voids-2.1.2-cp313-cp313-win_amd64.whl (173.7 kB view details)

Uploaded CPython 3.13Windows x86-64

fill_voids-2.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fill_voids-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fill_voids-2.1.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

fill_voids-2.1.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

fill_voids-2.1.2-cp313-cp313-macosx_11_0_arm64.whl (189.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fill_voids-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl (207.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fill_voids-2.1.2-cp312-cp312-win_amd64.whl (174.0 kB view details)

Uploaded CPython 3.12Windows x86-64

fill_voids-2.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fill_voids-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fill_voids-2.1.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

fill_voids-2.1.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

fill_voids-2.1.2-cp312-cp312-macosx_11_0_arm64.whl (189.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fill_voids-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl (208.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fill_voids-2.1.2-cp311-cp311-win_amd64.whl (187.0 kB view details)

Uploaded CPython 3.11Windows x86-64

fill_voids-2.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fill_voids-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fill_voids-2.1.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

fill_voids-2.1.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

fill_voids-2.1.2-cp311-cp311-macosx_11_0_arm64.whl (194.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fill_voids-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl (219.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fill_voids-2.1.2-cp310-cp310-win_amd64.whl (187.1 kB view details)

Uploaded CPython 3.10Windows x86-64

fill_voids-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fill_voids-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fill_voids-2.1.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

fill_voids-2.1.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

fill_voids-2.1.2-cp310-cp310-macosx_11_0_arm64.whl (194.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fill_voids-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl (217.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fill_voids-2.1.2-cp39-cp39-win_amd64.whl (187.3 kB view details)

Uploaded CPython 3.9Windows x86-64

fill_voids-2.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fill_voids-2.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fill_voids-2.1.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

fill_voids-2.1.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

fill_voids-2.1.2-cp39-cp39-macosx_11_0_arm64.whl (195.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fill_voids-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl (217.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fill_voids-2.1.2-cp38-cp38-win_amd64.whl (191.7 kB view details)

Uploaded CPython 3.8Windows x86-64

fill_voids-2.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fill_voids-2.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

fill_voids-2.1.2-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

fill_voids-2.1.2-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

fill_voids-2.1.2-cp38-cp38-macosx_11_0_arm64.whl (199.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fill_voids-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl (220.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file fill_voids-2.1.2.tar.gz.

File metadata

  • Download URL: fill_voids-2.1.2.tar.gz
  • Upload date:
  • Size: 3.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for fill_voids-2.1.2.tar.gz
Algorithm Hash digest
SHA256 2b9ef2753ffd2394a1948f9a11431a7ff084d4d7024509e0466b1b260be089df
MD5 b11a7b517581f34b483544e4026160b2
BLAKE2b-256 f0cab7be6906b27c5620df0ecff8ddbd00b81aa238ca24ec1f9e424cd3f3ff02

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: fill_voids-2.1.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 203.4 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for fill_voids-2.1.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 883695c30048660ef043ee8a48e5a15b0e70e5db792aa2207c9b3812472dfaf5
MD5 68c0470880102df9ffa61be603237e75
BLAKE2b-256 74f61797633bcdeb9121de82d73c35ac4e1fa8ae24e3778e2324d7ed923e27ba

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02a044ec78f630155fb4eab8bbaa6f935c915472e5d4b6ed0cbe643dd026dc73
MD5 309a3f26e655640c3f2533a3e07a812b
BLAKE2b-256 51b85f62ef7ecc2531ca0e8c99b1b8a6df70e4d1960ed86520223feb9f0dc238

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 620455dca04628b71f02ff86dfb7056f07f93fb6022e5b90006ad80a8b1633df
MD5 6f7df3b5a661c60f68c87d24e2ed63ca
BLAKE2b-256 d8e147747ee139e99d239b2df25dd2e1ae2bf979592d3a03670244c3f174474a

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b1095cbb7def09ad9d32d52adfebc16eb6b410ec087d341ccfd4013aa5a6ef8
MD5 ad1132f1bfcaf24e7a1c8235501fd2b6
BLAKE2b-256 9202fdcf6a3fa3e9ee070828d397b2caf80a02183d45b205f6f12febd3dc5716

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a4f86e807afce22fa0668c97ad9959d1b1ce7b255411832741e1a9410432f63
MD5 3fa8c7836bae6d1824ae36815abb122a
BLAKE2b-256 2e15a89d04352035896d8bee737cf3af6768a8aca5b354310b25339da336248e

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afc0f086ee0d72cf124ea2e05cd91de43e6a2dcfea2214ebe2eae25532118141
MD5 c6d77ec88448e20d8d417837fe50a57e
BLAKE2b-256 c791b1e107315073fd9fd72a0be4f2ae0d750f3f6789a6ae92ced8b7d44ef4b2

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a813b53253144a82548902066a251f2ae52598fb3ef44722293aba82a8367c09
MD5 f12d8f2f784d0195d2b8faefdf951611
BLAKE2b-256 de49b6420ee8e85608ce57c56d3ee52f8ae4a9d9dc8d96fdc5b2019f0de4e8cc

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fill_voids-2.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 175.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for fill_voids-2.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 56dbd5aaff3b5e07824d974525e14a116526b3c07ae4dafc5a805eab99ae016f
MD5 b5b5c13ef931147b066fc093aaa9c765
BLAKE2b-256 3576500e0803afa9c9224b5e3f2cf534fe731f36eb68090c762ef9cd004e0d16

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14023b0803da5fc77aebf16f404596965d1699ea58a3d658da3d1564f374f4c4
MD5 9fba95be51f6d72dc3b3e83355bf5cee
BLAKE2b-256 ebed818f29b56087ceda015cbd1c5b93c323b98b9f8afe1a918e46a776930887

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78a2f22b9b221cdc0f19030a9355a73192a1e4087d2fb5acae49c8f84653d6fa
MD5 c96d8072a8054479d4174c33611c96c5
BLAKE2b-256 42e068b56983099a5ff02f3f7994397bfe4efff849cf58f4e8886759e7dfe66d

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c5666a561eab6cd24e6bcf1fe8d9e2f31b4e0d8b7f84e26eb882d53aff033f7
MD5 3f5663a117e2b7ee31c6ce7d2cd9deae
BLAKE2b-256 414e152d8a8dee6858ef378bdc6b0d7fdf380dd4d71e5ebc0d0522bc40a2efad

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d505758017fe24deb32aca0a246ef95da3838aa623f858aeeae49aff4496d38
MD5 2862b5cebd88b1658209e55fc3ad716a
BLAKE2b-256 5ce45bd175448978d2b0742b3c2ab95e8e133088429933b25eda8a0bc5074fa4

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72608da4556ddc09829702ab755ebfcd23ae03702303d7b757cfab102e680dc8
MD5 01715dc86ec04ba32a0c1ff371b31aa8
BLAKE2b-256 418a564dba5148d7fea6c9241ee46cb306ef8c7fc3b73e802962d8f9456b76dd

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 821f3e586df0d8202d4decc1b4751e49a980546d3ba600de9570557d1e6f3528
MD5 39d589760de53197b4de0eff608c90fb
BLAKE2b-256 dfc91d2341811c284f396d4b2a8abf09a772a40cf456345f02bcfbaefac0701f

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fill_voids-2.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 173.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for fill_voids-2.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dc52abad93670d910d221330d11132ba9f14e9cea6df3d80772a1bbd007a9445
MD5 49a596720b24b9c6431b23d8b6088c61
BLAKE2b-256 ac365d5d6a86d850a829dd3ea2e8036576909cc48d5ac7b26b1771625856a481

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4d9def2de9cafcec367341ce81078a30465c4de27ff55c973ee29edad07701c
MD5 49dc6c97f9a3e49f2e355388c292d460
BLAKE2b-256 e06b3d23e65c4a967e62ca097decaa7caf182a7814102ed34f42e67c2edcee1d

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15d9d007f9b473115ae3df49feb5ed3f632b28ed3e39be82a34937b8c786bda1
MD5 58cfa0baf00bfb0123ca4662d1b7b1ad
BLAKE2b-256 31a0aa0383524502292aa926e2cf88ebfda47f2ea5ca71e0e599c8536274dfab

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55c20f81882f037fae3ac968bb5cd79550a2abeeda5e5993e3854385a5ccfab7
MD5 9aa4bf7e8ebf5a488c26b56feec98bad
BLAKE2b-256 c8c8b1d1c5f72719efb1be70388e45f1b4ca71e580597240110438e97a78218b

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 344f692be2dfc5bff2f1faea1d605229ed570d0eacfba66160195b8e6fea3a81
MD5 dfa603386066bf02d83a726a495f3793
BLAKE2b-256 fbf12f5171eee4294df69db20c077f9c98677ab6c3e4535dbc72b1e81443c012

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5a9d426959112fa7879cd39b4c5ad99309810058ac62681772e992af51c36cc
MD5 0a0a432e79eacf9e100b48b3eeaf55fc
BLAKE2b-256 8571c462e751386e0e3b46e17921c5f6ce9ac18189dfd127884b2f77fa558ace

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7dc02a4208de7497f1b02109d54ee4303ec7c85c98b6a3e8e0fd98d4f258bada
MD5 2a1c52830b969d28726367f786ff74ca
BLAKE2b-256 a067525b5042a0681b93a8a74be7aa61c92445d4dc7a10c940b223bf1d713586

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fill_voids-2.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 174.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for fill_voids-2.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ede3fc63a3c89058cc24b6abfb54beeef4a22d26511e08e0e4d89e779c038df0
MD5 df3ac626041dae8bd509c9472181e9f1
BLAKE2b-256 7d4827af1b78cde8f0e4f20083c01565a4bcc57be62d8b19bbb7ee78c202b5a3

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa6d3c816d1e4532eeed21ef4d919c517c4bfa34dac7bc3b841be7530b36bebd
MD5 7fbfc56bb4f974838b872bfab27d3e66
BLAKE2b-256 7c2ba8cc605aaaecf9810968201aef024f54e4f0682666e0dd5d71b5a0d1f965

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 268a0fb817fa6149f4cc54d7c959526c34d8ea74920c4a46efefdc90f79d3eeb
MD5 72a63442d9308b067032c798d90c1db6
BLAKE2b-256 7d69a5168e0f3f9500212b6262a6b80c2b3a716e2227df5250f09606c0a8bf88

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2261bb1c6d0bb34fe4078af215e92630bfeec4028558b5295308b61b54d4a720
MD5 8799854bef1c4fa5cff4eea71294d365
BLAKE2b-256 88b7600e84adc5f0e1a41005a36ec5df23a3c27b73284717c2bc85c1233fb33a

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3abb19e76c0b926f178e6ec8741808d07a8c825a684d1af38be957507f89f04
MD5 6b92fd3fa17b29e1d621a033eae22a11
BLAKE2b-256 1354a61dde5c00afac52689be7e45b81c8ab4890f31509a85a2ddb360d1ef614

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 989d5da074b270937280cdfafaf1d943996b27fa1d8496d229114ffdfc24a4f1
MD5 efd7ea46155f1cd5da440e0e61539c2a
BLAKE2b-256 ebebeaa16793f50b0b5a888229039a6d5bd40c0b532f5a05fa778e77d7eac137

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f5ad954ca80b982e6141270d3738b948ae66e0be3f19130e0a9b98cb554c3b51
MD5 22754c55d8cd863c6bfcdbbf2b0122ec
BLAKE2b-256 3a49536abc36f5de427b96b3566dbd9d724998ac09b1eb1accbca10116255ca8

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fill_voids-2.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 187.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for fill_voids-2.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d09b7847e510bd5dcfe5e6c172f6ec35ffbb2ee20501c918124552658caee62c
MD5 40b6eb988cd0cd2c73fcc2a2f717e293
BLAKE2b-256 1a7293b8311ef54704c5a483c9ae9713dde0a704c03bf59d4ace840341f864e8

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28ddebd2b7abebaf775151c6e397e6adc8d9c4c772c8b83cda42ac5447540efd
MD5 02fda5c6ce527c1e1050cc4b03cf244f
BLAKE2b-256 6f346c202cf21e16c9f9cf24852e30473c5c5fdbe47de05a5dfc8b07d4fd0818

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8b5e19e1141332ba1e6a3354c7f8a81844a60cedeedcd700e3b5019f042cf92
MD5 1c2fa8efe5de154982ebca1f60009fcb
BLAKE2b-256 5ea5d6da9c4eeeff3f0cdbb569ba6b5cc98e5848cd906c69ad282cacc29d08ca

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 123d432afea5ac28289a7f15232bff78df378e8cb3e4aad8df9cda35d78a4aac
MD5 0820e875c0c79de97061de9c707497a2
BLAKE2b-256 514e399e45ff5ccdf571316a1f3eb482033e5b5cfb8959e614150b6146029bf0

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8867f88cb102fd9dab20c1a283a327ecfd0462b700813a4179704ed2de9559bd
MD5 b3144e1f537624cfe052b5f58b46f9b0
BLAKE2b-256 3e2250ec3a98dde695c1c2e91d800932a968cad853111831381878e175e4b0f6

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f0c37636d1da508311550914a93bf3d363924e740d16da93a4216d1b72d4ea1
MD5 e2bd2812c1cc690f341f85534cfb6c9d
BLAKE2b-256 f0a8aacd51f6a38f7983c260db41c37fc297e571e7adbe662e71a6c978b2e4a6

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44e23f97bb4d47949fc822d9135133f7c0fd28beab233bdd41ef2f7895a4ae88
MD5 a63a5f9f85738e8e7cc805eeb46bb0fc
BLAKE2b-256 5bfff55e2e321c8058fe42ab586542f6a43c127826fef19dd3f79838dcc10f50

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fill_voids-2.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 187.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for fill_voids-2.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6b42889bc8c96f128b70029ee7f559719204cb68e0eb68a007d97972012862ab
MD5 4c4b511231f8bbd65746b0f97f175296
BLAKE2b-256 bde4a727de574773e4b2d86f43bb8522c5dc4e182a1650fa477e93a785b61519

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10db71f08bc539e00cdb311ed75b5d9ba98faec761391f34a73a1fd8367069df
MD5 ab034bedc0bd580a586629ebf1c48c3b
BLAKE2b-256 688f9fa0cdcbd5264907b3da9c60063d935629c7a940ea0a9496212dc2a4966a

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 133e6359a2a98c41c126b7f16843776a951e212a3200f940515e34f4e28e6194
MD5 e257aef4fb1414001fdce551fe75f75a
BLAKE2b-256 8b29fedf7d0e582b57d9239528676ba981ccdc5ce2703826496c252e5aba8c0f

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ab04cf44bb34c9b9082115a4f57b928ae4b9e3fe1863051d123ebf06f561f13
MD5 da436168dd03128c2afe4b6aa3a208cd
BLAKE2b-256 d5c872686cdad340536daa6560029747808a15ba73727894792e9564f08b381d

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b34db1c250c5c52a0648b83d7206087a78aca37b5b8cf689f25925ab2a230ae0
MD5 264e492a87fcd442af42f226b1c193ce
BLAKE2b-256 43fe6b867d5b5f91a602f5d4bd42267c39c31c1a02e2480e25f41a8acebdd2b3

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77bba7ec59f192f4327ecb9dfb27ead07627fe0ed08c71c168cd2a96d6dccfee
MD5 c1c39e51fef5bcd634744212c1e1b303
BLAKE2b-256 e8b2576b012ea8467da97f43d1d135316cf397350808e8c95e228d7b49396a49

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 def51177cace98c7ec56f282c989eee615e5581d8a7e9984c5e13b826392c5db
MD5 adbc7053bd8757c08be15753b963a046
BLAKE2b-256 b292bbef16cb8e231b4afd7387ae6c10c5b1388325473ee833011631afcdd69d

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fill_voids-2.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 187.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for fill_voids-2.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 73a868d085b990b8d28d1a7c9bae9e6f7b8b673b4d3953da4630eecd4c265e1b
MD5 dc82303d2082a6d2cadacf715b5252b3
BLAKE2b-256 8a108f73c2e348972495ed4b9c749d1c3101c92d872475d1bd079733ccf94aaa

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18fb07ee43d1c9985c086d019fcefe282598c3860d1fcb880d288a2a2cab84cc
MD5 a0d726fca889da797a7d5a6d011f70a4
BLAKE2b-256 1d7932acb0d4762f7c1dd645d771c8c53d9bc188ccb9cefd0aff825ec47aa4e6

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3385a812c1242aa12c28de9b91842dafd3e48f591a3e0b8b4a11613468a58985
MD5 58dfca4e44c9a685be71e4ee551f5e74
BLAKE2b-256 58f53dc1f72041c3049fd8733cfccf19304aadf53dd0d8ec748a132fbe54e998

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ea9ecd2e04ad488a37ad5309208adf7de4439d85c328e183b390635e758fd5c
MD5 0275c576caa7b7a47c404aff578ef667
BLAKE2b-256 3d0525299bf7001e86d4a87bb22941f2a3b3164159efbb6625e2ba72d5dd0dca

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 134502aba715c0a2e08bfb498c30a7bf15793419a5521acec478db690e269523
MD5 01a10cfce23891e34a8375586bee8d64
BLAKE2b-256 2b51ed91020cce0b82b893b00ec504d5aab7888aba1922fbc8d92f97fc6ee6ae

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2c437759fb1f1d1c5b4da5893a4aa3d508939847a57c9619a0164d5daa2a41b
MD5 71e2ab1f36ce8823b918674773437fce
BLAKE2b-256 751fdfcacf82e09edc10408712359d1a0e8ac59a138929ae388dee4e6aef17b9

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 28c2a0536b0c9a2366910f6e300edf6f73158e99212bf9636a0f358c40c96f79
MD5 5ef0de6b179c9f6b443857479789920d
BLAKE2b-256 bf376b8650ee04c5a4107993b24f43827b26456c44518331aa791ead650bd69d

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fill_voids-2.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 191.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for fill_voids-2.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3c0fcfa54ac5c9fbda0dc943b42930c38e74b6220416fda8790ac7cea9c1cc06
MD5 66c59a81fbe83ab22af305e81a0e97d0
BLAKE2b-256 92f9266362537eb5b301266561d4d38528d3ad33f0d1001275574eee567fd012

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3588731c41fc6f3cbf3a2e836b227e3ad45848b141e39d3a5bd74c80443250e8
MD5 8e49dbd85b7acbbcac3309be4285ac91
BLAKE2b-256 2bc702fcf7cf46ca1bcf044ed41c7e8784f3b59b5c7e4856971e949314f86f62

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fabc7dcbfd88a710510c85ba3cd3f721e0346d75fb6df38931a2e76aa26fa517
MD5 60574665343bd1685b50b1ccfecb8956
BLAKE2b-256 d913f13b4f814e7fb64ede1340742066fc4833fa35715cabd915863ec73271e7

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3fda4910957f67912e4ab06defba95528b833c44421d1c34d29a1c17558cf69
MD5 5fd1c034f92ad8b3b514ca7c538d55f2
BLAKE2b-256 c91d1675ccf65fc3001307739eeaf2df910d57f23dc7dba358417de997546b20

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 524a1a8b8d16fef60cfd957a6441438e651de4e6723a1cfa0b38c966a8b1787c
MD5 79c6a6d69a619798f935f792efc68fb7
BLAKE2b-256 a001a361938928979a24ec1390dea7f2032d71da94a50b0ac3267d04d9b38e57

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b85cfbd8ccbd0025791f1774878acf150ccaaefd8771b3fd3350fec5e5f17f0a
MD5 07c6771492f7c68c3e2242524ccfba12
BLAKE2b-256 b09c1ce1cc2d3168408e20269f64eb43fa0585085d8d0e305c233c9db59a45ad

See more details on using hashes here.

File details

Details for the file fill_voids-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 142c1e99a9c808d787f6f0526ffbb30c7b7dbf8a794940d60be97904c033cb04
MD5 2a5c990f80da7355079baa49d36d9717
BLAKE2b-256 7c9c1fd53c4e8a886892384418f1e4e83aecbe97d89a346983ac79b24731186a

See more details on using hashes here.

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