Skip to main content

Multi-Label Anisotropic Euclidean Distance Transform 3D

Project description

Python Instructions for MLAEDT-3D

Compute the Euclidean Distance Transform of a 1d, 2d, or 3d labeled image containing multiple labels in a single pass with support for anisotropic dimensions.

Python Installation

Requires a C++ compiler

The installation process depends on edt.cpp for the Python bindings derived from edt.pyx. edt.hpp contains the algorithm implementation.

pip install numpy
pip install edt

Recompiling edt.pyx

Requires Cython and a C++ compiler

cd python
cython -3 --cplus edt.pyx # generates edt.cpp
python setup.py develop # compiles edt.cpp and edt.hpp 
                        # together into a shared binary e.g. edt.cpython-36m-x86_64-linux-gnu.so

Python Usage

Consult help(edt) after importing. The edt module contains: edt and edtsq which compute the euclidean and squared euclidean distance respectively. Both functions select dimension based on the shape of the numpy array fed to them. 1D, 2D, and 3D volumes are supported. 1D processing is extremely fast. Numpy boolean arrays are handled specially for faster processing.

If for some reason you'd like to use a specific 'D' function, edt1d, edt1dsq, edt2d, edt2dsq, edt3d, and edt3dsq are available.

The three optional parameters are anisotropy, black_border, and order. Anisotropy is used to correct for distortions in voxel space, e.g. if X and Y were acquired with a microscope, but the Z axis was cut more corsely.

