Skip to main content

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/

Release files for fill-voids 2.1.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for fill-voids 2.1.2
File Size Uploaded
fill_voids-2.1.2.tar.gz 3.2 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for fill-voids 2.1.2
File
fill_voids-2.1.2-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
fill_voids-2.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
fill_voids-2.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
fill_voids-2.1.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
fill_voids-2.1.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
fill_voids-2.1.2-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
fill_voids-2.1.2-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
fill_voids-2.1.2-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
fill_voids-2.1.2-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
fill_voids-2.1.2-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
fill_voids-2.1.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
fill_voids-2.1.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
fill_voids-2.1.2-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
fill_voids-2.1.2-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
fill_voids-2.1.2-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
fill_voids-2.1.2-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
fill_voids-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
fill_voids-2.1.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
fill_voids-2.1.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
fill_voids-2.1.2-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
fill_voids-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
fill_voids-2.1.2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
fill_voids-2.1.2-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
fill_voids-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
fill_voids-2.1.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
fill_voids-2.1.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
fill_voids-2.1.2-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
fill_voids-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
fill_voids-2.1.2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
fill_voids-2.1.2-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
fill_voids-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
fill_voids-2.1.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
fill_voids-2.1.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
fill_voids-2.1.2-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
fill_voids-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
fill_voids-2.1.2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
fill_voids-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
fill_voids-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
fill_voids-2.1.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
fill_voids-2.1.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
fill_voids-2.1.2-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
fill_voids-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
fill_voids-2.1.2-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
fill_voids-2.1.2-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
fill_voids-2.1.2-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
fill_voids-2.1.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
fill_voids-2.1.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
fill_voids-2.1.2-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
fill_voids-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
fill_voids-2.1.2-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
fill_voids-2.1.2-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
fill_voids-2.1.2-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
fill_voids-2.1.2-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
fill_voids-2.1.2-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
fill_voids-2.1.2-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
fill_voids-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size:68.5 MB

Release files / fill_voids-2.1.2.tar.gz

Download URL fill_voids-2.1.2.tar.gz
Size 3.2 MB
Tags Source
SHA-256 checksum
How to use checksums
2b9ef2753ffd2394a1948f9a11431a7ff084d4d7024509e0466b1b260be089df
BLAKE2b-256 checksum
How to use checksums
f0cab7be6906b27c5620df0ecff8ddbd00b81aa238ca24ec1f9e424cd3f3ff02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp314-cp314t-win_amd64.whl

Download URL fill_voids-2.1.2-cp314-cp314t-win_amd64.whl
Size 203.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
883695c30048660ef043ee8a48e5a15b0e70e5db792aa2207c9b3812472dfaf5
BLAKE2b-256 checksum
How to use checksums
74f61797633bcdeb9121de82d73c35ac4e1fa8ae24e3778e2324d7ed923e27ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL fill_voids-2.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 2.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
02a044ec78f630155fb4eab8bbaa6f935c915472e5d4b6ed0cbe643dd026dc73
BLAKE2b-256 checksum
How to use checksums
51b85f62ef7ecc2531ca0e8c99b1b8a6df70e4d1960ed86520223feb9f0dc238
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL fill_voids-2.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
620455dca04628b71f02ff86dfb7056f07f93fb6022e5b90006ad80a8b1633df
BLAKE2b-256 checksum
How to use checksums
d8e147747ee139e99d239b2df25dd2e1ae2bf979592d3a03670244c3f174474a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL fill_voids-2.1.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8b1095cbb7def09ad9d32d52adfebc16eb6b410ec087d341ccfd4013aa5a6ef8
BLAKE2b-256 checksum
How to use checksums
9202fdcf6a3fa3e9ee070828d397b2caf80a02183d45b205f6f12febd3dc5716
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL fill_voids-2.1.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
3a4f86e807afce22fa0668c97ad9959d1b1ce7b255411832741e1a9410432f63
BLAKE2b-256 checksum
How to use checksums
2e15a89d04352035896d8bee737cf3af6768a8aca5b354310b25339da336248e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp314-cp314t-macosx_11_0_arm64.whl

Download URL fill_voids-2.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Size 202.1 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
afc0f086ee0d72cf124ea2e05cd91de43e6a2dcfea2214ebe2eae25532118141
BLAKE2b-256 checksum
How to use checksums
c791b1e107315073fd9fd72a0be4f2ae0d750f3f6789a6ae92ced8b7d44ef4b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL fill_voids-2.1.2-cp314-cp314t-macosx_10_15_x86_64.whl
Size 218.4 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
a813b53253144a82548902066a251f2ae52598fb3ef44722293aba82a8367c09
BLAKE2b-256 checksum
How to use checksums
de49b6420ee8e85608ce57c56d3ee52f8ae4a9d9dc8d96fdc5b2019f0de4e8cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp314-cp314-win_amd64.whl

