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

Similarly to the connected-components-3d and euclidean-distance-3d projects, in connectomics, it can be common to want to apply void filling algorithms to all labels within a densely packed volume. A multi-label algorithm can be much faster than even the fastest serial application of a binary algorithm. Here's how this might go given an input image I:

  1. Compute M = max(I)
  2. Perform the fill as in the binary algorithm labeling the surrounding void as M+1. This means all voids are now either legitimate and can be filled or holes in-between labels.
  3. Raster scan through the volume. If a new void is encountered, we must determine if it is fillable or an in-between one which will not be filled.
  4. On encountering the void, record the last label seen and contour trace around it. If only that label is encountered during contour tracing, it is fillable. If another label is encountered, it is not fillable.
  5. During the contour trace, mark the trace using an integer not already used, such as M+2. If that label is encountered in the future, you'll know what to fill between it and the next label encountered based on the fillable determination. This phase stops when either the twin of the first M+2 label is encountered or when futher contour tracing isn't possible (in the case of single voxel gaps).
  6. (Inner Labels) If another label is encountered in the middle of a void, contour trace around it and mark the boundary with the same M+2 label that started the current fill.

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.0.4.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.0.4-pp39-pypy39_pp73-win_amd64.whl (143.8 kB view details)

Uploaded PyPyWindows x86-64

