Skip to main content

No project description provided

Project description

spdist: Simple metrics for comparing the distance between two curves.

spdist is a simple metrics for comparing the distance between two given curves. The curves can be passed in as a numpy array with discrete values. It will interpolate between the values and calculate the minimum distance between each points in the curve and reference curve.

pip install spdist

How to use.

Currently spdist has only one function spdist.

import spdist
import numpy as np

x = np.linspace(0, 10, 100)
y = 2*x

x_ref = x
y_ref = 2*x + 1

distance = spdist.spdist(x,y,x_ref,y_ref)

print(f"{distance}")

Example plot

Following example plot a straight line $y = 2x$ and a line with a constant offset. The distance between the two lines is calculated using the spdist function. The normal vector is calculated as $(2/\sqrt{5}, -1/\sqrt{5})$. Normal vector scaled by the distance is plot green line.

test

Algorithm

The algorithm of the caculation is somewhat brute force and the time complexity is $O(n^2)$. The algorithm is as follows:

distance = 0

for i in zip(x,y):

  tmp_distance = 0
  for j in zip(x_ref, y_ref):
    if (x_ref == x_ref_next) and (y_ref == y_ref_next):
        # point to point distance
        tmp_distance = min(tmp_distance, ((x - x_ref)**2 + (y - y_ref)**2)**0.5)
        continue
    # point to line distance
    # https://en.wikipedia.org/wiki/Distance_from_a_point_to_a_line#Line_defined_by_two_points
    tmp_distance = min(tmp_distance, ((x_ref_next - x_ref) * (y_ref - y) - (x_ref - x) * (y_ref_next - y_ref)) / ((x_ref_next - x_ref)**2 + (y_ref_next - y_ref)**2)**0.5)

  distance += tmp_distance

distance /= len(x)