Download URL fill_voids-2.1.2-cp314-cp314-win_amd64.whl
Size 175.8 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
56dbd5aaff3b5e07824d974525e14a116526b3c07ae4dafc5a805eab99ae016f
BLAKE2b-256 checksum
How to use checksums
3576500e0803afa9c9224b5e3f2cf534fe731f36eb68090c762ef9cd004e0d16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL fill_voids-2.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Size 2.3 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
14023b0803da5fc77aebf16f404596965d1699ea58a3d658da3d1564f374f4c4
BLAKE2b-256 checksum
How to use checksums
ebed818f29b56087ceda015cbd1c5b93c323b98b9f8afe1a918e46a776930887
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL fill_voids-2.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
78a2f22b9b221cdc0f19030a9355a73192a1e4087d2fb5acae49c8f84653d6fa
BLAKE2b-256 checksum
How to use checksums
42e068b56983099a5ff02f3f7994397bfe4efff849cf58f4e8886759e7dfe66d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL fill_voids-2.1.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.5 MB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7c5666a561eab6cd24e6bcf1fe8d9e2f31b4e0d8b7f84e26eb882d53aff033f7
BLAKE2b-256 checksum
How to use checksums
414e152d8a8dee6858ef378bdc6b0d7fdf380dd4d71e5ebc0d0522bc40a2efad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL fill_voids-2.1.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.4 MB
Tags CPython 3.14 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2d505758017fe24deb32aca0a246ef95da3838aa623f858aeeae49aff4496d38
BLAKE2b-256 checksum
How to use checksums
5ce45bd175448978d2b0742b3c2ab95e8e133088429933b25eda8a0bc5074fa4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp314-cp314-macosx_11_0_arm64.whl

Download URL fill_voids-2.1.2-cp314-cp314-macosx_11_0_arm64.whl
Size 190.0 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
72608da4556ddc09829702ab755ebfcd23ae03702303d7b757cfab102e680dc8
BLAKE2b-256 checksum
How to use checksums
418a564dba5148d7fea6c9241ee46cb306ef8c7fc3b73e802962d8f9456b76dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp314-cp314-macosx_10_15_x86_64.whl

Download URL fill_voids-2.1.2-cp314-cp314-macosx_10_15_x86_64.whl
Size 208.1 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
821f3e586df0d8202d4decc1b4751e49a980546d3ba600de9570557d1e6f3528
BLAKE2b-256 checksum
How to use checksums
dfc91d2341811c284f396d4b2a8abf09a772a40cf456345f02bcfbaefac0701f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp313-cp313-win_amd64.whl

Download URL fill_voids-2.1.2-cp313-cp313-win_amd64.whl
Size 173.7 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
dc52abad93670d910d221330d11132ba9f14e9cea6df3d80772a1bbd007a9445
BLAKE2b-256 checksum
How to use checksums
ac365d5d6a86d850a829dd3ea2e8036576909cc48d5ac7b26b1771625856a481
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL fill_voids-2.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Size 2.4 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a4d9def2de9cafcec367341ce81078a30465c4de27ff55c973ee29edad07701c
BLAKE2b-256 checksum
How to use checksums
e06b3d23e65c4a967e62ca097decaa7caf182a7814102ed34f42e67c2edcee1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL fill_voids-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
15d9d007f9b473115ae3df49feb5ed3f632b28ed3e39be82a34937b8c786bda1
BLAKE2b-256 checksum
How to use checksums
31a0aa0383524502292aa926e2cf88ebfda47f2ea5ca71e0e599c8536274dfab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL fill_voids-2.1.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.5 MB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
55c20f81882f037fae3ac968bb5cd79550a2abeeda5e5993e3854385a5ccfab7
BLAKE2b-256 checksum
How to use checksums
c8c8b1d1c5f72719efb1be70388e45f1b4ca71e580597240110438e97a78218b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL fill_voids-2.1.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.4 MB
Tags CPython 3.13 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
344f692be2dfc5bff2f1faea1d605229ed570d0eacfba66160195b8e6fea3a81
BLAKE2b-256 checksum
How to use checksums
fbf12f5171eee4294df69db20c077f9c98677ab6c3e4535dbc72b1e81443c012
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp313-cp313-macosx_11_0_arm64.whl

