Skip to main content

Ellipsoids drawing and analysis in 3D volumetric images.

Project description

PyEllispeed

PyEllispeed is the package for drawing and analysis of ellipsoids in 3D volumetric images (3D arrays). Forked from PyEllipsoid.

How to use

To draw an ellipsoid:

import numpy as np
from pyellispeed import drawing

# Define an image shape, axis order is: Z, Y, X
image_shape = (128, 128, 128)

# Define an ellipsoid, axis order is: X, Y, Z
ell_center = (64, 64, 64)
ell_radii = (5, 50, 30)
ell_angles = np.deg2rad([80, 30, 20]) # Order of rotations is X, Y, Z

# Draw a 3D binary image containing the ellipsoid
image = drawing.make_ellipsoid_image(image_shape, ell_center, ell_radii, ell_angles)

To compute inertia ellipsoid for given ellipsoid image:

import numpy as np
from pyellispeed import drawing, analysis

# Draw a 3D binary image containing an ellipsoid
image_shape = (128, 128, 128)
ell_center = (64, 64, 64)
ell_radii = (5, 50, 30)
ell_angles = np.deg2rad([80, 30, 20])
image = drawing.make_ellipsoid_image(image_shape, ell_center, ell_radii, ell_angles)

# Compute inertia ellipsoid
points = analysis.sample_random_points(image)
inertia_ellipsoid = analysis.compute_inertia_ellipsoid(points)

To rotate axes and find relative rotation between the original and rotated axes:

import numpy as np
from pyellispeed import geometry

original_axes = np.array([[1, 0, 0], [0, 1, 0], [0, 0, 1]])
rot_angles = np.deg2rad([0, 0, 45]) # Rotate around Z-axis by 45 deg

# Build rotation matrix and rotate the axes
rotm = geometry.build_rotation_matrix(*rot_angles)
rotated_axes = np.dot(rotm, np.transpose(original_axes)).T

# Find relative rotation
rel_rotm = geometry.find_relative_axes_rotation(original_axes, rotated_axes)

# Validate relative rotation matrix
rel_rotated_axes = np.dot(rel_rotm, np.transpose(original_axes)).T
assert(np.all(rotated_axes == rel_rotated_axes))

# Compute rotation angles
# Please note, that these angles might differ from rot_angles!
rel_rot_angles = geometry.rotation_matrix_to_angles(rel_rotm)
print(np.rad2deg(rel_rot_angles))

How to work on the project

# Create a venv
virtualenv .venv

source .venv/bin/activate

# Install maturin
pip install maturin
# To compile on your computer to do some work
maturin develop

# If you want to test
pip install pytest
pytest tests


# If you want to benchmark
pip install pytest-benchmark
pytest --benchmark-only test_benchmark
# It is recommended to compile in release mode with 
maturin develop --release

Next steps

  • Add stub file for type annotation and documentation
  • Use GPU with python libraries (cupy...)

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

