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

Uploaded Source

Built Distributions

edt-2.3.1-cp312-cp312-macosx_10_9_universal2.whl (621.2 kB view details)

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

edt-2.3.1-cp311-cp311-win_amd64.whl (215.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

edt-2.3.1-cp311-cp311-win32.whl (181.8 kB view details)

Uploaded CPython 3.11 Windows x86

edt-2.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

edt-2.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

edt-2.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

edt-2.3.1-cp311-cp311-macosx_10_9_x86_64.whl (326.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

edt-2.3.1-cp311-cp311-macosx_10_9_universal2.whl (591.8 kB view details)

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

edt-2.3.1-cp310-cp310-win_amd64.whl (216.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

edt-2.3.1-cp310-cp310-win32.whl (182.5 kB view details)

Uploaded CPython 3.10 Windows x86

edt-2.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

edt-2.3.1-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.1-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.1-cp310-cp310-macosx_10_9_x86_64.whl (327.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

edt-2.3.1-cp310-cp310-macosx_10_9_universal2.whl (592.5 kB view details)

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

edt-2.3.1-cp39-cp39-win_amd64.whl (221.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

edt-2.3.1-cp39-cp39-win32.whl (188.0 kB view details)

Uploaded CPython 3.9 Windows x86

edt-2.3.1-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.1-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.1-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.1-cp39-cp39-macosx_10_9_x86_64.whl (333.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

edt-2.3.1-cp39-cp39-macosx_10_9_universal2.whl (605.6 kB view details)

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

edt-2.3.1-cp38-cp38-win_amd64.whl (221.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

edt-2.3.1-cp38-cp38-win32.whl (188.0 kB view details)

Uploaded CPython 3.8 Windows x86

edt-2.3.1-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.1-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.1-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.1-cp38-cp38-macosx_11_0_universal2.whl (594.1 kB view details)

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

edt-2.3.1-cp38-cp38-macosx_10_9_x86_64.whl (329.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

edt-2.3.1-cp37-cp37m-win_amd64.whl (215.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

edt-2.3.1-cp37-cp37m-win32.whl (181.5 kB view details)

Uploaded CPython 3.7m Windows x86

edt-2.3.1-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.1-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.1-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.1-cp37-cp37m-macosx_10_9_x86_64.whl (327.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: edt-2.3.1.tar.gz
  • Upload date:
  • Size: 32.1 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.1.tar.gz
Algorithm Hash digest
SHA256 3696e1f7de482465af731a734a31b261a8852df8d583118f1b223d61764e063f
MD5 18283d7a457c2dfb44cd4ab6a10408f9
BLAKE2b-256 8ceaea52e8b3e636e195be151c5d373839d289d745a06c5a191f90609ca11e1f

See more details on using hashes here.

File details

Details for the file edt-2.3.1-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

  • Download URL: edt-2.3.1-cp312-cp312-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 621.2 kB
  • Tags: CPython 3.12, 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.1-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ec90b51b6b654ed2576c29cfb10acf66f861331f449159751ced216345b0816f
MD5 9fbe1928ddf418d2c6b97293b04b58b2
BLAKE2b-256 50999347e5ac29d47910bea03993d8c95c2a98774b2f3eae854df03520b30f2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 215.0 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.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 175c9c0723b82ef5843ab4cecb4d37a564a48ca5de53d88ac4ed8489fbc8f676
MD5 4b5f311cef7c55e219517c2dd86284e9
BLAKE2b-256 b4503fe182cd466822933e95b806edff6f93f96e3df682f25e5509640e86e3f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 181.8 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.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9f142afc0f8df85d7dfcfd5a0cbfe4b60d4fa212d4385044aa1db0648e836802
MD5 fa0baf06e3806e504be269ae611cd0ec
BLAKE2b-256 2be1ed0c6ac3196c53de18ffe277d2dc1464f570e7ffe847d34ba1b99a826877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0b23f327a31e47e6836824e52859d8068548875e03e2581c4e43c57efc94aff
MD5 87701c1521a3d5d113e335cfb8117ceb
BLAKE2b-256 0d62373d6348b508450f73bfd117fafd433d5aa2c0f6e36844650ebdbd6d6ac6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.8 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.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e37fd9f176164cb13bf14620634b597449e3246e9f77e6c2e6b79f738d09640
MD5 8fbf2c8cb21000f04047d873f81ef5f6
BLAKE2b-256 4129991dd11dbb4c1af87d029b51dec307faaff21b1d181ce061b4350f777d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c160b7df38ec4be50dd405c0b10466404d778202cd225ba4868e16f31670a21
MD5 81012be83f6beaf89e4cd533d9c334b6
BLAKE2b-256 4ac75b2abdb9141ec140b31e189131a48e99b8802d643a2143563053d3294fb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 326.9 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.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eacc7036aa63070f0711861cb49a00e5e01f377e5d3a183e09026196ab4455b3
MD5 066f786e02ebd9be1a072093b2918534
BLAKE2b-256 251421dbcbe6f91e4f8c7810539d19bcbd9c7887ba7df22292c03638d58fea25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp311-cp311-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 591.8 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.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 753e29c1ac41dfaf0cad345063344b3901576dfc2edda51fd70e42ee9a2e75de
MD5 94ddda3cf5e6edd9ec8bf3f6d5e3cf64
BLAKE2b-256 22c6ab41da9a3193c20618bba7185427dc4695c5a143e4e31a117fc512e768b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 216.2 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c8bba659a77954dee723b8ea23476554cc3c6eeb4ed14365d3886782c3d50a8c
MD5 baedd48e919ee5db57a1654096e2f857
BLAKE2b-256 98249c2e40ca9c44c5cbf32c2d7d1a2ac51285a1d3179321cfb2b67ca4640c49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 182.5 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c8006a89a29d080268d98e57e046f9e025a217dab156ed70ca4a75ec3c92d633
MD5 8205322e9ef5a99ddee0beae9c484fab
BLAKE2b-256 abff6daf8933e38ae703fb4e4454acf05f1f1a607bf20325a4dba9c452b56433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 588f8cccbd399f1793ac3b63f2f360b164333e603679d0d7f74dd151e4083691
MD5 8442eed86f392a49fb8a1c3e18d7eb68
BLAKE2b-256 be2d08b38796d3def55b91a37621450133eae138dfaa3df8db9c5b984b85b56c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-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.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c4ebb72300a22302928bd9bda8a2eae4b3ffa935578c22c478b7f627a5f4f18
MD5 635e41386edb4f5daef32ca08b9d353d
BLAKE2b-256 c3b7ff8a49598fb736f49108da71c78dd071770f25ab65921d9fa2fa5d633e26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c51a53430a6ac00518e19543cffe5520c3b246490578ba7a509e42901116cb89
MD5 cb41fbd00230b0de6ee2db352e475c73
BLAKE2b-256 f725373de2d37dee32e3450eefe26511b4f699e099386e9c786e8516d154261a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 327.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.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3bac8f74d038ef91868617170bc19aff03f8088c352a0f6cd7de83413a89fdca
MD5 9273222ce4c25067734fdb41607ee163
BLAKE2b-256 c29b4fca6105ee25b44de7bd67e2f169bf3576d263c58266d6f1c013f4f54d86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 592.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.3.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8d4c69413af8d6ae799913bcd57235459e9a8b6770a43cb4cf537c4c8f0456c9
MD5 ef6dfbfb9be2cf2147e52036e637f09d
BLAKE2b-256 a8d0562f09467409698017b6423077816854dfcb3d573f3523d88b8fca3e0485

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 221.8 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e1854f1d741fd17f7ede601c5701dbcba56d05800d6bbb2b8d8ff9e5e4b138a5
MD5 2f0b23f1c8c0f3596c9e1b47bc567ea1
BLAKE2b-256 4a3fe4406cd8e7f687d2fec5e660bcc0404f4ed9096d279254d32979484726ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 188.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.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 184bc8332afa38b174c0f3821aa7162ed3f4e35e29b23657291c7e3bd40572ec
MD5 f683791a8cb01d338eb08b9ddc90c559
BLAKE2b-256 cc39e5f6ab64311cfc1b197d8fe1ed05a38b97ff43519e9001f620609ef3c712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8eae2959c51c64c9176f5cf1bd3527d2f535294fb620b41823d2736c33806044
MD5 1ed845cc02e251acbf4febc9a1878b8e
BLAKE2b-256 e0ca93f65ecba7a68c86c8b2d079747e0c355cd976f1536ea386882b9de1aa31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-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.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2042a231cc54b68b8c07dc5e8bae4d54a0f50092012159b0d973c3238c6a09dc
MD5 049317ecd4ee96fe175400b58faa8d68
BLAKE2b-256 49364123e61ccef594307a79b85e78580286976739c31000c30773592cb220e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 958e7fcb454e6a912f75d20c507541e3ac2a07a10bddb02ae41b29bdd76fdc80
MD5 5915982520ace62c9b92a4b287c627b1
BLAKE2b-256 b7f47e7a2dc2277d2ef608e8d4819dcc22519ccd42632799dbcf392d87e98fe0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 333.8 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.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6c83294ab618bbdee912037fcfd41a7fd61e12ad83ca0cfc4f9908e0636b3c2
MD5 ab94d13d816be56aec4e9edc4b7e49a2
BLAKE2b-256 7527946a9a26e5b92f6469fa22c7a694c7dce4ba74e3f33d36098804aca901dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 605.6 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.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f7c78ada4448b78e0c220cfce499329f157bc673046280dbb2b6a4902b05d875
MD5 8f1b7989feb813c96d1cd10d35dee4df
BLAKE2b-256 1c6f4ccc8cc492c307c8a501425da8f1376fb1421393a9dd9d5e567236ea0712

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 221.9 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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ebcaf6c0727316b485e2edebaae211eb1ca1e3d344ba53b88f8f276ae0e9053b
MD5 ae388fb791c6c5599ebb7b3901c0a73d
BLAKE2b-256 e631acde7a45681fbd68844ee7cd9dea10873b57957092567411686c91d93c87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 188.0 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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6fab58064be36199b5e5cb8242a5ad8b6f1a29867f23a740a03daa6704c26aa8
MD5 006ebee1e8d2e55e5046c1aa4f2f9847
BLAKE2b-256 3e1ca608931a00c7a984ed2455d22a0876a28cd2040c7183966a8e7bde26b174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d800e54f326040f7bee41b2f747e7003823dcd45a0110335f987a816086fd43
MD5 b707cc961ab8f9b1f7699903f167038a
BLAKE2b-256 017d481ae99b385f2ff93b4713061c7b85b7b836354935920566ed363e258f19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-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.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09af53344e0988e68c499ad40863d58242c9a24337e1b073089088cc0d373540
MD5 4cdacd97be269499d0c02c32fc662cbe
BLAKE2b-256 3f4ae0d1fe21efac21d1c475acde9f0a44dfe5ac1c2c2fec11382fd86150aeb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c465f4821e0f05265693a371d5faf7e49689b08d9930cfb2e3481438c83fe5c
MD5 0bbfb599d8ac24ecfc6749437117d0ea
BLAKE2b-256 8f77a70fad0408e533faba34e46301a181616d003826c7a313c53a4f31e92873

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp38-cp38-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 594.1 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.1-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 4ccaff0c99632394793aa9d5c0199bf6f9706130955c2bd3f1caf961bacd2fba
MD5 5b95a3a6827dfa40350d06527a6fb187
BLAKE2b-256 bcd5a568c42b48a3184bcf8471ec395b7f5a678e43d6ae91ccf327a1c011636d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 329.1 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.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56fb94561a7b0d4a323bec17673f90b8c83566a9fe8b8923c6938d619f4a7f1e
MD5 45747534a4ae3afa27d33268b9233ee4
BLAKE2b-256 2ae18a0ea60b06b6089d1bb3fa4e596308d5244338956c8c6e9d3c5ba47e282d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 215.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.3.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a7c99284ffad54cd6d3e7c4f69425d935d36f9318ac559670918a918292af313
MD5 2a343fff3101b998f774622b2afb7a56
BLAKE2b-256 b1dce1abdcd7b9fe12abe2599301381d03e4cb7f4f2bb2d812cfafd80571b41a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 181.5 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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8d2e8596cad71dc56f25505a101d2235c8567bbf53501d5f54414c076c4078a6
MD5 203bf33f987205e8170b88769af0c9a0
BLAKE2b-256 65edad656c934baf0ad801950e2ac132b5fd4b67ad366695dab666856c0dd12c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca96d95c1ee389de6448b3ec43fb8442ee722b5ff6c6a30ef777f0fd44eeb3ae
MD5 2c4b0d53a8769de0d6131b365e793057
BLAKE2b-256 79225b620d659f51802e523f8d550b8a07b50d96bb818c3d99d66ddf5a31fe83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-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.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a8c0e983964ed4f71bce7c318eb8c6b3be9b8911f8ed5fb028b5fac1d9c10a4
MD5 b38fd660e9691ee9528d2d919981ff0d
BLAKE2b-256 0fe9287ff5c635fdd4564dfdb51e862651d86e160fe98f55945e544628fd0683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edt-2.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d623dc7ee881d974c2887b324caa78df0cdc420cddacfa2db52c34f4f23ded8
MD5 1c82dd23ff4d4bacdf2f92916c13e890
BLAKE2b-256 de7c3fc0c004e7369d83f0ad71fb98d1c4a5daffdae100e857d5478cd31b2ea6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: edt-2.3.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 327.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.3.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d449a28a785fb868176d0cf232ba6f34bfb5a8e09dbaeaec51034b7c8c9d064
MD5 51b95630e49e1afec6bd7f60fa553ef9
BLAKE2b-256 768b2d72142640272b7fb2da0d3aa73f52a953f9d6d87a4920a3009293b5d2e8

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