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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

edt-2.1.3-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.3-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.3-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.3-cp310-cp310-macosx_10_9_x86_64.whl (228.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

edt-2.1.3-cp310-cp310-macosx_10_9_universal2.whl (427.5 kB view details)

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

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

edt-2.1.3-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.3-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.3-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.3-cp39-cp39-macosx_10_9_x86_64.whl (228.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

edt-2.1.3-cp39-cp39-macosx_10_9_universal2.whl (427.5 kB view details)

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

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

Uploaded CPython 3.8 Windows x86-64

edt-2.1.3-cp38-cp38-win32.whl (134.7 kB view details)

Uploaded CPython 3.8 Windows x86

edt-2.1.3-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.3-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.3-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.3-cp38-cp38-macosx_11_0_universal2.whl (419.8 kB view details)

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

edt-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl (223.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

edt-2.1.3-cp37-cp37m-win32.whl (129.9 kB view details)

Uploaded CPython 3.7m Windows x86

edt-2.1.3-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.3-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.3-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.3-cp37-cp37m-macosx_10_9_x86_64.whl (223.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

edt-2.1.3-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.3-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.3-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.3-cp36-cp36m-macosx_10_9_x86_64.whl (222.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: edt-2.1.3.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.3.tar.gz
Algorithm Hash digest
SHA256 5dd6d5ce25e53eda113b43a7942c108747be8d5de352b1a90c3dcdfc465440e3
MD5 39df966b6a24413b093c64cc890807a7
BLAKE2b-256 eeb0fc8fbf3352be3fa571774f1dfd5d7f8f561cd81dc21543144bbde1b79375

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4d701b6dcf45a0d61e60b01214ee45d6ad402de2d04aa7b056a0eeef585c779f
MD5 9d63b73548c68ae700a402e25cb2457c
BLAKE2b-256 a50ddf7859294094fd44e9ab713968cf28c38b7ff676056a0bbe41cad57ca23c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 903c2af29e3515be52eace393786cd37478a130adf39209aa49653aff652d0d8
MD5 b0bfa01d2406f11578b3948c85a836a1
BLAKE2b-256 c2e830306bf3d90226de029250a359941e9c8920d36d5b7836eebb2937e7d4f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edcf2b56f0364ecb7f55ea71ac7435f9fc952bf458f33fe1f7624012033e4646
MD5 172b6f1c4486ff13f4006c695f4532cb
BLAKE2b-256 eb41489c2304b2f45e4f3091e36a2b04315053e046e6c331683e86dfac0cf47d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ca6192368927de40d6fbfdcfd8e9b141a423c7aed4bed61bd52f2b9852c83bb
MD5 e05b60ce1232bc9ae3c2ab9a9bba4b7d
BLAKE2b-256 326a28ce8212ea50bd0c09de44e4da84df12f342124ae21822ebca886849b138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86d4689b4c160440b3cbda4e97fbe491743435539da804fec35118a50a8f467f
MD5 86da771bd5971617983c7a438eb49101
BLAKE2b-256 f0ea44dc509cbaf7b643e214a1310b51810706a98481b8fe63abbf9655e77bd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 228.5 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.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe85fb1cb3a1b0decbdb813623dbe247f2a394b23b06e9b0da513a1c18a2cbd3
MD5 c1bfb8f715f97c9877baacfacb9c841e
BLAKE2b-256 9089ccb07a1e65b293484c97426b7d16c72fc378d06e2dbbec4ea01c51c41743

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 427.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.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 690ff6d6aec9380b1fcb2683c05dcef677df17a54866e09474b0f718d4236037
MD5 f2abe8e83be33c88ec194c5ba4e539ad
BLAKE2b-256 b67c889d37180e02dc01875d6879c92c1ea4aca9c872a9eba037c29e5900f7da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c0eb77951f6546a2b89dc4166c0728a44917d5bc9cefad6caf2938e9e8c13b66
MD5 bcc53eca3dd67a43fbea9ee3b62bb3e8
BLAKE2b-256 f3a0c9b903e3320fe135eab295156244fb8f6d733ead2a741dd4942cc5a18b86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9ee5df27223a62df23424c8d8e71e0fa46debe4f0ebed4e98d7ddc7be426c40f
MD5 3a55ab4b8964dbde25086eea6f759df7
BLAKE2b-256 0020bdbbfbc38aecaa30c1f8e01791839c9922fc0f473e10e9d2c9550b8aa422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09867e6eb9198b8581798283c0b0d932a04ec5400bda36a487a6a7613c8f7408
MD5 f17953a896f9bcf37330e9d5d7011b1a
BLAKE2b-256 4e5a7b8e5a6fb8405d209bd1ca35f615974d6a53af14b79c3c21ccc9fd1cbb5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-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.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e3faa4e019f127b84982ae120b207c25ab4c9ae3e2489e4477ce9c117c219449
MD5 8bb63b88f67a08a7f85924c6015b8b83
BLAKE2b-256 1c1ad47cf63d6e4ada146b6b0de435bfaf1edebd430949b105ba00eeafe754c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cfb5a53d1de8d1e877af73c63416645efed83cbbf16a5b529fadc8a9138680d4
MD5 40398221c2d34c0a1d6c6234958b6d76
BLAKE2b-256 dc9259deae16f3671a6cdb3fdb9dadfa65ad2fe865d859a3b91624a2ec8c60e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 228.5 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.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8fe54227e2bf397eebebae9adf53e11098dc8d1f2193bb558c284e63a74c81fc
MD5 1b030106482dd207e290b7f4df248b7e
BLAKE2b-256 b569b44d6f4bfe48a6489af4e8c2debcdb2275efa646180df27080100ecd0098

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 427.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.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d48998bd684c03769ba42d2743d2ec14b15e8c7d35f1c5a5e5dc162ab90ea4a0
MD5 7f558175bb9f5cc587f04578ff877e3c
BLAKE2b-256 01fc08fe99389f16f5a8cd3c3f5b6db4bd9376ff6f5ce832a5ca0aca9fdec300

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8d653ededea9bc6dc94a7dd16549ba7262738ec641238acd359199dc259edb4e
MD5 fd0d2dca6788886057a283aa0e362703
BLAKE2b-256 5c6aa9086e757d694d234fe7a706fbb680db720650a0fb0c4ace3b444e5d5786

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 134.7 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.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 23e439c415c7cbc5be4cbe647d7eab056be2f9a7fb6517af01938cdd7c5609ed
MD5 2510c82bffda9c27e911a1c2bc640d52
BLAKE2b-256 1a3f8f499c31186dfc75b82332fbed55cbd50e3fcebdf031a269b1bb8e49af31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63686107a0b8567af26d0b00046395c5de8f79b3431c1da68a146e7d3e2728b2
MD5 1ffcfa85a06d895c5fd97a1ee0a24ee2
BLAKE2b-256 e477488cbfaa5318a666deb1efac805f2f6ee8532c5b2768afbb74a15e5dcff5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-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.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d9e6912ec7c5d3ba5f917368c141e39c3d51d20c33a8f2d81e50e146f3d7888
MD5 c16aad1fde6a9a42a96d2d87faeaedf7
BLAKE2b-256 9a3f5661743695691660f10c267d0d5a3fe1997d255a1a35622091bbfb3483fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b16cf63ea43804a1c35f2a6f98388f26cce78be8def4f15e446dcbb7662464d
MD5 e5eabaff82999c4534c27a02cb073d0c
BLAKE2b-256 0a443652282dc4c19164925c61f794cd52ad03bc2e0df97f9696e6df596fffe2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-cp38-cp38-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 419.8 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.3-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 98c533fd49376965e5b97ae07cba48cc2c69ba0f58ef454a55b25b8987cdda6c
MD5 939aa264473ed2d22e1613e064464f3b
BLAKE2b-256 44d26334ffd795c0ef5fad08ab972be351e9052e3de48be547d59aae6896ddc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 223.7 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.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb1ac8c39f182845b39c8ccef28333c526931a37483a99c08844c76614cfb77c
MD5 71bae86a72f0558c89ae45fbdb85e29d
BLAKE2b-256 92c12063df9a76579f5c20fb86e98766fe775c308475aa4f6f556ab74178a405

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-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.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 85ab6b04f6317b1f0e844fd1b76ff952c53da3d7ae96b3e2d0fb4c1d232c3705
MD5 4ca0cf67e7f538560e4a2b5c4b2970d2
BLAKE2b-256 42e4467c3849d4ea7a3b6c39558ad863ac27984038b2637666dc913a538dd28e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 129.9 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.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a8ce692fee2967ba189f16a0b8995a32f07adc2f2b38a67950374af5f7a2e5db
MD5 e32e5abc70a5336139d410aab8bf4169
BLAKE2b-256 ab8ce83796d09e6ba1b33f941a3b4e026ecb09e9902c2a8b2f62cd708091911b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb32e47c79ed6fc83bd8bed842314f53ea378759f5c55fafb6e5ff32c6099e64
MD5 d853df8bd522bd5130a53d551d1d81f3
BLAKE2b-256 c50d0b3e7688e7a550e91fbf218052215e3c14bd09cf441068639b0609708314

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-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.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bb64dfea4aaf3dd27893021552ff8d8c6588dba808ff658ea46312b954c5f037
MD5 5e0a9386d735fd0c9cd8ed77ded1df09
BLAKE2b-256 6776b0dad337cebece841cc387c7aca4c5159f6833abd85b60da9a9b8babcf50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 441c728bee88403130ed1f6c5e4a3a6356608f0d310ae6756442d72b5364ade4
MD5 db0574624088f2b6acad38adde3c5898
BLAKE2b-256 4a79b26204735cde8a71d3a3c98d5f640d5b715bca9df32c5dfe3515f73c2d9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 223.2 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.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c0e46507b241cd2bfffbda3dd4037e5ddcdede2f8a97ef8944e9d01d45cfcfc
MD5 edf182ff6cfffdace6d52bf498ecabed
BLAKE2b-256 84e7bb600eb7467e70184400fdbc90d75fb698e309f50983506a81418a6efdf3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-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.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4c62622777a022106c20ac71c94872a100f339864a730ec432322a4398c7a42a
MD5 71cf8d1a35bb376724ac4fface7a509e
BLAKE2b-256 795951f6e82541f2dec7a242a0d130c2ac14e9242ebf9761815ac3280d8d9d69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-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.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 70c48e6a3b9f3923e81f498f9bc84ee683cfe06a61ccc2a7960fc1ec1c27e6a0
MD5 1bf12b40c6f4d149b43095dfea59778e
BLAKE2b-256 fd3a580bc6a586ab33ede8134e43b6f5f71fb81fd57e426747d59a1a00de1ad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcbf4af34b189d202795df894366528d19ef6184de994b629ecc82be3baff3ef
MD5 e6b10a0f89f8c1fa2283a28f0097456f
BLAKE2b-256 9c496d57944c8b2e7e3a597f352ff85721ef8f769d3c856134f4a7815cdf0e86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-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.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30992da653f209905de6aae9614afeab9ea28699a8893a4eb3e9ef3e21b3448b
MD5 c2fc20847d5defef72eb705baf9e8e95
BLAKE2b-256 06202ebdea442211f44dc9a7976f2d6d068ba1a737dbffc7036741088b9714ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.1.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 137fcf5f1d26cb4ca78a32af8a211eaf4088226561bd95069fd40807c824150a
MD5 dd419fd1a203b7a7469c01ca85abc5dd
BLAKE2b-256 123caa758ca0dd505ab785ab19e1045795042415b3279e2b0f5315e15de28103

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.1.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 222.8 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.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 615dbbcfba56b061c0842ffe55596bbdd4e7eeefb6eece1ea75ded0a16b0fd6f
MD5 76be89cca333fe965f65e7689247c089
BLAKE2b-256 6b28e55862c27e2efaba0ec5b2c1e268f73d19526463ac7f0b6bf49bb120caf2

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