black_border allows you to specify that the edges of the image should be considered in computing pixel distances (it's also slightly faster).

order allows the programmer to determine how the underlying array should be interpreted. 'C' (C-order, XYZ, row-major) and 'F' (Fortran-order, ZYX, column major) are supported. 'C' order is the default.

parallel controls the number of threads. Set it <= 0 to automatically determine your CPU count.

import edt
import numpy as np

# e.g. 6nm x 6nm x 30nm for the S1 dataset by Kasthuri et al., 2014
labels = np.ones(shape=(512, 512, 512), dtype=np.uint32, order='F')
dt = edt.edt(labels, anisotropy=(6, 6, 30), black_border=True, order='F', parallel=1) 

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

edt-2.4.0.tar.gz (32.7 kB view details)

Uploaded Source

Built Distributions

edt-2.4.0-cp312-cp312-win_amd64.whl (235.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

edt-2.4.0-cp312-cp312-win32.whl (200.0 kB view details)

Uploaded CPython 3.12 Windows x86

edt-2.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

edt-2.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

edt-2.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

edt-2.4.0-cp312-cp312-macosx_11_0_arm64.whl (306.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

edt-2.4.0-cp312-cp312-macosx_10_9_x86_64.whl (343.8 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

edt-2.4.0-cp311-cp311-win_amd64.whl (241.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

edt-2.4.0-cp311-cp311-win32.whl (203.0 kB view details)

Uploaded CPython 3.11 Windows x86

edt-2.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

edt-2.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

edt-2.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

edt-2.4.0-cp311-cp311-macosx_11_0_arm64.whl (309.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

edt-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl (349.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

edt-2.4.0-cp310-cp310-win_amd64.whl (240.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

edt-2.4.0-cp310-cp310-win32.whl (203.0 kB view details)

Uploaded CPython 3.10 Windows x86

edt-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

edt-2.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

edt-2.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

edt-2.4.0-cp310-cp310-macosx_11_0_arm64.whl (308.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

edt-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl (349.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

edt-2.4.0-cp39-cp39-win_amd64.whl (240.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

edt-2.4.0-cp39-cp39-win32.whl (203.0 kB view details)

Uploaded CPython 3.9 Windows x86

edt-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

edt-2.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

edt-2.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

edt-2.4.0-cp39-cp39-macosx_11_0_arm64.whl (308.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

edt-2.4.0-cp39-cp39-macosx_10_9_x86_64.whl (349.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

edt-2.4.0-cp38-cp38-win_amd64.whl (241.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

edt-2.4.0-cp38-cp38-win32.whl (203.8 kB view details)

Uploaded CPython 3.8 Windows x86

edt-2.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

edt-2.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

edt-2.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

edt-2.4.0-cp38-cp38-macosx_11_0_arm64.whl (306.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

edt-2.4.0-cp38-cp38-macosx_10_9_x86_64.whl (348.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

edt-2.4.0-cp37-cp37m-win_amd64.whl (235.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

edt-2.4.0-cp37-cp37m-win32.whl (200.8 kB view details)

Uploaded CPython 3.7m Windows x86

edt-2.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

edt-2.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

edt-2.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

edt-2.4.0-cp37-cp37m-macosx_10_9_x86_64.whl (345.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file edt-2.4.0.tar.gz.

File metadata

  • Download URL: edt-2.4.0.tar.gz
  • Upload date:
  • Size: 32.7 kB
  • 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 edt-2.4.0.tar.gz
Algorithm Hash digest
SHA256 1c0bd88ab81a22cf01d0b53d6a0b584e56301a14658318a9b41bd636fc5e03cf
MD5 17d3923262f88f4f5f77416c70e3c2d1
BLAKE2b-256 ada018c8828a16cacce0c63822f71c3fb24263b89f55b20010a616fb11867e62

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: edt-2.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 235.2 kB
  • Tags: CPython 3.12, 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 edt-2.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 35dc246efdae4b86a462e41cc3c85bf9d7f328db1ddd7f1b116c21f966237f7a
MD5 f50473bec36e66d5808b3dd13bd563ad
BLAKE2b-256 e56c7dc9ebb1e4a0254aa2cb5081cca58f7d2375f603e8181f0d1a6cce430fa2

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: edt-2.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 200.0 kB
  • Tags: CPython 3.12, 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 edt-2.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e5be9973ae7778729bc3c0429f31d46a6913d06ecad7814dc7efe099a8fab462
MD5 b9156f424c9e33f07afe85e1708eee0e
BLAKE2b-256 13311e68131221ea2e0a6bc9d6f0bb0c69231f9fea0c77372d4de21b67acb0c8

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for edt-2.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6b402f076af277aa51635da16a9d6fccd112518874cbbccbd3e1f0c63a973f2
MD5 74f6220d6052d3f8d5fe40c43a2f5597
BLAKE2b-256 6d87de97aa6e9af5f2b427264a3870d3fc1d4caf2d6885027d41b4440fd966c9

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: edt-2.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ 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 edt-2.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0be0515d42d02e66f3392bf036bb424df2c8e13abbaf87c129971b4454595549
MD5 b614c51ce5cf85398e12c2d8055040ea
BLAKE2b-256 0791ba4099ef286075df5568ab92591746cc12d69140e28a5a7d5ec715874371

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for edt-2.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e56bab21ed5deca164926dfbd73a5a213c2246256a43b007c27634f7b6828f3c
MD5 bc68860e3264258d822bfb50577ff84f
BLAKE2b-256 0c23d2dba6eed9644f6973b840cca82b4fcff3a30376bdfc77ed07c3b71842c9

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: edt-2.4.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 306.0 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • 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 edt-2.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6c8f79252c0c88b6391a285ef6722da6fe1f0df4af51f86145e30e214e1c557
MD5 f2d0d3e03db6a561a9f100cd0e0bcb33
BLAKE2b-256 114de5934e6e0bdb1ae862f79f2742b06b59df215597e7e200804c59f2666058

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: edt-2.4.0-cp312-cp312-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 343.8 kB
  • Tags: CPython 3.12, 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 edt-2.4.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a09e5e491c65c8f8d58e6daba5d49a3e702013c8a8386797005dba1a98cc2da4
MD5 38ef94669286ec1804cb599ec383933c
BLAKE2b-256 0753914a3d640e799ff5db933a5782f0b1d8dcfeff8520a325688fcb54e4f992

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: edt-2.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 241.1 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 edt-2.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f5171d3fe9c95490e772f1c2c4de849ccb6ca551bc81d6bc65d4d1f97f14a17
MD5 5c3f0c23db2942b60acad54f91834703
BLAKE2b-256 9f9769517d2f9151e3bae065e3b38fb5f1b3265ecd0ceb41a5b7213106258c4d

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: edt-2.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 203.0 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 edt-2.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 02c10f08ec0aa041fd650fcded82693df0b025ed3a8ad79856cb3d49872c1b9f
MD5 305edcce3e40cb829c6ff978b68dbc27
BLAKE2b-256 5ef479f61d7e26be52ee1bc5189b9ffba1bc2bfd14db90002e730189d21d73bc

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for edt-2.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c7a5c218cc13a690b9d2a1605c86361d6d8db7842bed3e625eed65cf8c9799c
MD5 4145b791ff7484463285a00ea02794e4
BLAKE2b-256 a34bdc1aaeef11594a43fdadecc8098614c5e7d493e728a1449a5cbd919e0d90

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: edt-2.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ 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 edt-2.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 907ebefe9570a7d365f437d4cabb5f53b3e2e6e02d1b250a7d7c1703a92e324a
MD5 e5e41d61af6ef027754948852c50907f
BLAKE2b-256 b7cc910eef0185fda66f56a04d4f7c7a88bc2040e53ae596edd45828952e03a3

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for edt-2.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca89f5a52130fc26b7efbe548f1906d8a097ec30836ed2442e94058351643e56
MD5 594aa71dc1756bb91a83667919aa5d7b
BLAKE2b-256 b80f6a85d40c8f3f05766d5dc6e6b0ec1c77c6141c285c5c9342b43d0b156ecd

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: edt-2.4.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 309.6 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • 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 edt-2.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a75d0691ea2f7c92f426dcc7c6943c47d5e02bccfe7c047b18597b93e97a172c
MD5 b9df7d2d345e4b69a53cc44cf59979c5
BLAKE2b-256 2273bfb4f0ab41b6f7724ac494a0f9b0a48540d1cf7d0816648cef5a851353ec

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: edt-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 349.7 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 edt-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 738a7ea2436f01628cdc85c521a6ef600101b3469295daa1eef942d743d79389
MD5 96a11e3bcaefbe7ffc0d085f6f6dd60d
BLAKE2b-256 b2296e820b1d146f9e0a738793b2c3c65cd19628d23ceaec320fe5dc16293553

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: edt-2.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 240.6 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 edt-2.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5f2b4f629f70a589aa5366bf5da1c0ea8bcb6219d92a35a3c52e4235435739a0
MD5 b0efbc13f402a8545316a8d293adaef5
BLAKE2b-256 d3c4cb02d46a7e617a94bd809ba6ced56033851da5057eb6ae230841548508e6

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: edt-2.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 203.0 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 edt-2.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ec8efffc0aba1f78a496cae94740dc1e93b3aab6952416630f7503932731f67e
MD5 4978fc3e9b6143d3d209e2f1e59b42ce
BLAKE2b-256 56e4c4e3573d710789b5ca76645a1de779b96a33452a2975e838ce239ef48a7b

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for edt-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6520905e85e639eb7a0a37e650b9f137483fd9dae111ff2143a0fb7091365aae
MD5 edaa5f20eac2fc7d467f9d16c14028c3
BLAKE2b-256 deef21d6ec6210f9d4493ba0e0162cae53fc1f15743fa3b3ada4f2eb5643c39e

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: edt-2.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ 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 edt-2.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 145bbbd2357b628aa78c4a33c9ee91a292d1501acda3caa35c42847511499ddc
MD5 642c8e526e1f4d1eec2807b8d434d850
BLAKE2b-256 3a19d4dd5c5210107881240b14be5a8b0a4ef7404b4a50a20132325cfecf70f5

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for edt-2.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c87e854f0a7e99f42a375b19a3287a8659c191858b2d919e41bbd4f1543813b9
MD5 aa301fdc45df012173613cbb57ae4afc
BLAKE2b-256 62a9185227ff7dc34b157de5060011c170cdcb547a53d63080ecf89ec4b3f91c

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: edt-2.4.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 308.5 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • 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 edt-2.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fd715dc8aa43223101d3e19486f873898d85012302e2bc6e0dc967bfbbd757e
MD5 b367e0bb761dce9889c2882c297bca69
BLAKE2b-256 cbcab1269f29e2aee77035278783e06f9937b89698e10c9b25e9ba7cfd171278

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: edt-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 349.6 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 edt-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 502d23190b52e9443318f29c9a269e3594cd990e59b260b20a5d66593bf02d97
MD5 aa2701623dc73a985002254aa70cb7a5
BLAKE2b-256 200b1bdf7fc79c667bc8fe96f220d7fbf11058c99de0d366a296599c69c26ea1

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: edt-2.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 240.6 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 edt-2.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 94e82f0bcf8037cebb67f79b93cf49f69a18839b102a28054995d496af4c77f1
MD5 c85c7e0904aea0e1f3a89bb15c022c1b
BLAKE2b-256 86cedd712bb0280011f3bbd394338eebc748add8c1e7032cc2e1c29ea922f8ed

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: edt-2.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 203.0 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 edt-2.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d792a3b1496f901b2b01309bb67a2072cd26bfc52e529a0339674aa98dcca01a
MD5 858d2d3e5c5d4d963106efc81267599e
BLAKE2b-256 7fd25e83cb0d30d81f3bbd87e118ce924ec3f055c30ab631ac1c845b8b30b842

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for edt-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ad6478121d3583516f0f7c3e3597cd0f0545abaabb2e2d5afe53d11e8d7f77e
MD5 a52d8605b6bb61add69809da746ccac5
BLAKE2b-256 90e897d7cd262f8086a2b53c62c7dd2aa8ef671fb148ab37befea52cff68f895

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: edt-2.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ 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 edt-2.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e068ad537d7597e2bd0d030f7a163ff3fc7f2a112850cd1ac8575bad62261d82
MD5 f883d6b5bca7b6833c07f05533c3ccee
BLAKE2b-256 e81366c4ffba0f256c77a117f9c321fa3c74749466e4deb9624bdab11cd5d589

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for edt-2.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a25c48f282a979c8566ff999f35b746f3324313cdbeb695cf8c722e593ffbabe
MD5 0b5065ff70d2db28b78f166e74fcb6db
BLAKE2b-256 86ace28a3737d2c808c1a20c0b82e91b40148f4cb5967fa65df186b81234d5de

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: edt-2.4.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 308.5 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • 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 edt-2.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53c7a5246a102e674053f94cf58c7dc610484e90bb9f0455a523062cfc4e42fe
MD5 d83647f5062dfcf68657eea280a7ed6e
BLAKE2b-256 52addc28888136d4d3bbbc84f0370bcc56e173a206ff36da83c7112b7ce7fb85

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: edt-2.4.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 349.9 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 edt-2.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b510b00997d8f016fbb7830cc4b26ca10227a599150b4d0ed345cd424c8e059
MD5 e68b30826a02f5b2025ca9d5ea61f5de
BLAKE2b-256 5bae989967ec17a05364b304636a48247a5023d38c35bead1190acd8668d5994

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: edt-2.4.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 241.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 edt-2.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7ceec582e6c885ec5961d340fde84ba0665f319fdc26d4c279d7c92fbeba98fb
MD5 874ed1dab70d4bc1d7e365245cc6a733
BLAKE2b-256 7a979e4c3501cc2cccb10376eebdc5b03397097fa989fcc5e00c8c13a34c42c7

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: edt-2.4.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 203.8 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 edt-2.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 38c2d8532e994108037758724feb0848f37dbfdc939e5f4f39308d54db10105c
MD5 18de8f6ec67660a3eb1e86f954b02772
BLAKE2b-256 67c83e20f882745a72c795e302570cf855b8a66e7bac694d32ec1358d1c122f1

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for edt-2.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bc1236ae6ad26bb632afe867734ffa4f9cfc4bfa31010daf43044c4611a7fc8
MD5 e5a54b7382e1c90694acb88fd77738ed
BLAKE2b-256 a014ea52dd40da0b3392375f25e0a2f1e7fc8598ec7c022763f2eaead151ad0a

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: edt-2.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ 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 edt-2.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ada75f9c4daa5002cb88209fc5105bcd1e382044a38fe5bbaae83502b6a7db58
MD5 b79c0700250c45ed9a9178a1605a6ecc
BLAKE2b-256 cba2a44af1c3063c7ea6f9311193eb50fc447cc2f2c65b12ace1401e7a661ee5

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for edt-2.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65ef09a9189aca70e33304072c6497395170836fe071c2de7f5db9113067bd48
MD5 4ef06fff822722ee653892816b4873eb
BLAKE2b-256 ca94e0dcad57255ffdf15951050f873abe7b1d1831b6a105393818856a4ad0de

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: edt-2.4.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 306.8 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • 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 edt-2.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebda40772219f4886ca31f8a36ca61fc3ccca84590b215ce1728f611acf26de5
MD5 62f014bf450828553738bce7d6278644
BLAKE2b-256 6b9b97ae214f9574646a5866d58b49f2b646ed6e7fda1c56eb41074e4e4941c1

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: edt-2.4.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 348.2 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 edt-2.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb116cf81d7e19843ed57011855d78d412b89c11b1b1ca396c48743f61a9996a
MD5 4e26855960ce08c6e9e45d08762ac07d
BLAKE2b-256 2596c987a5bde0df9e692b224f4cce6bc5a93d50fcdd9678a5dab1920fbe0bf2

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: edt-2.4.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 235.3 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 edt-2.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b44462748a6ec0552181f29c6bc5c9b04b4a6125c0efa3711fe1cd118c732bc5
MD5 9ec0d778a249c3237be522196018a7e3
BLAKE2b-256 716aa1acc5a6c3f48ec37ec2253a27046e7762ce2964b7a2ded79fdd647de89e

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: edt-2.4.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 200.8 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 edt-2.4.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 28f59c1da24e2d6bfe23afd5a9a9e8071701efa3e0ed1e6049e8120c1d03a000
MD5 605da33d7d2b680885c51eea2d330a23
BLAKE2b-256 9492fd23bfa2f4e52a58e900d0f7ac5435ecd70a5e415ab5d383798610febd1f

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for edt-2.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 376ded44108f140733b8812ebf5185a46067e256a257e147a4a91f028300f8ab
MD5 51b21a8cfb3182f43fb25b910e2c0aca
BLAKE2b-256 ba985e9d0065800d8f8aac4ae6eaf3cc817096bc124866ad28d45072b3280627

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: edt-2.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ 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 edt-2.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 992c54a2729241959829c5990b4872f8075781bba3aaecf309f91f578462bb89
MD5 e90ceea82981fbc0a04e1a1f563e475a
BLAKE2b-256 9e5c1dd02ee730ac032c7e5f12b190b5759bce9bae592b62b14bbdd6dedcf31e

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for edt-2.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17568e3870fe17dfe259c3abf221c9811d97c9bc1aec6487eeca8dfa01b5b573
MD5 6c2ddee07e13f8665a56b056a9f2e4b1
BLAKE2b-256 699be036744ff5d59826811d4c58e88efd17a19686b74fee786d22357a2c49a7

See more details on using hashes here.

File details

Details for the file edt-2.4.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: edt-2.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 345.1 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 edt-2.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba8d4332221e183c6417a814738dff77174d0bf60c04a7c54d7f32c84b6e0d32
MD5 32aa1b8431b9439c8d28db048e4c537d
BLAKE2b-256 1e3f1c942b58113e7cd7300b6b7b3e557fdfd7920ec3080ebfb2e6ef7425e985

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page