Although the algorithm itself is not optimized, the whole library is written in Rust Rust with parallel processing. (Thanks to Rust's borrow checker and rayon rayon, which is both great work.) Therefore, the calculation is fast enough.

Where to use

This library was originally developed to calculate the distance between the measured spectra and the reference spectra of XAS. The metrics is useful to quantify and capture the features of the spectra.

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

spdist-0.1.3.tar.gz (96.0 kB view details)

Uploaded Source

Built Distributions

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

spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

spdist-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

spdist-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

spdist-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

spdist-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

spdist-0.1.3-cp312-none-win_amd64.whl (195.1 kB view details)

Uploaded CPython 3.12Windows x86-64

spdist-0.1.3-cp312-none-win32.whl (185.1 kB view details)

Uploaded CPython 3.12Windows x86

spdist-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

spdist-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

spdist-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

spdist-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

spdist-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

spdist-0.1.3-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

spdist-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (344.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

spdist-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (321.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

spdist-0.1.3-cp311-none-win_amd64.whl (196.9 kB view details)

Uploaded CPython 3.11Windows x86-64

spdist-0.1.3-cp311-none-win32.whl (186.9 kB view details)

Uploaded CPython 3.11Windows x86

spdist-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

spdist-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

spdist-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

spdist-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

spdist-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

spdist-0.1.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

spdist-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (345.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

spdist-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (325.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

spdist-0.1.3-cp310-none-win_amd64.whl (196.8 kB view details)

Uploaded CPython 3.10Windows x86-64

spdist-0.1.3-cp310-none-win32.whl (187.1 kB view details)

Uploaded CPython 3.10Windows x86

spdist-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spdist-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

spdist-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

spdist-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

spdist-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spdist-0.1.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

spdist-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (344.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spdist-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl (325.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

spdist-0.1.3-cp39-none-win_amd64.whl (197.0 kB view details)

Uploaded CPython 3.9Windows x86-64

spdist-0.1.3-cp39-none-win32.whl (187.4 kB view details)

Uploaded CPython 3.9Windows x86

spdist-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spdist-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

spdist-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

spdist-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

spdist-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spdist-0.1.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

spdist-0.1.3-cp38-none-win_amd64.whl (196.5 kB view details)

Uploaded CPython 3.8Windows x86-64

spdist-0.1.3-cp38-none-win32.whl (187.0 kB view details)

Uploaded CPython 3.8Windows x86

spdist-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spdist-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

spdist-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

spdist-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

spdist-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

spdist-0.1.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

Details for the file spdist-0.1.3.tar.gz.

File metadata

  • Download URL: spdist-0.1.3.tar.gz
  • Upload date:
  • Size: 96.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for spdist-0.1.3.tar.gz
Algorithm Hash digest
SHA256 7ab8ed02176be41dabad567b4cca1d0d23df20510d16a74404831c7fba0c4dfe
MD5 7d3196767582277813839dd0129bd84d
BLAKE2b-256 c8a2a8f6962e0cfa29c320651b3bb08547fc67b799738edfd514bce2adaa8a8e

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a63fc24ca539ee595b6cd707919f9eca3135b91450c65f7a151e4be536de252e
MD5 5c73aa53abff197181f405968d917a9e
BLAKE2b-256 1596b19ba24aa2d718ad2e1e49cdce42f9bc4e78433d5d4a18ccca6474197eb1

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f765124ab030c9fe048cc2ec448ab4b4483e043b691860f2e38a6f3affde8b72
MD5 aed0050017ff5383bb05073fc208892b
BLAKE2b-256 1c277a617a7ed47f7e727966d81904607178f4927a64f9541afae6fba90d6766

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fece3137fc9bae4602e03ec5fc5a7c435be03ae286a87160b2248fc80583cc3d
MD5 cc0792c31e81976d935391da787e0629
BLAKE2b-256 431d9d0601f2c68144b5da24825d74b3b8f0fd33bc9273b4d81e58a3d0e66360

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2cf4e5843e268c3ecbe26be4400b4e83aafe8dec25ca9b591e1acb5bf12e799c
MD5 5efcc4cb34057dd18a8972278a09d484
BLAKE2b-256 07fe766b839acb9faa0f753a396afc6dd706063170b5966ecca7d3cc04b36a38

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9d2d14f4e567431f1f8cc0e3f498a8ddf117f2f6639b6362d31295ecd042293
MD5 22dcb837eb96022f250d5fcb555ec2e4
BLAKE2b-256 8d59e3f6d39842667d338f3db7638d126d70d32f30d55f2494da7e96860f4e1e

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8894af802e352ff08a5ecd5ef64828ead8466b0f8cda90a1678c1a5fd8a58262
MD5 1bf308fa35ac1ff57519172aa80ac05e
BLAKE2b-256 31499cedcd282ac897535976efbd462b15ecb304667f98de7d02942b2a436b29

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fa086f1dc9b11ee187ad3c9556fb38985a92daed032a924b4e03e7e181f330e
MD5 7e3796bb9ef841d18955a874f3e3e831
BLAKE2b-256 cd1c37da748087aba35cca6bbbe5a86f4f6f6a55d22ba7226ec827419ef93f68

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6e0842b6434b5ca2cc46a22531ee1ccebbfae458e55124190156944f5f373f19
MD5 e102e975872ca33df74afe38893ecd69
BLAKE2b-256 ae4d6e1093fe5fe962679826908b961ee117fe7271a3428975b25e03f3cbc806

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a82b372e9a9f63262d8a65911a504b1022f1b8c9611f6a6a6c8519e0ee53f25
MD5 feb4164e5bcc0b35f1c4e05f27f41c03
BLAKE2b-256 f371c628065fba1b72466944da985d50c7cf6617a8fa6414c238a298b49ba367

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 36744e17d0ff9702456dcf5a0ea31d62fa6726612bb40181456dd5ac7b69ee3e
MD5 f108a0b3a5441c1bbc32137f4e4e0822
BLAKE2b-256 275a3f725660adc6462beffb896ffa93728e5aa21bcaf7da343429374da28b92

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5e56561ed1fe5f5609210eb62579e9d2cde34bf48ee8fc16b3043be4565694e
MD5 6c0fc83e5f5754326fe22dc368fb6cbe
BLAKE2b-256 82dd5b577225ed71c78ef79bd1534b1f9d6e7e5a1488177b3ca42c181d63f91e

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e8f35b0924ed56fea60f8c846b9a9a1677b03bc9b3ffd5543cc3721de85e9160
MD5 78de6800a385c08ebd381464242386ae
BLAKE2b-256 254cd98453c2d42b9b76c8e06e12cd62beeaab11b4ad6a659117b1ac95c7fa01

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87b9db3d6076602b0764678cf9545cb5200891700ed0d7a3306807b57677982d
MD5 7d08e9bf1b192bc6f5c234d5964083fe
BLAKE2b-256 0c1b50fc5479c5ad9f407ffc06fa1e9a7ff680f114ae78d8a77ca52ec6e36680

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 897a26946730fd4bd01f32a3d5444fb3af4f9ac54d564bef13808f6dbda708a1
MD5 d0b4ceef48e58fe55e236a065e06fffc
BLAKE2b-256 5b7826357889f83074bb646b74b92f451eacedcbd3b0a01d627181c574ec844d

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e8c8574b4dddfd96a08bb3ecf548e898336627e999b8d30efd515e4541c0d06
MD5 e94289ac204cedbb68393344cc2b9b4b
BLAKE2b-256 c958e05dcc6030c2bb62acd8f7b3645bc5d2b354edccf080db28796bd07a60a4

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 38a3212242f05834c20018aefd9fd9f11e94d247212214984f5e712c154b2200
MD5 72f3e78da21fedfe75b0fff8aa803b16
BLAKE2b-256 5baec6847ca209673bec4ba6c71ac51e9133a641a3f8b4e629e0adfc0fcc1e59

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5513b8ab10db339c26760e3e2ba629ca909c9b6ab485f9f532e9ef33f1bb7dc
MD5 655cdab6b88f80653353c40ec8e9acc0
BLAKE2b-256 ab8897c9f464ac576a898d02ccb9aaf9233ec52c02ced3a8d415200fe39e04e5

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d6613104e30f84e0b1a3edcd87e9fef7f15936c01ac87671e7014e0468e4ae74
MD5 4370b0959a7ec9b6eb672717e301c469
BLAKE2b-256 d60a175eb360ba9e6a4419b67f55f80e7eea8e1adfcc26af195b9fa4177fffc9

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73c7b19607bfcd6349d2e4f19ebf30572e754e20ed39cbde7193e38c0f7b2503
MD5 f88bff5e983f2a176103c65a33dc0dc1
BLAKE2b-256 7123c30212011ca9884a66a42f15667b0dab294d52db10451e27683622c9c600

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8b85110f9a6019a31fdd5542c075f9433e09ab1ba92365b7f1f14569077ecfd
MD5 77c17279044023fd810fc222d2550021
BLAKE2b-256 9e286479eb9162597282c8ca1d59cd6f52c1ef1c7df5203623b85e7303ad28c6

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d75637c4a1387318d91d71fd0f11177bc5cd0b39b68d33ec5ef3786c7b28f0c3
MD5 5d32fba3129b2875cd387ba62830fff0
BLAKE2b-256 a7b4ea48b6d45bc83bd73b8e34aee76b70f39cd852c8f9b84e04d35543b201db

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 931a1b7844dc46f82d37c98366e0ef69fe6b581cd1e200a90f807a1f35832ec6
MD5 9d66a0cfc596fbc411b0af5610ed7681
BLAKE2b-256 b710f4dfc7ce1489eb3a8c8b6fb933acf7708279374848f2c458ca98bdd84201

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp312-none-win_amd64.whl.

File metadata

  • Download URL: spdist-0.1.3-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 195.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for spdist-0.1.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 6389a79037a878b409e51f54449d5477880e883aa9d1e2d3efa831e4062c5c11
MD5 9bafece6c2a606df29ddccbe79a9d5a7
BLAKE2b-256 01bd3b2b883ec61e3d748134ffa49f62b4d1c8d7cd1ed3860c2f20e367e23d9a

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp312-none-win32.whl.

File metadata

  • Download URL: spdist-0.1.3-cp312-none-win32.whl
  • Upload date:
  • Size: 185.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for spdist-0.1.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 a2da3f19e7c0b2d8114b6cbfa864a8a688192e39ec697582b6e56897067d1b9d
MD5 43fe976ec945034cc8abbfb7c5468400
BLAKE2b-256 ef4236b5161995cdd8b5e6fa3dd5d3c7755875cd8a995f971b23ed7fe1ef0115

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29198334725496173ea5949afe45fd725cbe4c3a7e2a016f2d4bcf31e8d60a41
MD5 bf7ca91a8d2bd95804872b32a33eac7b
BLAKE2b-256 858cbf0f82f7c4c3e56f3edeed671e654e892a56e4dd40a91389ae5b3c703ac8

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 195958137d33d21da0c625f986ab1e5839cffeda25cbcd99dd2ececd60739c7c
MD5 455e050b59aee010aa5c2e1ddb9d52a3
BLAKE2b-256 5f5e703797c16d8c19372cd33f95ae9033ce4619f647f8bc924baad927e4383b

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c540c4d4ebfc00bd4e22f16dac3d4be3659b70b43c7254878af8d47f113b1fd
MD5 aa50bda642619af94bc7083c72b2a7ea
BLAKE2b-256 c645444f1ce358f6ca5c37d0e7ca830d06e51e27c69bad273c5ea0fd7589d6cb

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fbb63edaa92f6322616024da67618e65a18f89589a6efd539bbb2abd78f49db3
MD5 0dc7ceb7b494d0393f1628629211897c
BLAKE2b-256 a5a13c5bb113aa79b9392aa0dc0418e8e83fde25423c7ed739e2a5e7e6877cab

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 470d456969fe6d1f02ded88f2a6d4721c62ff3ea7c2d72113abd6f9b8bff4f1d
MD5 bf2d62a14e6738d864eea392f4701a48
BLAKE2b-256 bbec798e68faa4465729a88e313fb6416c8bd70ebd4aafb451b1fea8dff1490f

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cd8273b632798c0ca8a9b7fe3e71e9cc5208d6a13869a14cc1ba61bd1e8317c9
MD5 cb489202acce959b33b4abcb24255751
BLAKE2b-256 553fb846b8e2f8cd17a83d266d5ed59863abb3c7745b9cea01d81d6c64c302ed

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db86ae174d07828511ec6c5642366b0f4e172f6b942bb06b399cae539a73521b
MD5 d1bda8289d7f73a86d72257ad188ba30
BLAKE2b-256 e5f724a1d4778ab2dbe1ea937433e0eaf5213c7eb75b53428e28a551faa8f84d

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 519f1ad81201aef8c32a12f42f68467983db276de2a729591a07f2c37df39a45
MD5 3735dbae4c59b06b59783f4498a8c926
BLAKE2b-256 e8fc077b111ebf4870ba7f3d48b6ce618f0995dc82069406c0fc753b56a602e7

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp311-none-win_amd64.whl.

File metadata

  • Download URL: spdist-0.1.3-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 196.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for spdist-0.1.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 4b861c0980ac053bf191dff5cea35212636493fb07b3c2d96e18980bed325e89
MD5 898925f4af1bc733165ba69648290ac0
BLAKE2b-256 955fba064cedb87d9f26ea0940f74b8454f194c91a0fd378658a07b64bc42b6f

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp311-none-win32.whl.

File metadata

  • Download URL: spdist-0.1.3-cp311-none-win32.whl
  • Upload date:
  • Size: 186.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for spdist-0.1.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 197a18a52e5c04f4c5e665f9ad7979eb1253e2ed9337c3d32cdb3d4d00365f54
MD5 82ac27236ac99dc18132afcd1803cbe0
BLAKE2b-256 e271773b416046aa505c8145f3f6bdfe3e55f500f006470a800d1b278786f32d

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b42d7b3aa52b89ba6f224a3281d14f4ad11e343ad6163f1efd242fda4c50893
MD5 51ec6a6fb8725e85391e2ea087ea9335
BLAKE2b-256 d06cdd550d8359cf22442f647df52b530d1df4e32d9ce61adf3b336d64ea9bc2

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71279cf6dd4826948311c3c3417bd3fd36dbbf336cb24e1dd2cf208cc242b1fb
MD5 866d04276fb97f46548e59eb9d04d26a
BLAKE2b-256 5da03fe977e671c3fea39f01897535b81f910d3439b99b4899727096e35ab23e

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5930c3eb871e58fa7c73f21351b27a97c4deef6fc77bb1c7c96206c1e7c1b72c
MD5 704e7ab721cf4724e9abb0cef1c79029
BLAKE2b-256 0aa21acfba4d68eb70fbe095f5335f238cdca18b6ebea949a5d31fb02687f2bb

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 76891de43508b2002e7971f356828a661dd48fedc4bf3c3da960c3a3b7611272
MD5 5ed938b9834302307f3392a2da3b4827
BLAKE2b-256 c7d65a5e2311cffe3a4583d27b2c81d33b7a74666a7f5aae25f833cb8dce7b63

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70b5b49d7b7d7a46e60730ac7b4ae75dcf98477a56b579c4cf7163baebd9f474
MD5 8da79f13b2f47ca1242792f718789b0e
BLAKE2b-256 b4173bbba33da5f4b709e5529fee4a935be50bd434a094526bf63728b0a4f68d

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7e7a8009a901549fb67c3673e5157024d3dbf246fadae6c8b9278e7f0b308ebf
MD5 9767857b218f21e46979da709bf70e34
BLAKE2b-256 652f881b5755898a603bbce17d13a2123278b93f12dc2aeeef72ac9348000546

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d37507361f67581233277316204d63fa54c67535bc8a67d724cb2ab229d08de0
MD5 cccfa94485da19cdcd39a0185186952e
BLAKE2b-256 e68ef95d1539c2eb1d26e5eb17856442b32d54a3b2bfc27cfa4c3c9bed2bbdd1

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e26f7333c5b713ba1815d90d8f8f4e28356ca7ac47f542b4e7ceb4825fd391c
MD5 7442051ebb6cbb77697328fd41766669
BLAKE2b-256 8b5b219d256bf7a5b2fc8a24c893a94ceb4e80cea2ce9905d61eba3f1d0c6303

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp310-none-win_amd64.whl.

File metadata

  • Download URL: spdist-0.1.3-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 196.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for spdist-0.1.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 e775487c24be6515f46fd567ed3d052802e6dd28d4c238c034fc3056c6af11f7
MD5 e5ed5df0aa3bbce7b8ce3bac7b91d70d
BLAKE2b-256 32d16600eef19ff25801e9141b1db24438677896c313456fd9f2f9e127a108b6

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp310-none-win32.whl.

File metadata

  • Download URL: spdist-0.1.3-cp310-none-win32.whl
  • Upload date:
  • Size: 187.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for spdist-0.1.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 d80a35bf05291689b3e6ab45ea6cc956dfa16e2a78c6535bc43b7c14a594c74b
MD5 15d7a8ed82a1e590acf25f52599fd48e
BLAKE2b-256 eba39aaa87e3186e966ca5e24aa629a5636d4b99456ce424e2dcc9046e0efa61

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b04340f310fed1a3043a800ac953391933b597a525d47159bb3ff7738bbc8ed9
MD5 d02ad559f970cecf0c70d973152555ec
BLAKE2b-256 b096d998320312d5fced9994f44b940ec221930fceb7992d94687a3873b4d7b5

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4dff3bd4871c34512091e16cc80f74f6cb0cffa4191c9c98ecea3095bf70b64e
MD5 e42921c6e62ae1efdb97042591adfd64
BLAKE2b-256 5717f2ed351252c7e350c2a383b6d5c9b9960dad611896e653e1bf299aba55a2

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56db8112413b33987c3c6d9a79d449c81c634130a7ee210c0fc516a7198d25d4
MD5 49c6935721514a04c98a637f29e67531
BLAKE2b-256 278fe86b12132b025797bd699f12d99446d0c7c302544fd9c6cedeb3b78dd74b

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7291b47be5aea541b62a150c70d62bf14ba082e822994cc349b347effab4c6d5
MD5 40805a88ecf147600dc02d87dc986ab2
BLAKE2b-256 2c057ee03e2a5b3b37cc03085cf64c5c14febed73330f153ba04f7cf8b4baf2d

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09b23de8ed567366475df5377d984e783466522426b5df8b6e5a4c817a0efd56
MD5 bbd6b82e8afbd3fbd329ffca6c809ad2
BLAKE2b-256 55c6c30945ba7546268b174385ad312bcf5791338070289a76b78938fd106e2b

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bdae6c359a46b9c66cfafd4a1e29ab371d1462477b2ec8601c234fa1ad8e2b12
MD5 127746a4463e6d6bbeb2c3085df22529
BLAKE2b-256 f340a0735597db1bd31b8469177574c67cb52019d3c567c841807240426a3962

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8b4f1ed1cfc8761939c06d04cc612535cd4a473c301a8110c6e16aa20e28815
MD5 05eb6fccf877a7337438211ea35e4ced
BLAKE2b-256 6f48061f1d289a187a046bd78bf48fa50d233b5810cfd45cb6b5a60501a2aa3c

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c30c970c8ca1f1055343c60b974579075f87505ee642673452f6a43dead6bf39
MD5 1a7ebf3fb5588575c0bd6fb357fba734
BLAKE2b-256 4f5df8e980eed6e3c2b92d53d29c673116bde8c471a27b3c76ca23b5374ee061

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp39-none-win_amd64.whl.

File metadata

  • Download URL: spdist-0.1.3-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 197.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for spdist-0.1.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 6d0d161da05da0fff693217ea508edc81ce0a56794c634e65866033f9cd368b0
MD5 fb5613398c303ed9349498874d698fe2
BLAKE2b-256 e1019ad0db8566cd3fead0fe90e08910b8d5a5509612bb95ffd29302bddbb423

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp39-none-win32.whl.

File metadata

  • Download URL: spdist-0.1.3-cp39-none-win32.whl
  • Upload date:
  • Size: 187.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for spdist-0.1.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 99226c3f97ecaff509d7f76bd67d8958673ec7ea07da31f06debf6a310dc0053
MD5 32eb3250869d640b945d221a2e48c923
BLAKE2b-256 a46033fbbe10742361fb444a24f667a4983cd65174b160bfa86a5cf676b1ab39

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89e1f82856dde8378e8ae318b5df8fa22afa8c22c21d12ca197da077775772d6
MD5 b641868234dbbda6e9f9bc37ee441bda
BLAKE2b-256 840b72fde2956f81f4d66148d0b19df0984a991078ab34fc006e6ea5a23b96cc

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 329883b58f25568e3d5507554299dc4b5029161343cb7fc715c333ea24e40890
MD5 d4bdc2a4220168b164082fa13bd43590
BLAKE2b-256 12bd8ba2a3e62f294f6975042f3ee3d43ea5ca5d4a4ab9fa85094b727539a667

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73cb9ceaeaa183502b5128fef1f549c155d0ddec6ffa8895e45a51ebc5ee50ca
MD5 3155137de8fd5a3dfdaac122363e8884
BLAKE2b-256 570744236d78103e7f935da2f23b1ec873b9a98f0a85d1f8fe3c52ee5e5c0a2d

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9855023e8198b997e715e19f36d50c398fe3767c1bf9d3345f9b2b90294bbdd1
MD5 8ffd054f45991909ec04805ebaacff38
BLAKE2b-256 7ce8b797200cbf26de3c9bd5cfca1cd343d1eb0e015f2ab190985c2cccd7aeae

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d54773788391a438c9491a5a1cb1c2ab7af019a153972940bcbf9ec48c8c80c
MD5 73bfbd7f571986aceb1f8ec565f6adad
BLAKE2b-256 2d237014ea023810884706417b5b1222796337936aa54dad81e12a014daa3795

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 42ec44c5b6893d5cb68a7ebf0351f0d0728c2bc88416f38cfe6cd733bb9ce56f
MD5 f967e24581f9f146d8fe7e5a6b63d599
BLAKE2b-256 e73b621a709487d9369efecbf99b42c7c671a163cfe47ad3f7cfd67ad27310c9

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp38-none-win_amd64.whl.

File metadata

  • Download URL: spdist-0.1.3-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 196.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for spdist-0.1.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 6f3d62aec0393edbe3fbdffd8a43083ac06acbbdfcf36e040a079ac441440f45
MD5 bb1be1570801eff9315bdf8954f4a340
BLAKE2b-256 7bad47d1a6cfd81e7a475a8941fc2c29a85f8732cb66d2e62a45b8d210019577

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp38-none-win32.whl.

File metadata

  • Download URL: spdist-0.1.3-cp38-none-win32.whl
  • Upload date:
  • Size: 187.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for spdist-0.1.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 fd312b997987e4f1c231ec35fe9d1bbfb0226427ff7e14bd9bdd8ea51f76e02e
MD5 468efbf1183a06fc383a2eb71ca93c8e
BLAKE2b-256 0b721f06c04f3e280306cf4bf72f2c0ad64ce90e2bda07334ff87ec56ae69779

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 919fea4054de4e9ce798aadece8baa132ae9ab407b2b289aab85bf944e1c308d
MD5 64c250b17760c12c242071df1325ce36
BLAKE2b-256 acae4c365b352ebc84d1f1ddee34f27b5c038729968e67a76e4c969c0bbb868a

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0825cf7ff62df2c85f9440c8375de335f122c35df3e90ede5049b19e6d504f1
MD5 dd529ca42b33f6620ac5c2cac9827f63
BLAKE2b-256 40cbbe610271edaa009ed1bec2210f03bd76c0173de0d55bc1e00045630d7b45

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1305ddff80bea1efacff5cc1bb3be73951a8547cb47be96c76f32dd51126fe7f
MD5 acdb16d96d63ef4ddc9f8c949178600e
BLAKE2b-256 9242e4fdce1f72445373810956e178145547e70f0d725514c87aba7a3434a155

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dee0cd123fed326eaad86b671b81f25d1d65ef04c79c9805b11707311966bab2
MD5 1755002a966ab4d17edf6a6c146bd164
BLAKE2b-256 80d291878de4f4c0f5a7611d8e0351d3e39741aea5dcccdd3ca70177d20db0a2

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ed7476bf7c4fc5b144be9c755c831a1e294e8ac1f5e6035d421330200ad74ce
MD5 f1cec5b8a92e88e3e682cd9c11f32dc3
BLAKE2b-256 26ee4e699a3f66d16d156df8b87f324c6cc5409620d4b47f76165950bb3a4d01

See more details on using hashes here.

File details

Details for the file spdist-0.1.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for spdist-0.1.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9e5ba9d299630c1def3ea0c853694e0001ffd1c46e2883330b19268d35f8d350
MD5 53d2bafa6250d7ee02d8b7890127eca4
BLAKE2b-256 d5f85d7380fa48d7688575aeb0645e3b8a357749141df82f1a9067a3c4806dfc

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