pyellispeed-0.1.0.tar.gz (23.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyellispeed-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (537.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyellispeed-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (561.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyellispeed-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (618.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyellispeed-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (529.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (367.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (401.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (405.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (385.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyellispeed-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (538.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyellispeed-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (561.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyellispeed-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (618.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyellispeed-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (529.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyellispeed-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (401.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyellispeed-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (405.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyellispeed-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyellispeed-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyellispeed-0.1.0-cp312-cp312-win_amd64.whl (208.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pyellispeed-0.1.0-cp312-cp312-win32.whl (193.8 kB view details)

Uploaded CPython 3.12Windows x86

pyellispeed-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (535.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyellispeed-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (559.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyellispeed-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (616.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyellispeed-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (528.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (404.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (383.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (349.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyellispeed-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (305.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyellispeed-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (325.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyellispeed-0.1.0-cp311-cp311-win_amd64.whl (208.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pyellispeed-0.1.0-cp311-cp311-win32.whl (194.1 kB view details)

Uploaded CPython 3.11Windows x86

pyellispeed-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (536.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyellispeed-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (561.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyellispeed-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (616.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyellispeed-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (528.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (366.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (400.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (405.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (384.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (351.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyellispeed-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (308.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyellispeed-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (328.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyellispeed-0.1.0-cp310-cp310-win_amd64.whl (208.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pyellispeed-0.1.0-cp310-cp310-win32.whl (193.9 kB view details)

Uploaded CPython 3.10Windows x86

pyellispeed-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (536.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyellispeed-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (560.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyellispeed-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (616.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyellispeed-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (528.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (366.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (400.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (405.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (384.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (351.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyellispeed-0.1.0-cp39-cp39-win_amd64.whl (209.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pyellispeed-0.1.0-cp39-cp39-win32.whl (194.3 kB view details)

Uploaded CPython 3.9Windows x86

pyellispeed-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (537.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyellispeed-0.1.0-cp39-cp39-musllinux_1_2_i686.whl (561.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyellispeed-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (617.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyellispeed-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (529.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (367.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (405.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (384.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyellispeed-0.1.0-cp38-cp38-win_amd64.whl (209.7 kB view details)

Uploaded CPython 3.8Windows x86-64

pyellispeed-0.1.0-cp38-cp38-win32.whl (194.4 kB view details)

Uploaded CPython 3.8Windows x86

pyellispeed-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (537.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyellispeed-0.1.0-cp38-cp38-musllinux_1_2_i686.whl (561.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyellispeed-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl (616.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyellispeed-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (529.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (367.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (401.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (405.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (384.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file pyellispeed-0.1.0.tar.gz.

File metadata

  • Download URL: pyellispeed-0.1.0.tar.gz
  • Upload date:
  • Size: 23.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for pyellispeed-0.1.0.tar.gz
Algorithm Hash digest
SHA256 21df864ba6ef418b02dc936ef47a29e5464ec3f9027141d570d4634809fc6eb3
MD5 22f17e215283ee2f98cb5f56a6c2cc3b
BLAKE2b-256 bd612104dbb50ee49a8de8fd0339941cfd9325526d7fefbaf84c645776bbfd54

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8970da5f00ea2c6fa8a3b0ae94ad5d636170129e285750f8054d3d3abddea64
MD5 609ea3a15ff3d0e2933bb67cf83afae9
BLAKE2b-256 fab4b3f7a53a6685fb97efe690abe5cbc67bc915ff01ef8d7ee71ffb72ab810d

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f3ab342c89bbcd89a45e2aaf4d333332f049f3a0c4c79ecc2380bc850aa4d7a
MD5 b747857b671f25d0af7faa0dd93372a4
BLAKE2b-256 4f3f615a6026441e4f73e15f531b88e1b73e4b70cf1b100b0cc834b629568870

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e684bc80185f818bec10ed638fc595685ccee8ad5e3f86bbd3fc13565cc58b36
MD5 5a7279f2a36fce837d64183dd34c41b4
BLAKE2b-256 80ef3333d9d66271d56d885409c7bcbcc0aab5b4222718545847898dfc4a24d4

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec13fbbc288ba3ecf09a55fcfec6d169335005510c93131230676db06e7b480a
MD5 477e46649aaa2d6f8973dd2345eacad0
BLAKE2b-256 475ef2b349587a54b6fd996875a575ab537f85cd401b15812368b69b6f350a57

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63d657a840714881878099401747553ce2b891a008c3d2f7d7d8fd84a3d68cfa
MD5 ab4e076b7d2ea4071fc9215e0ef46147
BLAKE2b-256 610981a1efbb94d59e144fc0475968705f4ba5cfc2180a008c85e64922cdf6a5

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df886e3e4b8484d634bde0c73223ac00615db841809841c37fd194d6acecaa76
MD5 5ae7be2ad623e97d58c32b98cc299839
BLAKE2b-256 746002bb25de286e7c70e474ef00f31aff012f50123117f59c7541fbd15007a1

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48b8181b42bce3cb179b971d9d33e266c8de94d5e3699d80a13da67e3b7e455f
MD5 bb0f4c90cef4e74fd942bc5c9856e3a3
BLAKE2b-256 52e769f7d0f777fe8244e1e5b357a062b7cdd410839fbfedc208bcdd99b4c29c

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eef8812383a3d70b2032b01944c210292084e5d29be96d270eda3aa722b60202
MD5 b15a7b7c41cf75cdbb9819126a013b52
BLAKE2b-256 374a2758b33b022ab99e6aef1a2a437b7a9ef285c3a6af3a52b193dd135837d3

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a5a40bd7b03d9455a15cf36b0eb6aa0efbf37ce0db712239db51b03345fdd5b
MD5 1b13bd4c9057a6ac9c0f3f1b252a7627
BLAKE2b-256 62b077a150775e1e415985c33c4ddec3af36562d0e7793767e94e686975771bc

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b76616ecd9bf045b6ce65611bef6a25aaf311399497390f03f274e6333b3a21
MD5 dfcac0feadb26335d1ea3eea30ead1b0
BLAKE2b-256 81316c4f1175e8e1edf3b42ebd1d0669d6333dcbf01306482f7d9d669b049ed5

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07c2bb0ad0b293cdd3ea70a0945cd087722a082d7f982a1de51681bd632bc402
MD5 c940ed5b4b44c0dfad9e388a19a9738f
BLAKE2b-256 23a5fa902db441698110e15121ce37638808931ba42e3dabf04f15c34d1e680f

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0643c64b445f002e7355605b9db1a959d4053b11159f12da94c03f7fb2be8bd2
MD5 67a4decb2d63a1e7eecbe5ef486edfee
BLAKE2b-256 1a90306b5811eee866c9c09a4d448d0571c5db3ddf9b3d6cfc8a2f264d2c8268

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22460897e9f136c2db6829dac9b02ff6c2aec1a538ae96aa7354b43827f7a02e
MD5 422f8a1c7af801c8aefa0ca5a7b56f81
BLAKE2b-256 7537a570c8dbfb424216f9ddf0bcf263c2b162c5e8e396725ad477f0a2c04da3

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85d177e254d4b200995e296fda66333aa2ff750c9c8145ce8896344265206474
MD5 130d40b5a41abd1048715ff7321b2f8e
BLAKE2b-256 5d842c682c1fc53bc91f003110f6b73132a5d9433290c57698e789520d560057

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8ebcda0c2ec5bb4bb33f077a18a11bc614476b45fc6a58ee01f0e2e580f6f97
MD5 3f9dd94b62a5ca015b0bc425b0dd423f
BLAKE2b-256 64857fbcc2dc8c3b93ba6495fbb98242cb4b24aa98230ab3738bc57da3e08b8d

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce4ee1e298acab0482dc5e7a60bedbdd372c8abed52fa7e815f85610d483044c
MD5 dd10becd79378ea8020316b2a1866e14
BLAKE2b-256 178636e0eba1af48ea8fe33f66f809820b13e474e56fbcd566d098cc3e008c63

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9ca515c0ba9eccd6501ab6f3f06b4abc28f522ea67193bce89b82468022f019
MD5 de3d5dd9414e40e682492e1f9b6e82b7
BLAKE2b-256 6c50b2e9ddc5350051ca68eff91b802a42fd79474be718005f9fff0883ee7574

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c79989337a50b4ca88c60401ee5f2c07073eb7393d39a6ced57c89b43b7e778
MD5 c0dded88a2e1b86cf833a04208a88f37
BLAKE2b-256 b35909ff6c6cffb5933fd2c106e50246d36c84e9ed5c79caeeb72739f5bf77f8

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d5027e2e48e41c8b1c5682d19d22673ca37f1487128e4c1172510b5488d54290
MD5 b3cc262c64cbded7d68a0c8368c9fe5a
BLAKE2b-256 9453728bdb6c2c3fda38d6bacbb6dd99571338df966cbb7dd955eeb3ade0af2c

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 437b99c2307a30a74eead02dd3882407777ced585512a133bfc2c5e808490404
MD5 77725f878191d332b4f3c7d3226cfbb9
BLAKE2b-256 b7e567541d2ceab64268d86e8f859f74369d631558c28b75d606b818d64218e7

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a42532f8e652b2da74eeaa8b8139e67d0c8179fbb2e9019a7c559301e9aa795b
MD5 5f8ae87429d64067c96963a34832587a
BLAKE2b-256 bcdafe520e7e0696d6626cd8de209c0c723b7039738c239d628198ed827c8141

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51cae7c2bf230a70203671f787667b30b3d2859eeb80cbad6be4434cc26f5f90
MD5 a3199049faafeb45730b38183e9d1218
BLAKE2b-256 3f9257bef7a93a390e7f7bd83fda57dd91bde05e15b4409c8894dbbcb84ef00a

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 63470766555bd14075ff10d5cfaf41fa33fd5ef708b1f9e93f66a42d02da5c0a
MD5 1f1f82916646d712f302277e6c6860f0
BLAKE2b-256 25e49d2515d6138501972fc93813bd23b499da3884cc784a892e69a9da91bad1

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d426610df910f4846aa61638282d3db9401a91150f2831e10f5155b68b84157
MD5 e64b5da9884632ca35dffe9aef0280ac
BLAKE2b-256 42daec1e4838aab2ace4ff86fc9ffb134cf2b4f4a34918a0c0a635ba558062d1

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cd549e37641376175655c41e044a90e5b75048a49d183cf797b3ee4b485e09b
MD5 449b4ee0e647157ecca73fb6eef3c623
BLAKE2b-256 b292527af7c987a2d249d6a812e556c08a0cc1b18d0bae1d86f44fc272b4c258

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 396d1df8c2a3d41d542ceaa12fdf471bfcf0cf7af145ac3542468ef22c70db8a
MD5 78323e91cad0e5994e999990736390cd
BLAKE2b-256 8dbeb12fe7d393aa9e65acc3f2782707db141e7a6ce658c95622b8c821e30772

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f4a77ddf725254159507a9ef2320992995d6803a486b837f6798bea17a71a614
MD5 32cfd321ddcced7b895f8d3f053abc51
BLAKE2b-256 3a5cfef8136ce21d0aa1c34b918acb5d5094d99f9250b3b9b328a51c7b5e621c

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e91a54c6a8587e30f0a30e705a029e67ea4cc7495fde9db4e4477c4afd85849
MD5 6c7e2d519d200fa9d36f862604d79d22
BLAKE2b-256 f22ab5b53603b690150d42f15c49b073f9d2c51ef30c9fa25830c7447fa61497

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47c6930cf0983d590ff71431736f5266716bacf0bba791d1855a65c2c1e51f2a
MD5 b00d151229352675e49755f3482a6cc0
BLAKE2b-256 51a3a3977ff4f4c0e5737f3af9dbd29d9b28117e58c9c8ddd869c354c69eba3b

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2abaabd53716090e959e9bb2dda20dab84361d4bc214d35705bd440d418f191
MD5 44b51b6e419df2dafcd9ce9fcc0e9f6c
BLAKE2b-256 5421588d7ac69d5e77c62e9f2b39072455e28193e557fa3310c311cb43fbd9cf

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c65ab701216213ad5780283148c71e467369e51533fdb3b18c2130cfbc9076a6
MD5 78f8991eb2c22fea9816ffbcb062b280
BLAKE2b-256 d176fa59961b5dc6f3de48d8800d13990d064c0aa448b0d70bb5a00f742808af

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf5f71de8951e977e8af1aec351abfcb9c71d1aabd67065ebf97f122e600c0b9
MD5 4811f0e53c43d41b05cd9c16ee348d03
BLAKE2b-256 f840930b44cc8f5ee564eaecb64ffcfde0496db3eb5354a2bf302cb3098a18e4

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 501efc6cc096077723162050fadeb3fbd2dad43c3cb635fd443a3a6d2c731a6e
MD5 d04208e265ef518751d1fd9dd096f3bd
BLAKE2b-256 f5212204e9a4b94577dd33ad39fca562715e195aa68bb8fdbd1bc9c7ba023dac

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fbb61ee8d9a5eebf3fc6a6590111a4ffb919201e14a694f698ca6259c720b1cc
MD5 58f9fc5559addf203293f8b4f228a1f8
BLAKE2b-256 8db16335d23c930805ac97c5937ff5c9a7c752dcb89e7c0022f706ff1b3b1f93

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42c787ef1e744860bf4cd15eee8d743511e6a3c9490945b210aaee8caf2a700b
MD5 4415177352c8ff0d4075d639ac19604e
BLAKE2b-256 a43d01745d7a93acc2de46d675fa1e9123e91ec73d3aefd2fd9451f99afe86dd

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5146e6e513902681da2e4a81252128598786ccc6e98ded6c999d78a0caa585cc
MD5 e3a0487bcb84b4e296eeb1a69dfb1f52
BLAKE2b-256 3547c5a49d7bbfc44a92348102c70546b9ca572128628162255ba7473df56c34

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39ae340bf93e4f42189413aba5ca25464861c825a8907c514520a8da0f89efdc
MD5 8c5f75825d5ab82d840424d933351fee
BLAKE2b-256 fe9c6f904b7d86eb241b970cc9da5cbfbf44f50708d1955ca406d442242b2a4a

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca7694562b54b39c34a7261033c7a23416cc7dc293a264f9097b2a68274bef0f
MD5 61f4f59dff39b89db078dbf6fcd31373
BLAKE2b-256 06038188b0d794e7063f4591ad139a58b1908623b8ed125be38d55fef8966bb7

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5831dc3989af7f85ebec1f7b56a9bf036e6377b710fbc1940bed82df32acccb7
MD5 7722d2bdc2af418145669da60d72cadf
BLAKE2b-256 df526d7292ad3eb534669532aff3977599853cc493e55678048225452ad286dc

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad948e25a97c812144dc557c469561a4d4a35fd7674b733abf7fd81c80956691
MD5 26f194b7624dcf4ae58db12ab3bd3b15
BLAKE2b-256 feefd0d47b6f05041bd7a160d1bd583c83e0ba1428abe63e960fae1476ee6795

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a65b2bec1210c3e0364ca95db73f77c86e78b6b351e3b1ffee3d8272fe417ef
MD5 8bac71717c431d6c797be7086141c6e7
BLAKE2b-256 fd67039fdc0299153bc5a4ddf5c32a65be638462075fe8741ab3b4d8c7e66612

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 40884f04e8f3e6fea034cad224298e8eb3f357473441fb44e3898e988e01bea1
MD5 64a1e275159673bcd37c613d481dea5c
BLAKE2b-256 6570f344517e1bbf86a6cfe58d4f3792b6688c94b8f7edeac77394e53a5f9caf

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee7a50f0d51a88488aa4addb20e577e7874a88a175d10b5c431bc2ae6964edf5
MD5 ba985ec43a5440cb493d4b2920cc1d3e
BLAKE2b-256 6c74147811359b2598802d6315f1a543b52794189ce6ca314a5c44665313ca82

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed6fe84b215331670f2a559ee020b491fd444f3cde695773daf1bbe9c4f86183
MD5 2f691794709ed4badb896a29c5e684d8
BLAKE2b-256 f43ab91e4eefcfffe5a3a10ea4006bb1b3c799af4db9cb8216493c6d41301330

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab08a922dc40df7b22c199bc5462821bd91d9a353c534bc82cfb645546565509
MD5 01e332d193fa2fc1745086149beed3b5
BLAKE2b-256 030038958d14a919df9385ca132d8b0bdb279996904ec8380e102dc8f6ab3c7f

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8374e6b3be3e77a4fc7ef322329211176354e86f7d72b4931ce326cfc104eaed
MD5 37080651c4842fb638fa29d0ca41d89c
BLAKE2b-256 6d194ed20a6fd133df5371f2885fabce849ab62e33a0e6d2d1c988b615cf3ecf

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a44d18fa3b25572acbd916757c449d70ed4ba0e9c1da2c95e98e63560e6e481e
MD5 a0a2082f2674a1ed79bf5a3232c7e887
BLAKE2b-256 28957cac6ab03cd0c36ad195922bf4b08fbd165c4158731bae31eac0246d39eb

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0b8f56a276bdfa8318b911b07c6d20f633f2f1f5f535c50d2460d1087d23d150
MD5 fce6efc7d152aaf3cdb001450a84a1e8
BLAKE2b-256 ff21f5976614653e2e29e3d97e140aa70821105a7aef1a758cce76f009462592

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0345b28de2b36ece043df1817953a9556908c2cf05e1e3118d661b8f84ea6175
MD5 d0e938e71a1a9b723232e3566b2930f8
BLAKE2b-256 41539f622eea0c545ca4ea448e3f14bce520e451007226d2923c0ae7544bb25d

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf88d41cef7923cfb004f6b4f7da19efbc9594fd9b1358fc1d2bbea4154df6ce
MD5 aef9dd22a40418628cdf0250cf55b1a7
BLAKE2b-256 04963482bda188fded0040e31ae4af429b8a2e4f3219c992664817a5c590c88a

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c2ff50e1d05f2ba0c3fc4653cb98aa764e7ee847ebb0e1ed6467dc24a5d1141
MD5 82f9343fce4d81c8fa988000d8fa8424
BLAKE2b-256 f3a06deaad35c3e0aedf5e112ba19e7ad3e460b8911ea54449af90980d18aa96

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78ea8577d6ece3af37698c5b97f902516fd0d72ed6ce5364aff011027241e5c8
MD5 2b1866f705691c37710cff9f8ec58696
BLAKE2b-256 37bf98f11a17fd0a489595ebf6c43396e6a9839e674c1971c20adea96bfb6921

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3cc176b888d1e7d8031fbf088e04c862ac278f6be4b3739d49c9043c5916426
MD5 2525886d9536c0dc1c2a9ae828da17f6
BLAKE2b-256 0c162a573b471b829e6cbf878e4fb30877708d1dba175b6f9dd7f7fe15fae712

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd337f14a7e3f334346ea71c7835fbdfd82dab5e2f5ac4ba599dbf17a200542e
MD5 0f325685c6ab025f979cd57c668b2875
BLAKE2b-256 2da3ea92aeb116e9e979a4c578a3cd00ab7bc24c529f15affb778dde0b458742

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a18e13221962c5577a3c448a4ddede7e86f32a6fdd4cde5c4a9ee24049a20182
MD5 33e3deff996d7f8a9586461151acee7c
BLAKE2b-256 eb5f787cc7fe5363f4055072a6fd4c1f3e0a9817377513453e03efd60794732d

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b6ef3765b0a32f19516671e4e89578b73fa5aaaa9f90c022ab7475878939982
MD5 a3217df4c37b19afb4c118aa62f72ec5
BLAKE2b-256 5936a668ed53e55a70f410be366129b5608db09b78d566810b65dcdca7abc66d

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a3ee767c589279448ca909dfc292496c9821bd76a55ff022f5663304efba2f3d
MD5 a6722b33cb764cfabc9591dad3468145
BLAKE2b-256 567cc918bab87b2191acb713d6f42e25aad85a0b318d1112ea602d64fd4b2348

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec3c47f4531b3afe90cdcec9e10a49d584af8f9e862b5d79d9e9eb82bc550986
MD5 bea65044eedcc97a3b28f69b3d592de1
BLAKE2b-256 b6b1351626a6823a19b6f55f5e658b151a72f06c720e147a6c7bba717354adbf

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7e9897984eb89acb15258d2df85aeb6f36cb12af732ccd494e0a742be597cab5
MD5 c1531e5f7f15856c7f077da89d71bfa8
BLAKE2b-256 3c8e3c92372dbb5a183b8399ee13e12a98fb760d20cb00de3e946920059859fa

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyellispeed-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 194.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for pyellispeed-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e041ad8775bfecf1d7d198bc24bdac87606043637d2f8d1f4798bc258442754b
MD5 7a278483e41077383053f1026b5e2099
BLAKE2b-256 3e78febc98d48f015de572fa72ffd15a1647170f18abbd182017f05b7bf71701

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7567fc8673564efb2c8419f0bd4e7880685f348f172c41243e9e6bc1a92448a3
MD5 9628f762e6dad9386effe4e0ab98ecd3
BLAKE2b-256 a93f70b4477dee40bee36d08a20ddf67e923a143ffe363e20b0be2df7435e94a

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a37a8473a1489625576194f9a70f8c9076a9678a733e5ec7981476e122bde48a
MD5 3c3bb2e5546ae4eed71652caebfca6b1
BLAKE2b-256 6a871952f47312c78dd651116c4a3e8a5b5551537b40deaf3514457d395167da

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 52b02dd261ee81685ce305cd343de35f45bcb6343b47a2f8ad60c675a10229e5
MD5 d1ee9d9a5fc4070515efa5ae46bbdcc0
BLAKE2b-256 4fc4f6ac3a0a2d919406cdb805ad485321bf18b51693ea35e90082e3eea5d8f3

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1a14433c9f49f66bd1ef5a7171c931fc7bde585e93164d8afa28c2d15a7cba1
MD5 dadf00c2fe83cc84614ee71abb39242a
BLAKE2b-256 565b678cd2fb3dd6ae102e7740a80a8ac8d8b9693ce3afc299ca0f124fb8f44a

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f68c8f72033cc1d004e7d9ce6c17d9eb5821f8e2b62ddce9eebe0ecc20e391ad
MD5 727ac1225d7e362f312c40749520584c
BLAKE2b-256 e10c4daef869c7b41e38058897a2623d124be5bc853afa6e03a06cb428247016

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 54dc7d1e2536caa2c31f9740445052c3e24a10c2707375ffc65132b4f1188ac3
MD5 bca2973067a8dd63fd7371911ce0d04a
BLAKE2b-256 515c5892c855e8459a96319b7def9415191ff4062eb60ed42e44d6ef31329b64

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a21d8d472a03048a860b60f5823caf317a0d0ec70dd478e13a9a5c8ece8ef9a7
MD5 b0a893bf812eb011f379a1c0e7dcb473
BLAKE2b-256 02c71245c37efce8e89c6518fae3e7ce13138266915577b91aa7d044f49f0b5d

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 231989ebc324839666786b9be229930c8565264d20953968d973c1ad76af1f53
MD5 137f45633347e2cb8fda7585d54bd2bc
BLAKE2b-256 19769fa9906d90bf5bb1beefdb29d206f268f33a15065d6f6ebff716d663d6a8

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7073599942b96fe0554aa2cb794c4271d156ade810bbb30aab813332ff82b8d6
MD5 6df5782072cdc0f713fc626daff274fb
BLAKE2b-256 abf8ecec592660af17ee237698eb3487170911b635b40daf4ab8056813d02014

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ce21522aaddacdf01e20a226b71a90559d2b9347fbe8e90f6fbf5b70d00d964
MD5 209d9976b630a22cfc943c39fd8c2216
BLAKE2b-256 7d399ea8ab7f88f223a61b4272382ce32316a3191fd1fb47d947d70dd9a13048

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 89295618a1808986a53d8b7114b6df392d57db81d0015933c71eadb49f00fc78
MD5 d9fb593669a910386cf82f1766b956db
BLAKE2b-256 46bbcb2a4771b9d734fdab7744da55afc20af5121424024818a8be466cc5e096

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyellispeed-0.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 194.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for pyellispeed-0.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 42d9db3269d417a06bd2dd77daa56e5013065eb65285e8e43e4abc2a078ce32a
MD5 7f4ec32dac82a6bb3f083038c029ab7b
BLAKE2b-256 d4f620a1d3307da29b8ead7d115f5969a913a4a8cc4b1039733b7230a8ecdc28

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7044601b702ace37ae02fd2a2db040376ddad27ed111a97f17f60d8ffb25b8d
MD5 e636e279eef2eea83a72570d38eb3141
BLAKE2b-256 6b97cd2b5fe98793ffa05409b59dcee59d00e4cd5e55b23dc93cc5d076e20949

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a91af010d9d56691fd486b8eb9f86275b615e6040ca7850ff45bef6f5c1ee4ea
MD5 9bffff1d0577be57d3bf3b93f55d557c
BLAKE2b-256 daa5f3ad63a9820834b4435372672ed3ae8f919cccd2177e6ebc31aec790372a

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d6b7e32b94c0a237ca913b48a7f18789075d27512a8da4f0e90375ab476d30f
MD5 f5f01e2c1e5f1173f846409958ebb848
BLAKE2b-256 91cd2028a74d1d3468d036e24eb9e985e92e8c717ef5eb17c2eca0efd70cece6

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 177e9ce210394fdb969b3a4ec1ee1196bb2aabfc12db184198f22d613b8cde4a
MD5 652246de360a6c0f6fe019ac0ff72867
BLAKE2b-256 da80984a0319d8018afc41a0b526568e55763fffd418b16414ad35c4a6bcc011

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3b38ccc169bc78eb1ee6781ac3fe7dc7bea42295d415be17546a7cbc9899173
MD5 3163d62155d40ba096875ee1aac559c5
BLAKE2b-256 a6a32b9474d3cb1eec6f35470641ef52a5a32c242dd13dcf30de2eccd0513f98

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b138c17668a6dcd4de5ba52af2a4aa3efd97daf55eafb468e0e2cfd6ecb36587
MD5 dc9b3a57a89bcb68829c0c2ff2091ac7
BLAKE2b-256 b362d51a4b140211513d66c0511b70cb1e770cb0ae7106141d790a920f33c35f

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5efa8eebcad68dcbfdca20b730fcf6b1450c0f8739111fb62c86bf498d4a8217
MD5 a6744e5d25f4b9160ac34a21de71ed19
BLAKE2b-256 736b7956b23dac253c02c027c08a0f4cf040dc8a6a5c1000316a58c1c9ad9552

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a58abeda32974125e022261c72a978ed6b75cabbd1d19e9c6a91a7050b2aa48
MD5 4605f9458d36d13e290d7e70cba9b20f
BLAKE2b-256 b5893e92c0b8246fb272520d18d2650c6197cff300fef758f0954d8aa6e6ab04

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 290dcc07b81d380b798ec663a2923ec854fb36f54fb6990b3a18586b512b7df4
MD5 ef6c64379cebc4aff53a6feccc7b5d11
BLAKE2b-256 1bfac97a79e78a2cea89c2d47aaf6656d8da4a3b067097d3e993fef760f149a0

See more details on using hashes here.

File details

Details for the file pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyellispeed-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4dd0c3bb927325e1d455513e64dcd4d05cfc63b1c47bc7ce658ab7a8a5beb6b
MD5 f81e4cd623c41341573812b379eb0f8a
BLAKE2b-256 ce292a81aab3ef96b8a2f342c0c922ea60bd36bca9f5b803746b96dd9b1ef393

See more details on using hashes here.

Supported by

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