Download URL fill_voids-2.1.2-cp313-cp313-macosx_11_0_arm64.whl
Size 189.0 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a5a9d426959112fa7879cd39b4c5ad99309810058ac62681772e992af51c36cc
BLAKE2b-256 checksum
How to use checksums
8571c462e751386e0e3b46e17921c5f6ce9ac18189dfd127884b2f77fa558ace
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl

Download URL fill_voids-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl
Size 207.6 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
7dc02a4208de7497f1b02109d54ee4303ec7c85c98b6a3e8e0fd98d4f258bada
BLAKE2b-256 checksum
How to use checksums
a067525b5042a0681b93a8a74be7aa61c92445d4dc7a10c940b223bf1d713586
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp312-cp312-win_amd64.whl

Download URL fill_voids-2.1.2-cp312-cp312-win_amd64.whl
Size 174.0 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
ede3fc63a3c89058cc24b6abfb54beeef4a22d26511e08e0e4d89e779c038df0
BLAKE2b-256 checksum
How to use checksums
7d4827af1b78cde8f0e4f20083c01565a4bcc57be62d8b19bbb7ee78c202b5a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL fill_voids-2.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Size 2.4 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
aa6d3c816d1e4532eeed21ef4d919c517c4bfa34dac7bc3b841be7530b36bebd
BLAKE2b-256 checksum
How to use checksums
7c2ba8cc605aaaecf9810968201aef024f54e4f0682666e0dd5d71b5a0d1f965
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL fill_voids-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
268a0fb817fa6149f4cc54d7c959526c34d8ea74920c4a46efefdc90f79d3eeb
BLAKE2b-256 checksum
How to use checksums
7d69a5168e0f3f9500212b6262a6b80c2b3a716e2227df5250f09606c0a8bf88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL fill_voids-2.1.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.5 MB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2261bb1c6d0bb34fe4078af215e92630bfeec4028558b5295308b61b54d4a720
BLAKE2b-256 checksum
How to use checksums
88b7600e84adc5f0e1a41005a36ec5df23a3c27b73284717c2bc85c1233fb33a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL fill_voids-2.1.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.4 MB
Tags CPython 3.12 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e3abb19e76c0b926f178e6ec8741808d07a8c825a684d1af38be957507f89f04
BLAKE2b-256 checksum
How to use checksums
1354a61dde5c00afac52689be7e45b81c8ab4890f31509a85a2ddb360d1ef614
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp312-cp312-macosx_11_0_arm64.whl

Download URL fill_voids-2.1.2-cp312-cp312-macosx_11_0_arm64.whl
Size 189.9 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
989d5da074b270937280cdfafaf1d943996b27fa1d8496d229114ffdfc24a4f1
BLAKE2b-256 checksum
How to use checksums
ebebeaa16793f50b0b5a888229039a6d5bd40c0b532f5a05fa778e77d7eac137
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl

Download URL fill_voids-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl
Size 208.4 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
f5ad954ca80b982e6141270d3738b948ae66e0be3f19130e0a9b98cb554c3b51
BLAKE2b-256 checksum
How to use checksums
3a49536abc36f5de427b96b3566dbd9d724998ac09b1eb1accbca10116255ca8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp311-cp311-win_amd64.whl

Download URL fill_voids-2.1.2-cp311-cp311-win_amd64.whl
Size 187.0 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
d09b7847e510bd5dcfe5e6c172f6ec35ffbb2ee20501c918124552658caee62c
BLAKE2b-256 checksum
How to use checksums
1a7293b8311ef54704c5a483c9ae9713dde0a704c03bf59d4ace840341f864e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL fill_voids-2.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Size 2.4 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
28ddebd2b7abebaf775151c6e397e6adc8d9c4c772c8b83cda42ac5447540efd
BLAKE2b-256 checksum
How to use checksums
6f346c202cf21e16c9f9cf24852e30473c5c5fdbe47de05a5dfc8b07d4fd0818
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL fill_voids-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e8b5e19e1141332ba1e6a3354c7f8a81844a60cedeedcd700e3b5019f042cf92
BLAKE2b-256 checksum
How to use checksums
5ea5d6da9c4eeeff3f0cdbb569ba6b5cc98e5848cd906c69ad282cacc29d08ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL fill_voids-2.1.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.5 MB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
123d432afea5ac28289a7f15232bff78df378e8cb3e4aad8df9cda35d78a4aac
BLAKE2b-256 checksum
How to use checksums
514e399e45ff5ccdf571316a1f3eb482033e5b5cfb8959e614150b6146029bf0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL fill_voids-2.1.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8867f88cb102fd9dab20c1a283a327ecfd0462b700813a4179704ed2de9559bd
BLAKE2b-256 checksum
How to use checksums
3e2250ec3a98dde695c1c2e91d800932a968cad853111831381878e175e4b0f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp311-cp311-macosx_11_0_arm64.whl

