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.3.0.tar.gz (249.9 kB view details)

Uploaded Source

Built Distributions

edt-2.3.0-cp311-cp311-macosx_10_9_universal2.whl (590.6 kB view details)

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

edt-2.3.0-cp310-cp310-win_amd64.whl (215.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

edt-2.3.0-cp310-cp310-win32.whl (181.4 kB view details)

Uploaded CPython 3.10 Windows x86

edt-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

edt-2.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

edt-2.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

edt-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl (315.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

edt-2.3.0-cp310-cp310-macosx_10_9_universal2.whl (592.0 kB view details)

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

edt-2.3.0-cp39-cp39-win_amd64.whl (221.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

edt-2.3.0-cp39-cp39-win32.whl (186.6 kB view details)

Uploaded CPython 3.9 Windows x86

edt-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

edt-2.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

edt-2.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

edt-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl (323.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

edt-2.3.0-cp39-cp39-macosx_10_9_universal2.whl (603.9 kB view details)

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

edt-2.3.0-cp38-cp38-win_amd64.whl (220.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

edt-2.3.0-cp38-cp38-win32.whl (186.4 kB view details)

Uploaded CPython 3.8 Windows x86

edt-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

edt-2.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

edt-2.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

edt-2.3.0-cp38-cp38-macosx_11_0_universal2.whl (593.2 kB view details)

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

edt-2.3.0-cp38-cp38-macosx_10_9_x86_64.whl (318.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

edt-2.3.0-cp37-cp37m-win_amd64.whl (213.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

edt-2.3.0-cp37-cp37m-win32.whl (180.2 kB view details)

Uploaded CPython 3.7m Windows x86

edt-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

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

edt-2.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

edt-2.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

edt-2.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (313.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

edt-2.3.0-cp36-cp36m-win_amd64.whl (213.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

edt-2.3.0-cp36-cp36m-win32.whl (180.3 kB view details)

Uploaded CPython 3.6m Windows x86

edt-2.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

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

edt-2.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

edt-2.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

edt-2.3.0-cp36-cp36m-macosx_10_9_x86_64.whl (312.1 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: edt-2.3.0.tar.gz
  • Upload date:
  • Size: 249.9 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.3.0.tar.gz
Algorithm Hash digest
SHA256 220e2086fdf32bbd8964df76b3e1a42061ece1f4b9ea95ec83a094d24d258664
MD5 38c88df0736a71412573330ee690fc2c
BLAKE2b-256 cc76fb7edad828ae09277869226d524d3c13adc0f0220a3ee700568421c5630b

See more details on using hashes here.

File details

Details for the file edt-2.3.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

  • Download URL: edt-2.3.0-cp311-cp311-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 590.6 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 edt-2.3.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b255e62dc7343c22a035bc11495000e486f49e0cc5fef652429109ef44b23e4f
MD5 ce3f23e1e1097dfe98d2607b28215a4a
BLAKE2b-256 4d1d4d28f1d38283241c9f903ae2e44cb5fa32b01df5b8b46828fa6b428dc6f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 215.0 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.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b27940efb786017972adc78be73161cda7c5592fde6c17679b977026d76307f8
MD5 d7f8449c37275efbe8f4023306e66f5b
BLAKE2b-256 d2d95d7c966ff89b0b0c119e458baa88d6d428b7f7406301491a661ad7b608de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 181.4 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.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5f834270f6d2290ab83255b01578d485e2d8869db76ffadd9789ec5b083992b2
MD5 467861d1859214912670e8d8bf2e83a3
BLAKE2b-256 fb7b54834240b59b3531e6f5d36c52d0a95dabe629987d4836e4448a24bf59a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9b26a4f6a52e685be10019e31a69fa46501880af7ae2127bec4e107d8efd759
MD5 a3e7fdaf07b6e308ecd739ca2096ece9
BLAKE2b-256 077b8196ab63b4c5a392669b789d15b328cf8607b287e1416648a25fd96cf0a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.8 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.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a0ca502df8363c408aa634333ec3f68d7d64e876a749b5a2acf17fe017d8ed1
MD5 d5e8f4650c160769cf16c89507f5e2d0
BLAKE2b-256 7de21c6c355a42c52319603c3f43f8bc97af1368326d70572e735aeac4c8c85d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ad5c14b9233fd2934a853ce46e0f51819e4a4ab876c50c31b0b921675ff94f1
MD5 59a8f947c385ca0ce9e69aad66d40b1a
BLAKE2b-256 898065a773275cbf66455670c03b0578d8d0807d70cc70a42f724202becd4e86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 315.9 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.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5aa2ccfa93515961a344187c5b34165d9f8b2a4e0cba1086d8972b0b7a043340
MD5 7a7c881f465394b657c372258c37bf4f
BLAKE2b-256 7ffb6fcb265f92fe6164ec1fcebb3334e38c0023249ba01d6ca43c69d46b751b

See more details on using hashes here.

File details

Details for the file edt-2.3.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: edt-2.3.0-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 592.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 edt-2.3.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6c751938354c15e53a7025c809040d4fbb14d5a6fd5bc1620e5f76c5bd9b446a
MD5 9443acde1b95f9ef954d7bddc35b9ad7
BLAKE2b-256 45c0fd9a803ced596f67508d465f671d4df0cae7fcf8ad588ff281e4007e8221

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 221.0 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.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1af9f93fc5fb1a3d92cc0a487cd98b5b2ac4ad23bc561a145c4b14fa8e76c68b
MD5 d1ced685bb217175d0df29ec133415e5
BLAKE2b-256 2534c2d69464d56bf0c5b7f18dc593220050bc9a355c5b1e25499027718bf8a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 186.6 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.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9eb3e71c91a6aaddd730f00b1ddce6ff43121fe9f9d2d41ce09596c655fb2d12
MD5 3aafa7cde11afcdbd4e6a7a176855050
BLAKE2b-256 4cd395176f6730862ac890acfe76eb1d21decd43a5a2d84771b0bfccedd9bd41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0044a5118557466b5cad8bb0201f12a19aa81fa8ebc5778b62862d499921df9c
MD5 a6b86d5438692338d1068d16416905c8
BLAKE2b-256 378369f15e1826e961dc1d13c1bcd478a80ad5bd63e8f376ebd082a8f5c0102c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.8 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.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5ab4a6597bda99c5dd93ae23e05b13307a8479a0a7a549c711f166639fb598a0
MD5 fb109ac44daa6a0fe45feea2fd417e14
BLAKE2b-256 3a7bebc4eaddf87169bfebd872296aaa76b1510b5f7ed271215a9f09234366bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 048650d2529335eeef57f80fa286cc497ed5c01d83c63b85f01e3ca10d4432dc
MD5 b2d435a496e83cc5c2fc0eb757b1dbf3
BLAKE2b-256 78cfc58826aeeef6f26e2a61721eb6f438848ef61513d32ff5e6147d61858554

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 323.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.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bbd2b0dcd8845ca2756bf3804c18dce2f897966667d3bf4f92058bf77f04de79
MD5 16d4e6b53ff87451b4b41a095066190b
BLAKE2b-256 98c85beac06783c6b4a9920449c886ad89d33ccf3e651cbc8023a271504c027e

See more details on using hashes here.

File details

Details for the file edt-2.3.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: edt-2.3.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 603.9 kB
  • Tags: CPython 3.9, 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 edt-2.3.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9dec98b7ec9017d4a8835646778e77af5aea3bffdb6ef74f027c1c507ee05898
MD5 262488a4090e222d4d9e7cc712c5ba7c
BLAKE2b-256 8ebfab36644bae30c7163e557595f8260bfbe2feed37de7531a0cc720d7f57e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 220.0 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.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2e7068d5bc924cf67875f85260f4fdb8da977930fec7a49f84b032d822046740
MD5 046a478ea96ac00e9c9327a17e259c6a
BLAKE2b-256 670d13195b864d4a5b92309aea33b701e7bc7eafce9b9ef26237e64a607f28fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 186.4 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.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d71b951c890a9fb580769932cf76976dad6aef9df8b3c98e46470da737cc32b4
MD5 1d31566a63e4fbb3687558c6509ed2cf
BLAKE2b-256 1e45f15a7ea09e1a49a0d11e7ff02c5a5e2ead40a6cc1e00bc6dbd82e3bef4b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8cee581e20d15074584c9f64c83bb07d688285e3c6021222baa168c61f252e7
MD5 dca1a3968b5f1a507af7ae024bb01d82
BLAKE2b-256 345b4c9085ff1fcf0468ca3a5d2002853d0e69e8d2bf14fc9a9a3bfbbc1f1a2f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.8 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.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1807fb53af0da4f2b636f457cf103b88db4f85c6f669cddae50b9dfb8d2a7370
MD5 d1dc3a64afcca8460deacbd3a03d762a
BLAKE2b-256 48facb75d72d8d56ba96bbb52377dda3e8166e5d8ed05012a34fd642c5669978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12c36f8f9589b8fb54d4e564a4ca2d11b076e922f27235f72040fe87ca80d038
MD5 689647aaa16dbf5eb08d2af90c526721
BLAKE2b-256 2e3b8cb461c39faac0b49b90a48ae3da9991a247bc6c6d3175561d0d1e1e7cce

See more details on using hashes here.

File details

Details for the file edt-2.3.0-cp38-cp38-macosx_11_0_universal2.whl.

File metadata

  • Download URL: edt-2.3.0-cp38-cp38-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 593.2 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 edt-2.3.0-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 be3be63c20b275d891a0b7483d9dfcc3970a0870253b2d3bfe765f9ad8ed186c
MD5 8e1f3d01082732c84c4425f07888e0f5
BLAKE2b-256 e0e0742c12bb158ece62e7df5ded240d7e10f188b20de6d1ed6a2a82ec2b9efc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 318.3 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.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7060584c60805bc90372168ef0440c6c9d3723fa778da08365b334600d8147fe
MD5 ff7c67b4a3ccb654ffec1f21e6731b12
BLAKE2b-256 fbefa0a12445c3e4f8e2aba5911c9c89709e4897e1582d27d0f096849676238d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 213.9 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.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 31421a361c46d94acafe9f391e6ec16250e89c11f5f1c706af7ce924c05942f4
MD5 3367a7747eef7872fdb27080bc791f7d
BLAKE2b-256 8a2e9ae95afa902416709e9547a8ef575d85c3804ef4c09569ef119185af3ac7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 180.2 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.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3bd1d7f57c8465eacb0fe0690f1f2d8e3ed80f017a4a01b4483c245e26f55ee9
MD5 e5b0649fb579172eed7580974c19e56d
BLAKE2b-256 0403cb2d1e36aaf7aa5b104367a5e100ec80d34ff26c5cb9ef4693858e5ba303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1980801e6803b557af38f4ad06066344ad48aeb5be2529cd3329848758565e6
MD5 014f6935cb1ceadbafda6c83cee54cba
BLAKE2b-256 b59c5f1e8ccf51680d97f05dcdeda5fc1aecd1429f089da184787580b9384060

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 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.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f75c0469980ff8a225d2734bdf8c8e1343211af9e9a79620aba383c251a627b0
MD5 61d5da8a48adf861b0f9dd1504a23a5f
BLAKE2b-256 3f385fb91ff6d6aaaf06e6e1bb478a06c1d568209590bc03ed9f858af5573fd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3bd55465ebe152b18272fa4352718582fb3972d34580b4da502494726d76bb7f
MD5 41b8b404ddcc3c88380d256c2828f047
BLAKE2b-256 b77049956d98c962a12bcfef7a2e83f73a2f00ba3775e144269bde709c008357

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 313.0 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.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c4040afdb320629a6b16f9f149985446270a0b89f5658478b9eac2f4a6bee7d
MD5 54cde078fc50360dbbcae4f302673dc7
BLAKE2b-256 ca5ff2d324e4c6a3bcaf0cac6aec1d4d9094ea381b7e3ff8f498bd588bebe2fb

See more details on using hashes here.

File details

Details for the file edt-2.3.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: edt-2.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 213.8 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 edt-2.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 df2c561f95bdb7b01d081144f413878697808e7999c6129e3121676d7d3ef26c
MD5 aec93ec08ff275217363440fe9200e71
BLAKE2b-256 3c9fb5fa59469c519dd2f50ea2d99ea62dfbac34a00c481ccf61f30fafdcb09c

See more details on using hashes here.

File details

Details for the file edt-2.3.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: edt-2.3.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 180.3 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 edt-2.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 dc603daf0c6062864515c66f9c48ebaeced002154103fcf06cc0d41b56f69b9a
MD5 7184fb4eab9805383a900527ce0fce75
BLAKE2b-256 f66c321e02daa369c30749215d40a5d512e9579d06d21c44cec82d3e7c5c6826

See more details on using hashes here.

File details

Details for the file edt-2.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for edt-2.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a449c09b860b134840bd82e855d856c069f62fcbf438c8eddd545499c1642520
MD5 eb45a3e0aa8ac33fbec67975dd20a8fc
BLAKE2b-256 d2f1766fc7d24db17aed4f42d2c1896643ac1d691c8817cd0cb0cad543895f25

See more details on using hashes here.

File details

Details for the file edt-2.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: edt-2.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.6m, 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.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd7f20f9c59de0d721d35195e65914b880b652903029f43a396a30554f4b3b80
MD5 c02bb8757d64042e8f2d84df77964929
BLAKE2b-256 d6575bcf2e07c9c2a60ff09adfcc3335d4b4e7e03d43d87e75a07da6366c1e38

See more details on using hashes here.

File details

Details for the file edt-2.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for edt-2.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2d81c93247dac6145b5bffb903a190039aee5f479acb19efaffa5d83e1a83a6
MD5 c7798244c9702748e7236524bb20ca3d
BLAKE2b-256 25f7fedd2a428411b4f72c3914526013da0a8cb23afb8e262acbb39d8ee0812a

See more details on using hashes here.

File details

Details for the file edt-2.3.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: edt-2.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 312.1 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 edt-2.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40b522a2560270eeb34da1d02049bf225b2eb27ed0e5d8acc9bbc1a32e9e1641
MD5 3806d3b9cf01c76c9c4f5ae70f90c979
BLAKE2b-256 a65a00c64f15bdc421cb55101d40c37c0fe88e54a00709f2559e0c1ff251b89f

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