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

Uploaded Source

Built Distributions

edt-2.1.2-cp310-cp310-win_amd64.whl (155.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

edt-2.1.2-cp310-cp310-win32.whl (134.2 kB view details)

Uploaded CPython 3.10 Windows x86

edt-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

edt-2.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

edt-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

edt-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl (227.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

edt-2.1.2-cp310-cp310-macosx_10_9_universal2.whl (417.5 kB view details)

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

edt-2.1.2-cp39-cp39-win_amd64.whl (156.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

edt-2.1.2-cp39-cp39-win32.whl (134.5 kB view details)

Uploaded CPython 3.9 Windows x86

edt-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

edt-2.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

edt-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

edt-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl (227.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

edt-2.1.2-cp39-cp39-macosx_10_9_universal2.whl (417.5 kB view details)

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

edt-2.1.2-cp38-cp38-win_amd64.whl (155.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

edt-2.1.2-cp38-cp38-win32.whl (134.6 kB view details)

Uploaded CPython 3.8 Windows x86

edt-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

edt-2.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

edt-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

edt-2.1.2-cp38-cp38-macosx_11_0_universal2.whl (408.5 kB view details)

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

edt-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl (223.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

edt-2.1.2-cp37-cp37m-win_amd64.whl (149.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

edt-2.1.2-cp37-cp37m-win32.whl (129.8 kB view details)

Uploaded CPython 3.7m Windows x86

edt-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

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

edt-2.1.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

edt-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

edt-2.1.2-cp37-cp37m-macosx_10_9_x86_64.whl (222.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

edt-2.1.2-cp36-cp36m-win_amd64.whl (149.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

edt-2.1.2-cp36-cp36m-win32.whl (129.8 kB view details)

Uploaded CPython 3.6m Windows x86

edt-2.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

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

edt-2.1.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

edt-2.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

edt-2.1.2-cp36-cp36m-macosx_10_9_x86_64.whl (222.4 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: edt-2.1.2.tar.gz
  • Upload date:
  • Size: 183.5 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.1.2.tar.gz
Algorithm Hash digest
SHA256 86bda7feb26afc4290ae590c45cd29d33ec4f2b8dcd2a845a672a0b366c3d9b6
MD5 d190918b9d061f3fdd51aeabaf46363e
BLAKE2b-256 b27a39142f23d1c962e1dce79525bfdce8034ef96ced4ef9ddbf23acc81924a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 155.9 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.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6c100ab322782abfbd1a3e5f468d64b5ad23b3fd384d7bf668d227ed2ec726ca
MD5 0d89a07895df5797b087868d895025d6
BLAKE2b-256 0d99cd5962ffdce1972241de85f92e7937393b94ef15f94f752eac9bc6867efa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 134.2 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.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 475cbb0896d4fd9589550133dddda47853535bd5cd333a6e55b3cc158ef852dc
MD5 7072259e148502af1ac8671f0ba21ece
BLAKE2b-256 e048124f9cd65a4ae83c24685b63768443b317d3bac60741d49e7dc8d46ec48a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1be96ec7bc815170f575208d727796e1230055ef88214603d3a3654cff6af341
MD5 d37384f4c24c92e18604b798412879d4
BLAKE2b-256 3d9eb8da5290a790e64f2c60f0805ac204429022e9ed3ac2bdd7abeecc6ce2bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.0 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.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e1aa88f71e07ec386efbaefb346ed326fe9de64ef60516af9a29b30745930d1
MD5 52c525252f4d56cb1b5c6e1dd626e2f7
BLAKE2b-256 e216509bb1c107dd9d0ed20851c8cddea91ec0efe491802c5a2f282d47ec1ccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e3c1a73f0accf02c4f3593f53868e2c6d605bebb9b5fbe50baf3143eb4252b2
MD5 47ac920c8e025d1d8621e02690a59c9f
BLAKE2b-256 aced38415bf81566bdd51125f2a0d03c1b50eadf07e67dca1000636673505598

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 227.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.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f794d8bd351214b922546842f43338d11ed7dbede5e03cd2094071fac8e47063
MD5 f1a55a2da6b3117fedc2646c7df0c4db
BLAKE2b-256 a3e654bab806d1d0833b6ed936418eb51b4074ee7b4824007924254fcc854cce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 417.5 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.1.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f0db9e10abbf003636e29ecc68d4b6ce4ec67f1257343b220b3628aa3b7d0f9d
MD5 4f94a6accc4a603ab0c02cd88833d506
BLAKE2b-256 b5dd31930931dffaf3854f27d91aed0a77e048cd66eea53769aa4aff498f8d62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 156.1 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.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 413982c695b7f57d4837f7f3d4dc5a2926a7b730c2b62267fcd75beaa0f5f502
MD5 dc74aaf3b01fde7f47fd4bd6c9d3df56
BLAKE2b-256 ff2ecc77b3d356b13ca4efd93b20cf196de8d3bab4f52e7afdfcee1a95b4b224

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 134.5 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.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c36c10c6140d0029e1017ee21a9525f87ec8c0a5717a063686f33d06df98134e
MD5 9a1330ae9c7a7d17fa0d70291faf3b7c
BLAKE2b-256 2647a5bcf279813f5c6c570f063e23abd71dfe75bfe6b0b266412a1c912db5de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fa4ba25e305742c1d58710dac46d4b1dd4fa02a033b594dd74301d04895e54c
MD5 b0a50935c201eae46b231fd87930c197
BLAKE2b-256 4cb2e5fe6b699829186041f034d73c664336805a67882c228d216ad6212b9662

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.0 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.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 48be053331765be32e321e162f21b28eaa1a0ac4c0f762c3fcb58cc71da213ee
MD5 37dc5c6aa39d1acd28c66bcadb5c3721
BLAKE2b-256 78a775514d038ea7778debea5f4f1b51ec13fdd1534ac3469ad148f15e9940bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5e41a3be25788822144d90ab5902c642386b064ebc652d9b17a2dfa9a8be55b
MD5 1bdb7a5c2ac601368688c4fc88e14ae6
BLAKE2b-256 9308707ce45766b39f7774d0e6707280218eef4e85b7f73bd9f19fe19dab3b99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 227.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.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c2bc80b68bbc491cb20695086c0c715c9c4895031ad2c2a768e4706cd07e2b8
MD5 6502312800445130ac7726e82ab8f2a0
BLAKE2b-256 ca85fb254102d13a579474b3ce3b921274285ea86e881c49462b517dedc4538e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 417.5 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.1.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6ba610c4b9a3bb186d30f4f67668c6632a55128049fcd5a211366153af0e4cf5
MD5 3df3f72df4c1aa34c249ff1a8c83721d
BLAKE2b-256 0587592138bc33d6b7775e1f6b95bcc76b3a1115cd3086e22a4dd6c3df00d3d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 155.3 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.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 544b8943d4d6aa3cfcf83a8cdb423ee6a318a598b0621441457ab0128870eeae
MD5 c9df8ed56243cfb7715a182617d94fda
BLAKE2b-256 e372c8f4d4369c2b6c83c5bce37eb2a26f666b379fe0eb5786f5642798ce8890

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 134.6 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.1.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e67ae37f3ee58fcfc9e8497368d959b61557aa93c0193235fca0937ea2f6ee50
MD5 6b4d17b022fcb1c50a21402d396e1551
BLAKE2b-256 36d4e70929080fad018b7d1605eeaaea6484287029e12cd1450b516502f243c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea0c16176441843e3b8f7e52792e15a5fc770a89d3ef57d2f4355d5a75c533e4
MD5 4225d083f3cb146c87c76da3e89b4581
BLAKE2b-256 9209cf735f2f45b0d54b928152f34f937143c0e349901519a50cb4810cc1c68f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.0 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.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d222e0b110ef906de12fe45be8566b6944b82b0b9dadf309c92894c2f6372e1
MD5 6c2345999873bb17260f74fdab64c970
BLAKE2b-256 4effb4ddd290729c1f85d887de0aba1c4ae96717da5c34d91c7224019259e1e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec841744f320ea9eef68129ea20a20d7d1d760382fc5a03a96497a14977e02d5
MD5 e3d86d57c79cad2b5fde626b6d3431aa
BLAKE2b-256 d3bedf868ed685a035f6c73d48d1822f17d20489590ee22c2e492690b593e2f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp38-cp38-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 408.5 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.1.2-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 a921228fef95dbcb443b641e3f9ac23746b1c562a62d11635b6af07254c7a240
MD5 96a5b7863696916273c8b7075c1e9109
BLAKE2b-256 9c825eeaf11984246a8740c0e6eb49a76aa285fab9534c590a5d305a9bed5c75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 223.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.1.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4f545ec0733ed3558504af0e67ae85e6f3f6d00d837ff9a8cae22720bdd0238f
MD5 1e97c496c1d929c1b43ce7a91b5b02f3
BLAKE2b-256 e257dd6304bf6dd3bdce2a15fa1613604a4135375a63cf5f61c56706f94e4dff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 149.8 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.1.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 05b909f2d6a7fc126427adfdb37a1157ce71f5e407c3e2ad64b0ef9facbc3b2d
MD5 b9b2980832a8d350a939905a5ebdc6d3
BLAKE2b-256 afabd6882305a2cb41944b9c3d816081cfd5fa2f7b458244670acd5cc299563e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 129.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.1.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 40cb2675cf66fc0c8191d2528e7a1af925c01623f4f0a82b4d353d916bb7ab32
MD5 2f2c5f12401a2c9c031291d53dc2eab3
BLAKE2b-256 1eccd5349395b9cd9a74b935b3dd4e4e673136339a0532ba6d0d1d630dcd4aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77124deb16fd19acce021df2ef42e1fc1ef3e3bbe30df2c39baeb696dff88a7d
MD5 2c5e8aac0ae10cc6c071c121fa2a3990
BLAKE2b-256 65697734230100aa9d184b7a6261dd145aecc69897ee746e987965d29cae8159

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.9 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.1.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32fc8890985d59596d8779d8ef8af5cfca518fe6622154b9210410d61761c17a
MD5 fe9784ae48c8501ba2fbe12f8602596b
BLAKE2b-256 2ae6ce19d3350d1f0082edb2ad90b618a2e970c5fe16c186b1057bd5d934ec9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f2fa4ea2662195dde91562036ab6ad9ed3a38f5fae555fb0563e587e5ecbe1e
MD5 babc09ed7d754d9f34946ed35b077b35
BLAKE2b-256 9ace79f790cd6aba4801e5d601ac44ef0ed29c318e875f5899f8d7aa1414e4a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 222.9 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.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bd9c5158ca17bd0ad94a8be6bd64a57c7f11042aacbacb55b1ba41df408abac
MD5 15aedc86a6c5f22d7fec68f89e54eb6d
BLAKE2b-256 4b7b6d3651847b058a4c654f2f072ad2a3bda228c5985db1079f2a4ea5a99500

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 149.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.1.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7218bd36615aac638c64abbd1de37cdebd29caa9c65d52c9577cd20fc7d0786e
MD5 92731b4997ac7e4310ab5dd2bbb7e9a5
BLAKE2b-256 a9e588d55bd3425212d8724fbfa5d8fbf078766886a4684738bb81b35a5e0e04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 129.8 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.1.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d955c35754dd93dc286a2fc96ddf544133adfc263a82e48e17fca4784736064b
MD5 ba88ca4253ceda13360b1925028d0605
BLAKE2b-256 e4bf1244579544bdb74e392ff15c3ae8c392f26dbc2f6498356340f0133735cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cc063ca674e760e3d7b1a8a90379e8b281afd542c62e023240b3e6be0e25290
MD5 795c0e21c3236ad134e6ed42fc5604ba
BLAKE2b-256 1a9dd0208be474e28aa25626aaca8ca935cd2d4c1bc7c97ed642c16bda2a3dcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.9 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.1.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c194d77aa5c9d4e2ec0bbf7ba890cde6c5015577a9551d293bbd8e3d80a68a90
MD5 d99a4c8daee19db768c2796f73f477f6
BLAKE2b-256 65b767321b7542dbe564c7b05414d803cd340cd48e41a114033c3f2694ae33f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5509e24e0cc842b38e44679ba1fda54a796eef0e8c2aa4bf42f57dd231fe09f5
MD5 c9477229b2725dac9a8d8f520e965966
BLAKE2b-256 fc7edd3246e213c8997a58a611c77cfa2756568adf2e00cf0a432c22477cba5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 222.4 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.1.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d82cdabc0b768c8281f68321f8b2c8ea25021e2ba961429cd17566c2a53a0cf
MD5 07c9d928afc416c025321157b160f0f2
BLAKE2b-256 1d81cbfc5939600c58d88310bcf1b01aeb512b0f4ca59d7660fdd772fe5b4d99

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