Download URL fill_voids-2.1.2-cp311-cp311-macosx_11_0_arm64.whl
Size 194.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6f0c37636d1da508311550914a93bf3d363924e740d16da93a4216d1b72d4ea1
BLAKE2b-256 checksum
How to use checksums
f0a8aacd51f6a38f7983c260db41c37fc297e571e7adbe662e71a6c978b2e4a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl

Download URL fill_voids-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Size 219.2 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
44e23f97bb4d47949fc822d9135133f7c0fd28beab233bdd41ef2f7895a4ae88
BLAKE2b-256 checksum
How to use checksums
5bfff55e2e321c8058fe42ab586542f6a43c127826fef19dd3f79838dcc10f50
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp310-cp310-win_amd64.whl

Download URL fill_voids-2.1.2-cp310-cp310-win_amd64.whl
Size 187.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
6b42889bc8c96f128b70029ee7f559719204cb68e0eb68a007d97972012862ab
BLAKE2b-256 checksum
How to use checksums
bde4a727de574773e4b2d86f43bb8522c5dc4e182a1650fa477e93a785b61519
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL fill_voids-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Size 2.3 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
10db71f08bc539e00cdb311ed75b5d9ba98faec761391f34a73a1fd8367069df
BLAKE2b-256 checksum
How to use checksums
688f9fa0cdcbd5264907b3da9c60063d935629c7a940ea0a9496212dc2a4966a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL fill_voids-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
133e6359a2a98c41c126b7f16843776a951e212a3200f940515e34f4e28e6194
BLAKE2b-256 checksum
How to use checksums
8b29fedf7d0e582b57d9239528676ba981ccdc5ce2703826496c252e5aba8c0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL fill_voids-2.1.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.4 MB
Tags CPython 3.10 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2ab04cf44bb34c9b9082115a4f57b928ae4b9e3fe1863051d123ebf06f561f13
BLAKE2b-256 checksum
How to use checksums
d5c872686cdad340536daa6560029747808a15ba73727894792e9564f08b381d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL fill_voids-2.1.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.4 MB
Tags CPython 3.10 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b34db1c250c5c52a0648b83d7206087a78aca37b5b8cf689f25925ab2a230ae0
BLAKE2b-256 checksum
How to use checksums
43fe6b867d5b5f91a602f5d4bd42267c39c31c1a02e2480e25f41a8acebdd2b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp310-cp310-macosx_11_0_arm64.whl

Download URL fill_voids-2.1.2-cp310-cp310-macosx_11_0_arm64.whl
Size 194.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
77bba7ec59f192f4327ecb9dfb27ead07627fe0ed08c71c168cd2a96d6dccfee
BLAKE2b-256 checksum
How to use checksums
e8b2576b012ea8467da97f43d1d135316cf397350808e8c95e228d7b49396a49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl

Download URL fill_voids-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Size 217.3 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
def51177cace98c7ec56f282c989eee615e5581d8a7e9984c5e13b826392c5db
BLAKE2b-256 checksum
How to use checksums
b292bbef16cb8e231b4afd7387ae6c10c5b1388325473ee833011631afcdd69d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp39-cp39-win_amd64.whl