fill_voids-2.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (193.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fill_voids-2.0.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (188.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

fill_voids-2.0.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (166.4 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fill_voids-2.0.4-pp38-pypy38_pp73-win_amd64.whl (139.2 kB view details)

Uploaded PyPyWindows x86-64

fill_voids-2.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (193.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fill_voids-2.0.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (188.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

fill_voids-2.0.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (168.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fill_voids-2.0.4-cp311-cp311-win_amd64.whl (168.2 kB view details)

Uploaded CPython 3.11Windows x86-64

fill_voids-2.0.4-cp311-cp311-win32.whl (134.4 kB view details)

Uploaded CPython 3.11Windows x86

fill_voids-2.0.4-cp311-cp311-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

fill_voids-2.0.4-cp311-cp311-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

fill_voids-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fill_voids-2.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

fill_voids-2.0.4-cp311-cp311-macosx_10_9_x86_64.whl (221.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fill_voids-2.0.4-cp311-cp311-macosx_10_9_universal2.whl (388.8 kB view details)

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

fill_voids-2.0.4-cp310-cp310-win_amd64.whl (170.4 kB view details)

Uploaded CPython 3.10Windows x86-64

fill_voids-2.0.4-cp310-cp310-win32.whl (134.1 kB view details)

Uploaded CPython 3.10Windows x86

fill_voids-2.0.4-cp310-cp310-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

fill_voids-2.0.4-cp310-cp310-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

fill_voids-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fill_voids-2.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

fill_voids-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl (221.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fill_voids-2.0.4-cp310-cp310-macosx_10_9_universal2.whl (767.0 kB view details)

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

fill_voids-2.0.4-cp39-cp39-win_amd64.whl (171.5 kB view details)

Uploaded CPython 3.9Windows x86-64

fill_voids-2.0.4-cp39-cp39-win32.whl (135.1 kB view details)

Uploaded CPython 3.9Windows x86

fill_voids-2.0.4-cp39-cp39-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

fill_voids-2.0.4-cp39-cp39-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

fill_voids-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fill_voids-2.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

fill_voids-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl (223.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fill_voids-2.0.4-cp38-cp38-win_amd64.whl (171.6 kB view details)

Uploaded CPython 3.8Windows x86-64

fill_voids-2.0.4-cp38-cp38-win32.whl (135.3 kB view details)

Uploaded CPython 3.8Windows x86

fill_voids-2.0.4-cp38-cp38-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

fill_voids-2.0.4-cp38-cp38-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

fill_voids-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fill_voids-2.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

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

fill_voids-2.0.4-cp38-cp38-macosx_11_0_universal2.whl (388.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ universal2 (ARM64, x86-64)

fill_voids-2.0.4-cp38-cp38-macosx_10_9_x86_64.whl (221.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

fill_voids-2.0.4-cp37-cp37m-win_amd64.whl (163.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

fill_voids-2.0.4-cp37-cp37m-win32.whl (133.0 kB view details)

Uploaded CPython 3.7mWindows x86

fill_voids-2.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

fill_voids-2.0.4-cp37-cp37m-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

fill_voids-2.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

fill_voids-2.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

fill_voids-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl (214.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

fill_voids-2.0.4-cp36-cp36m-win_amd64.whl (176.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

fill_voids-2.0.4-cp36-cp36m-win32.whl (141.5 kB view details)

Uploaded CPython 3.6mWindows x86

fill_voids-2.0.4-cp36-cp36m-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

fill_voids-2.0.4-cp36-cp36m-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

fill_voids-2.0.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

fill_voids-2.0.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

fill_voids-2.0.4-cp36-cp36m-macosx_10_9_x86_64.whl (214.5 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fill_voids-2.0.4.tar.gz
  • Upload date:
  • Size: 3.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4.tar.gz
Algorithm Hash digest
SHA256 c168d919a1aa6cbf5431c61d2e2e1264b1c0b36a75436b1cc1e6bd30769c0be4
MD5 f0252e9e72b31808eff79e6f35c9b1fa
BLAKE2b-256 74fd8de036e87e2bf9c1c890d26bc76bd7455866d1131f29b796dc424dfb192d

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

  • Download URL: fill_voids-2.0.4-pp39-pypy39_pp73-win_amd64.whl
  • Upload date:
  • Size: 143.8 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 49dad1cb282b1ed1353b9ebc7ca7f41d59af4477e72ec6cfad39e88f003e3571
MD5 025a5b86c2627e565be01e518a36d044
BLAKE2b-256 273dce84c9198bd9c6232bd34eb47994f02fb15c0dede097e153a80f09478b9e

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be1688e30642778331ac2b9574e2358c993c9532f105ac23c4451146137e9965
MD5 486ef454734d90bae7df9e31609524e0
BLAKE2b-256 d96eacc5e7942caf769ae410f22116ac15fe660255716467efadfafcec911787

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0d3197d262558fb527a5f713f6ad65f6e3835006c3c057c1d3a904dae6f9d8c
MD5 1afe9f758546bd49d77d058c555662ac
BLAKE2b-256 1ef577d2abff70603ae2b7647d4fbe3be1943ab41c1b246efb8ff7dba5b1899d

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fill_voids-2.0.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 166.4 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ef6f016158ae15d26d52485b5a10180fc0d0f01dce53536584eb7fd865d96f6
MD5 324421aaebc327984f3c6fa7df7b1221
BLAKE2b-256 7360a9b438ad79fc0fb3e9c73435f209acca5e5b0d1677ab6a6ec7a1dd2b0f8d

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-pp38-pypy38_pp73-win_amd64.whl.

File metadata

  • Download URL: fill_voids-2.0.4-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 139.2 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 42a4918351c23bc76bf40a90592e1cdb61e9e12842ce058d0ee4dcd27c48c21f
MD5 f01ea70be8ba5dd6bfe7f66de9726fca
BLAKE2b-256 6e6fa654c4580abce637a723115c99e068339937b4ce72b504fe61e37d5fad26

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64641deca2527e3523473b7548b636516f181a224fba72bdfe9afc395bc2657b
MD5 a53566674f699b28b8d7ae453265a03b
BLAKE2b-256 25477a320d86995fad8285c617fa876a40a565a028deb7047ff8b70ed1304b2f

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4f6800b280f379be02fd188be275917761f8a17fab1bc085d10cee7b57d0aafd
MD5 e03e0cb10ab2ea024e1f99bf45c37aaf
BLAKE2b-256 f3c115659c7c1667d18794d7669398357558c64c2d96876e5f56c838bbdac522

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fill_voids-2.0.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 168.7 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 29e43bf852d32eff3d4a734d246b8ec835d82628e1e009dcbbf20c261763d9f2
MD5 fdcee5c619db3b24373336d3086872dc
BLAKE2b-256 6e7a36df18a52cf038e536d05a3cb0d4b0125b0a3d673928e469f1fae495f56c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fill_voids-2.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 168.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7ff96cf98d9e0c075d2d8a800dc1b6a13426f8083ad6ea39d174fb996d4c33f6
MD5 f5c6fbd6ebdea49f60e7c0d499bd61cf
BLAKE2b-256 6092562ffdefb90e54873a0a2f6096ab533178241258cb353e562f6ab4ea0c6e

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 134.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6011ff798aca5698e3c6844bb963fb799488ce5a00d5739727eea47c62e38d59
MD5 d21d4407172862fac2dc4d9f8cab8a9e
BLAKE2b-256 b526f86df278c7e135d0ff525acde3b3063467c55e549f69d2e024d071dc616b

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f584f320a833dfba449b3690ffa7e156ba90312da39919fbcf75f824bfd77e3f
MD5 a72a00288c94728dff275c40342a7c2b
BLAKE2b-256 7521965bc9bd611664ec7e20f5cdfbfd16f3651b0407beeb9f41579a2b525cb8

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp311-cp311-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 55c52a520ab40d0db73c4cd7d82e299c8d04f17765d2974d34dc5ae14d126257
MD5 c2e2d6784eeb39c4694527e7bee7dd0d
BLAKE2b-256 480cebb30a47a28623a3d61ff96ae4699c7873a265fc4bf3fc97f76854baa928

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6204f3730ed5446efa14803889cd2e38c53b21c3ff8d42c61432b8b71139e196
MD5 1103f7c24be80f503dcedffcd871c270
BLAKE2b-256 518810eeeb2dbf1613fa0a09b95edc112701a790d6a40feda9dea6ff13d7ce3a

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36fd9b91f177db189742b694dbe55540650da6e8b4cc8312c21548f778f90105
MD5 d9eea1b764ab1c19f73618a75e96acc6
BLAKE2b-256 10dd6d1e39791ee2e0bd381e67395f2e30a5e575a0f2a46dfe2de8145ff85aaa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fill_voids-2.0.4-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 221.3 kB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14700a9957703c800a769399796dccbb2e3825055cbc584ade761e99399051b0
MD5 75ea1dbe3425dbb09ca03f3e0d8d1fe1
BLAKE2b-256 bc6b9cbb87dffa0b3a22154954607bbe47440667cc7434dab305dec439138620

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp311-cp311-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 388.8 kB
  • Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 99b46aa7047e44aada136ee63ee6628e44f374dda575890b9c77eb74a17f933d
MD5 3cac34fa6e5a96870a61cd3d4d564012
BLAKE2b-256 9979df94cb45cd2b48a4974dfaa445bbd9c363c0db2263bf51a8c513fe4a6b6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fill_voids-2.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 170.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 efec44a1e9aa1a50233b564651f1f11a3a9b376c596da8fc7593090bbdac247c
MD5 83b3a55e9222b12c3d92f6a1daf712ed
BLAKE2b-256 bc9e8424db0b18ae5a5bb7f3b47e0f67f6d836bdd371a30ea77edfbc99185552

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 134.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b3dfbd9895b4fae3ce0b26dba90a76ef29f835f0e16311a0d6b98a847836671b
MD5 6fadd16ec2bb239181a7d1914f110ba3
BLAKE2b-256 84a8fa2e0678cd89c01b6f56e431e20c89a163c7de02e4a7e56ab83079566c19

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9182fd391b80aa4d960abca473a89785736152d457923e16f4cb87c660d262ac
MD5 28590f908406037021a045b0f729e28a
BLAKE2b-256 020b430d8a9dcc5e8f73a7b151d271b2770b8d9a3e22391e84e666d3487a3204

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8d40b02d1d3e70e2ef6a0ae20892eeff96ef1cad8c41e455f3360e71fc79dca4
MD5 ce5b608362c090884d92379c2d236b83
BLAKE2b-256 964ab7c63acd340c1e7054a9827a1a94f97c68678e9daeb9093a8138cccb16f6

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6927251a4005ef096123b4a102c7092501441a1455b087b2bd3d259fda340e5a
MD5 824481cb6df7bd566c41f15f773b0c39
BLAKE2b-256 a17dded5912bf243a78abdd163cbdd7060855c6eac764bd19f04b6544770af1c

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 424378434976b5cf67987cb8adcd58855cd8752c7d861cf961332a07cde36a15
MD5 923631ad8227bf4e11a1ca9b253d2ee2
BLAKE2b-256 f23f72d8b9ddc051b3ef72084f63e62576f368a6e9ef6db67e66fae11ecd54e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fill_voids-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 221.8 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6f3a98e048686af945ee7abeb931b4099fc244673e0998ce6a0560b259ee326
MD5 2f92ce8ca65cbd2fde67191d6f1d73e6
BLAKE2b-256 fe338a4a8ce95996bfdd701c09125c436d2b379507d0d0575112b289ef739473

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 767.0 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ff8b7f133e47d82b7f7fe1f20ad57f5767aae7d29429e7676c3a3f119a760ab3
MD5 eda4b790c50fa503a29dfb4e8e3372c6
BLAKE2b-256 9d655571ccf7fe4a2d761d906f7671ff3126d2dae0c02398789160412e93d39d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fill_voids-2.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 171.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8af07268f63baef15a47b1f9d533ba69d0700bdb484b34b51b67d045999630b3
MD5 5efe091c843b18cd36f64720bb140338
BLAKE2b-256 d8b84d234bbbe8df7f8e29f47766acbc0bb5da0db00d2f3fdb77e9c07e7300b7

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 135.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e24909a9974c90263fd5d384c80e962f2d458a45716369bf39c80736290f6b25
MD5 30c25718f1b9f4fef23687e129f00545
BLAKE2b-256 2cae5b4cae5f01ca0e690a9caaa2ac867f1009d5bc78564673e60ba52243f484

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 07675037cc871211e26a764dad7ee963f4be005e15f6aecdf8938c11d1bb772c
MD5 4f6127dce8a4567bb9749cc378dce299
BLAKE2b-256 9a9656fd4bac13d003f0ba9b980a6293606a853e540b975b038bcd9eeca548e1

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f66a264f4fc86f814ac5ed64aff78a009142c7b0d586409a5bbf1ba44503340f
MD5 265039f44497f5e8392c26de46aedff6
BLAKE2b-256 cef7928e2ca3d956ada32f610c8c5d9b91a842831bdc1a8e9af4d5755600dee2

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94fec6c8f85b01eefdea38ee7152ef31b22d80ae22a64b6e5ea3dee00a932cf1
MD5 026185daf07cbb6115e52e181765d376
BLAKE2b-256 5b614a2dd685e11a8a76a85a5b539383246f8d91427a54d3ea746c6fc58277a4

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98b8364f09a8f534819080d52ebf75c82302068cba668e256837c4597d565c3b
MD5 51b37892d1be1ceec55bde98bf74272d
BLAKE2b-256 3750d2d67f022d47ba5b1721aa3529b6ff51c8206e3e7f217a9b9bacc35e9fb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fill_voids-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 223.3 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 02c92ba8e8ff6ef07c163d57dea0dc3ff4e3c7e51cd4d17108dbadae1236623b
MD5 b0a8cf303007601a09bddd9ba2accb32
BLAKE2b-256 4559a0a0b6cd7ed61ff6bd1e1419be63c54e29c0c79417eb5f1c46a2aa127205

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fill_voids-2.0.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 171.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ae48e9fe0f834c4e45ecade53f30c5146de6d53dec59445cd77cd67b4c9ee2ab
MD5 9e65bb66837159b8165d259ee4094a77
BLAKE2b-256 589c27ea9b73e151fed3f7b12b254fbc0c2c4123a5ce0b65f342bb89e55d84c8

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 135.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c46ffd964f0e2eaf0c07879b61d2dc53e5335c4ca8c08f327aa495a7da0f214d
MD5 6e1841ca06125e0f72805b378fdbafa7
BLAKE2b-256 582083d8c9f11150e65a6ca1dcbf3f41be11581af667b1b76599c95f3419d791

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ec8e361c062be51c37842e740fda3b5b784d153ff8793b4eacae6e673ecfb2e1
MD5 16fcad83424b6aff67ec9e3adadf7688
BLAKE2b-256 304896f9a2c30071e225c094358bf2c61098de5e254177817123eda64f59c9ec

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9c6795c0b8bb86883c99d5555cb5357bf9bb9a2a63725b3b8871aaad12b7861e
MD5 629cc78aebfa1884a0b46b387c02c64e
BLAKE2b-256 f9c06fc778481ea68565eefc983599c1384468d209a1e605a4b335b4e28a0d3e

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d2780a038ed6c13aea94207948f07e76523437ae67e76c7b07e9855eb089609
MD5 bb5501f5bf0297596f63b94a966fdade
BLAKE2b-256 5140811f36c9f9f3236251b988868ca3082bd62b9cdf631cf9653a687bfa7781

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46a51b3f7882e52792df334b83ad70683e4eb3f89e6938a125c99562dcb3401d
MD5 4c440cda109591435e335261cd6ac4aa
BLAKE2b-256 5bd7c7fc44dce96429d5ec20791c7127fa5f20ca23145b924e9fc10e8343ba16

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp38-cp38-macosx_11_0_universal2.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp38-cp38-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 388.3 kB
  • Tags: CPython 3.8, macOS 11.0+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 4b7313fc73bb35c15e25e2900871c7a9aca76fc2849a079f7a82979b303ed7e6
MD5 7e7d6dd2148831e137d61e639bdf3d12
BLAKE2b-256 02d900d4ed57a53ec7805c60100fe04bfb57c55972ddf25ff717211506f898bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fill_voids-2.0.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 221.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2150af53b473d71d80a0db789bd5741e0ab9a177af6ff80a5a8855b0b572dd67
MD5 2d0f6ff1faeca2dbf0e653a7e159993e
BLAKE2b-256 e127ab6ff494afcea0743b109b77b18dba82aeb680120fb0a04c046caffcd0cc

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 163.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 56ac00578248a6baff7947ab9e001d22397414f8152970d37c45842c6a9dd4ab
MD5 0216e386a7e9759b5bfac7b3375c3d56
BLAKE2b-256 20d6b7da9e0f5a0038b9c4893de45592462288ec8e104a470798f6a6a2188a90

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 133.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a5a685c2e7c5bb58999e66a9405c3ccf1c33c0ce792afeb0e99df712aa2a32de
MD5 aa373ac12c1adeed56017aff91007be0
BLAKE2b-256 1ca32fd43c091c9d76f038734eb80fab194e4f1cc86fb5b24aa84ba2c67466bb

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f4af8aa8e946fe1b9d044489b79f72a47cb41e764ef72ccf0117cc6ff190d795
MD5 282944a2d752c0f2eff337f1e9e709a4
BLAKE2b-256 a498dc8219a80ccab2fd81db29b0eb3e751f4a562d26cd0f0082b48975c93d46

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ebcac3494915c5127ee45a2fcc78f07a49519a5cdd1a8cf982874596b4c1196d
MD5 83eea2a5220dbe09f70f1772b675e87d
BLAKE2b-256 5150cf0142fea538e5d3999e87bcac3089c915abcb121ef15a4b2dea8358a519

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8b22deacc7be4ffb27338755d8fa161aa856bda70d90aecceba13e16401a636
MD5 0aa6efaf2e7c87dc0b7590666b1f3190
BLAKE2b-256 7ab34d03d2599e1732e11bfbe39d614258caaca01d79aead40024d9df13855a8

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a03d46b4f9f585d04870920696e136b73a3a7c4b1e6ae3c346ed7664fd19ded
MD5 ea9ebdeaaa21b9e455372800a6421627
BLAKE2b-256 3225ba859c2ecaca01371d262b3a0f608c2387e8f13e9b3bc978c2a1c1fde4d9

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 214.6 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12a7ad5b50dd60880f371e60e199406f304693830b28e6c1f1b948b289a8715b
MD5 ccad7e843abc0ec4b14f2f6b531348d0
BLAKE2b-256 6121f6405c76baf8eddd4b46458322de2bf76b2e45439a5d2346273952883fec

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 176.2 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 33c20ce57c29e4ab9c730c7daf49194dc857430d38d7c8d48005f9b31d8fa3ed
MD5 ba99a119627b266d62d663321093da5e
BLAKE2b-256 0d3dd04e4d62b4216c32280a609a03a55452ee6e05f4b5a92447bab8f8986343

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp36-cp36m-win32.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 141.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c4e54c8ceba451f4c08d89c334598274b9a62d6f4718a244ba0cd61ccdae8a65
MD5 8e3bdccdded1a59c8fc50762ea09f51f
BLAKE2b-256 db1ab98b0e2cd2f949c1f11b59d531ac9901236b5d3be2d0c33678bc8256c2cc

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5b983a2020367ca61eb2791ecd8ae00c9b80f23e71a66c031223435b1b45d7f5
MD5 437baccc5a5df1af8de0abed657cf7b4
BLAKE2b-256 6b72ba02bdb585673a9b53a10732bf4f872f09c5a605454d566323d32cd2afa0

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 de6a538bf3dfcad04ece02ddf76cd31cfdb69d00a05069281139c86842a45cce
MD5 44603ca3aba46548c383213925ab5b82
BLAKE2b-256 cb1a3a38b9df3e5eb54335dee5f0ff8d1e7645bc08f916d61f1c3307961915e2

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a07390f8475fee1fd820db925c8cc0d2357ad5f948e2c24f8091e7bc363c508b
MD5 cc74f2aecfeabc21bf6fd7209dbb24c1
BLAKE2b-256 fd84868e6d16d44b35039635161607748b39f75e69184b8aeea937213cb3aad5

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fill_voids-2.0.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 08a37b222b6eab96ddd455156af6dff84fbafb83a6d84cb5b86c7e2a58bd9b09
MD5 9336e3590ac179cfa696f0be51734584
BLAKE2b-256 d3ab093c271840a0d294e85713a9d49300a1c338b9311f8eed82670b7a52b8c0

See more details on using hashes here.

File details

Details for the file fill_voids-2.0.4-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fill_voids-2.0.4-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 214.5 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for fill_voids-2.0.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 242349dc914543ce890e5aca8e191df0cbc223bce995e97e9415207d27e97154
MD5 bfe286640cafee349374cd7a2a203b4a
BLAKE2b-256 b54ec4b550246e23a8bfd519f6b88cd627afefdab573cf9fd3004064d3143219

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