Download URL fill_voids-2.1.2-cp39-cp39-win_amd64.whl
Size 187.3 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
73a868d085b990b8d28d1a7c9bae9e6f7b8b673b4d3953da4630eecd4c265e1b
BLAKE2b-256 checksum
How to use checksums
8a108f73c2e348972495ed4b9c749d1c3101c92d872475d1bd079733ccf94aaa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL fill_voids-2.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Size 2.3 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
18fb07ee43d1c9985c086d019fcefe282598c3860d1fcb880d288a2a2cab84cc
BLAKE2b-256 checksum
How to use checksums
1d7932acb0d4762f7c1dd645d771c8c53d9bc188ccb9cefd0aff825ec47aa4e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL fill_voids-2.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3385a812c1242aa12c28de9b91842dafd3e48f591a3e0b8b4a11613468a58985
BLAKE2b-256 checksum
How to use checksums
58f53dc1f72041c3049fd8733cfccf19304aadf53dd0d8ec748a132fbe54e998
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL fill_voids-2.1.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.4 MB
Tags CPython 3.9 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0ea9ecd2e04ad488a37ad5309208adf7de4439d85c328e183b390635e758fd5c
BLAKE2b-256 checksum
How to use checksums
3d0525299bf7001e86d4a87bb22941f2a3b3164159efbb6625e2ba72d5dd0dca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL fill_voids-2.1.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.4 MB
Tags CPython 3.9 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
134502aba715c0a2e08bfb498c30a7bf15793419a5521acec478db690e269523
BLAKE2b-256 checksum
How to use checksums
2b51ed91020cce0b82b893b00ec504d5aab7888aba1922fbc8d92f97fc6ee6ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp39-cp39-macosx_11_0_arm64.whl

Download URL fill_voids-2.1.2-cp39-cp39-macosx_11_0_arm64.whl
Size 195.3 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d2c437759fb1f1d1c5b4da5893a4aa3d508939847a57c9619a0164d5daa2a41b
BLAKE2b-256 checksum
How to use checksums
751fdfcacf82e09edc10408712359d1a0e8ac59a138929ae388dee4e6aef17b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl

Download URL fill_voids-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Size 217.7 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
28c2a0536b0c9a2366910f6e300edf6f73158e99212bf9636a0f358c40c96f79
BLAKE2b-256 checksum
How to use checksums
bf376b8650ee04c5a4107993b24f43827b26456c44518331aa791ead650bd69d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp38-cp38-win_amd64.whl

Download URL fill_voids-2.1.2-cp38-cp38-win_amd64.whl
Size 191.7 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
3c0fcfa54ac5c9fbda0dc943b42930c38e74b6220416fda8790ac7cea9c1cc06
BLAKE2b-256 checksum
How to use checksums
92f9266362537eb5b301266561d4d38528d3ad33f0d1001275574eee567fd012
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL fill_voids-2.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Size 2.4 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3588731c41fc6f3cbf3a2e836b227e3ad45848b141e39d3a5bd74c80443250e8
BLAKE2b-256 checksum
How to use checksums
2bc702fcf7cf46ca1bcf044ed41c7e8784f3b59b5c7e4856971e949314f86f62
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL fill_voids-2.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
fabc7dcbfd88a710510c85ba3cd3f721e0346d75fb6df38931a2e76aa26fa517
BLAKE2b-256 checksum
How to use checksums
d913f13b4f814e7fb64ede1340742066fc4833fa35715cabd915863ec73271e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL fill_voids-2.1.2-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.5 MB
Tags CPython 3.8 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e3fda4910957f67912e4ab06defba95528b833c44421d1c34d29a1c17558cf69
BLAKE2b-256 checksum
How to use checksums
c91d1675ccf65fc3001307739eeaf2df910d57f23dc7dba358417de997546b20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL fill_voids-2.1.2-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags CPython 3.8 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
524a1a8b8d16fef60cfd957a6441438e651de4e6723a1cfa0b38c966a8b1787c
BLAKE2b-256 checksum
How to use checksums
a001a361938928979a24ec1390dea7f2032d71da94a50b0ac3267d04d9b38e57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp38-cp38-macosx_11_0_arm64.whl

Download URL fill_voids-2.1.2-cp38-cp38-macosx_11_0_arm64.whl
Size 199.9 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b85cfbd8ccbd0025791f1774878acf150ccaaefd8771b3fd3350fec5e5f17f0a
BLAKE2b-256 checksum
How to use checksums
b09c1ce1cc2d3168408e20269f64eb43fa0585085d8d0e305c233c9db59a45ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / fill_voids-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl

Download URL fill_voids-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl
Size 220.3 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
142c1e99a9c808d787f6f0526ffbb30c7b7dbf8a794940d60be97904c033cb04
BLAKE2b-256 checksum
How to use checksums
7c9c1fd53c4e8a886892384418f1e4e83aecbe97d89a346983ac79b24731186a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release history Release notifications | RSS feed

This release

2.1.2 This release

57 release files

2.1.0

39 release files

2.0.8

39 release files

2.0.7

53 release files

2.0.6

57 release files

2.0.5

54 release files

2.0.2

32 release files

2.0.1

29 release files

2.0.0

16 release files

1.1.0

9 release files

1.0.0

13 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page