Skip to main content

CLI tool for checking stale docstrings.

Project description

pystaleds

Code Tests Coverage Status Linting

Tool to check for docstring stale status compared to function signature.

Compares thing such as order of arguments, type mismatches, absence of arguments etc.

Installing

You can install the package directly via pip using

pip install pystaleds

You can also simply build the binary using this repository directly with Rust. For instance,

cargo build -r
./target/release/pystaleds test_folder

would run the program to check the files inside test_folder in this repository.

Example

Suppose we have a function f as below.

def f(x):
    """This is my function.

    Args:
        x: This is my variable

    Returns:
        I just return whatever was passed to me.
    """
    return x

In a new change, we want to add a flag in order to reverse the argument or not.

def f(x, reverse):
    """This is my function.

    Args:
        x: This is my variable

    Returns:
        I just return whatever was passed to me.
    """
    if reverse:
        return -x
    else:
        return x

Note that we didn't change the docstring to reflect that we have a new variable. This is precisely the type of thing we want to identify.

Running v0.1.1 of pystaleds, we would get the following results for each one of those files:

 Success!
ERROR pystaleds::rules_checking: test.py: Line 1: Args from function: [("x", None), ("reverse", None)]. Args from docstring: [("x", None)]
Error: found errors in 1 file

The None that is present in that log line pertains to the types of the arguments in case they are type hinted.

Indeed, if our code were:

def f(x: int, reverse: bool):
    """This is my function.

    Args:
        x (int): This is my variable

    Returns:
        int: I just return whatever was passed to me.
    """
    if reverse:
        return -x
    else:
        return x

we would get:

ERROR pystaleds::rules_checking: test.py: Line 1: Args from function: [("x", Some("int")), ("reverse", Some("bool"))]. Args from docstring: [("x", Some("int"))]
Error: found errors in 1 file

If we change our code to

def f(x: int, reverse: bool):
    """This is my function.

    Args:
        x (int): This is my variable
        reverse: Whether to reverse before returning.

    Returns:
        int: I just return whatever was passed to me.
    """
    if reverse:
        return -x
    else:
        return x

we fix the issue! ✅ Success!

Note, however, that if you put mismatching types for the signature and the docstring, it will again raise errors.

Options

The only required argument is the path, which can be either a folder or an isolated file. In case it is a folder, it will run through its contents recursively.

Optional boolean arguments include:

  • --allow-hidden (--ah): This will include hidden files (i.e., those starting with ".") in the directory traversal.
  • --break-on-empty-line (--be): This will consider an empty line as a signal that the arguments section of the docstring has ended.
  • --forbid-no-docstring (--nd): This will raise an error in case a docstring is absent in a function definition.
  • --forbid-no-args-in-docstring (--na): This will raise an error in case a docstring does not have an arguments section.
  • --forbid_untyped_docstrings (--nu): This will raise an error in case a docstring has untyped arguments.

Optional non-boolean arguments include:

  • --glob (-g): Allows passing a glob that will determine which files to consider. In order for this to work, the path given to the program must be a folder. Then, the glob will be considered having such folder as root.
  • --docstyle (-s): Allows selecting the specific docstyle as a source for parsing. Defaults to auto-detect, which will try both google and numpy and use the one that works. But can be chosen to be specifically google or numpy.

Benchmarking

The benchmark below (done with hyperfine) includes the average times to run each checker tool on my machine across different projects. The test_folder refers to the folder on the root of this repo with two simple .py files.

If the time would be over 1 minute, it is indicated as NaN in the table, as I just stopped the test.

Checker pandas [ms] numpy [ms] fastapi [ms] test_folder [ms]
pystaleds 21.7 17.9 19.2 2.6
pystaleds (with tree-sitter parsing) 616.0 370.4 102.5 4.1
pydoclint 7418 3513 714.6 62.5
darglint NaN NaN 1152 125.3
docsig NaN NaN 19353 527.0

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

pystaleds-0.1.8.tar.gz (25.3 kB view details)

Uploaded Source

Built Distributions

pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (856.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (965.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (934.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (914.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (841.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (862.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (856.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (965.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (934.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (914.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (841.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (862.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (856.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (965.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (934.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (914.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (841.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (862.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pystaleds-0.1.8-cp312-none-win_amd64.whl (626.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

pystaleds-0.1.8-cp312-none-win32.whl (588.8 kB view details)

Uploaded CPython 3.12 Windows x86

pystaleds-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (856.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pystaleds-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (965.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pystaleds-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (934.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (914.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pystaleds-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (841.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (862.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pystaleds-0.1.8-cp312-cp312-macosx_11_0_arm64.whl (789.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pystaleds-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl (810.3 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

pystaleds-0.1.8-cp311-none-win_amd64.whl (626.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

pystaleds-0.1.8-cp311-none-win32.whl (588.8 kB view details)

Uploaded CPython 3.11 Windows x86

pystaleds-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (856.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pystaleds-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (965.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pystaleds-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (934.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (914.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pystaleds-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (841.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (862.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pystaleds-0.1.8-cp311-cp311-macosx_11_0_arm64.whl (789.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pystaleds-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl (810.3 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

pystaleds-0.1.8-cp310-none-win_amd64.whl (626.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

pystaleds-0.1.8-cp310-none-win32.whl (588.8 kB view details)

Uploaded CPython 3.10 Windows x86

pystaleds-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (856.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pystaleds-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (965.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pystaleds-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (934.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (914.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pystaleds-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (841.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (862.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pystaleds-0.1.8-cp310-cp310-macosx_11_0_arm64.whl (789.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pystaleds-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl (810.3 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

pystaleds-0.1.8-cp39-none-win_amd64.whl (626.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

pystaleds-0.1.8-cp39-none-win32.whl (588.8 kB view details)

Uploaded CPython 3.9 Windows x86

pystaleds-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (856.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pystaleds-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (965.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pystaleds-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (934.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (914.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pystaleds-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (841.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (862.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pystaleds-0.1.8-cp39-cp39-macosx_11_0_arm64.whl (789.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pystaleds-0.1.8-cp39-cp39-macosx_10_12_x86_64.whl (810.3 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

pystaleds-0.1.8-cp38-none-win_amd64.whl (626.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

pystaleds-0.1.8-cp38-none-win32.whl (588.8 kB view details)

Uploaded CPython 3.8 Windows x86

pystaleds-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (856.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pystaleds-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (965.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pystaleds-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (934.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (914.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pystaleds-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (841.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (862.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

Details for the file pystaleds-0.1.8.tar.gz.

File metadata

  • Download URL: pystaleds-0.1.8.tar.gz
  • Upload date:
  • Size: 25.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for pystaleds-0.1.8.tar.gz
Algorithm Hash digest
SHA256 529f6818b699efebcdf143ca059d94ed3fa1781784db6cb6dcfbb48f57f10879
MD5 186272684bdb282d0b4efc90f4f1b401
BLAKE2b-256 8537c41ea278063512e196c8aa5274428aac002a3f5210d2c9f0ed916db0020e

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf486eb39d889e53d5bdff2f8b1a374aa6eed80a17dca5d0dc34bba69afac983
MD5 b381a9d9706626c6b868e5cbb50a6daa
BLAKE2b-256 b844eadd3e4e14b0426a2619e99ba083c1833bed54f4c3d637cd0d44ac054e02

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 933af7ff120371b443568c9baf73fa54ae3890c8328f802833eb43a732cdd76a
MD5 77126d4ee1d2b619d6cb67f4e6928e4c
BLAKE2b-256 79a0626aa59c951fdbec3de9c2a65a0ca7973a13819b581cb412bca8e129c9fa

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 816d26173a33e2d89826497be9e465cd49683c5ab3e5dfe2bac379860bfe4a8b
MD5 e295ed50e732f28d6c4b8b0259c4555a
BLAKE2b-256 019b6e49f8e4d9f040c868af234b0df7376f739d42c3312c2ac3982a77c94f88

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b36e7f66c73d43a48f23a289d7b22bd50e0780b90598fdd2f86d63852bd9708b
MD5 366a2256a3c03c2beee8a2c3977a68e9
BLAKE2b-256 d85411bc904bb70c3fb8e76d12d1be6df5046908a1ff84bbaab2f067104aa9ad

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1881f514025eb4b11eb0083234fea7cf7a8e5b5faf07de54e9556e7974796f69
MD5 6d5b8e73bc47532e89e2a192707003f4
BLAKE2b-256 681ba4cf0ad79f508fb033793d70f8b898ab0298bc694da6077a6c89058ddb1d

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68de6f9a3aeaa0426ef47d8f20ba794e42748a3b3f3f09ac2cfa89852e3b7110
MD5 283f2787cf322ed733b37dfe9a29d72a
BLAKE2b-256 cd4c20f5387fb7f171a52de76769ba4d0bd3942918d0c9b10a36577c75d9a4bc

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d437486901a09fb6b03d5009e62caae95fb8ffd9030efe3e2acba15d651d8da
MD5 c98e2722511101efcaace250a0055020
BLAKE2b-256 70a65293c65c1fd7ecfb3e2a23f8fae28558134d4764d113c9fe97419c99c12a

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 66d7bc379b8b168f9399ec2b9ccb3015e13d7e821f4f33573b4ea0b61edf7252
MD5 5feb0ce2ef72231f4c257129d07f2bd6
BLAKE2b-256 2f07f4a9f23fc5240aa6f478d86bec0dcbb730e1feed4cef3ef2d26a1a41928a

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 506deb607451ab2d8c35e3f9b7e3dec04cb928487e4d767ad7a420d24a9579e8
MD5 523126b880f848e1d4c86611f646b37f
BLAKE2b-256 87deeb4456db43caf789221dc9cc61b67cf31e2f15cf4b1827349b62426eaee7

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ad2fe77f0761ca2adb469995ac2f23f1aa91a10d33c70264f69310773d3b09f
MD5 75241fba523a2978b0e9506ef63108ed
BLAKE2b-256 0ec0dfcd32634f55a8527ef7fb60a895685a884095bcf9fc968e4eb6cd5e66e0

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 794440d3c23b01108d6dad5fadba904b43b15e4111411ef81765d6ee505d30ba
MD5 e449eede84e81ba99717825c9c8beb17
BLAKE2b-256 f8d6137f24a805d2cbd6e5c5278401c47ec954ba9fffff57c5563b2a9f43901e

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a80e20fc86284e7657e88b17d1a9409a4d60eb97362f71602bb20218b5ab352
MD5 7b4f7e6747d8be93eed42f036fe41fe6
BLAKE2b-256 2b15a5cfaaa54552eccd17dd9d1580439ec0e5a8f48f379314984d0dae17be3a

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86fc598e7a4018b61a42473d81a5a0c834cbc62e48dafc8903e0c6683255c8fb
MD5 cd70e76d1d2aa21ba1e43cc575ebce55
BLAKE2b-256 dcdedc707d18adbf2774cf7572a4dafb6b305f194a5743904f43e6c40a441988

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 751b7e87ebcf9071c3eef6cc108d5ee74d10ec364175299948a6339581b35268
MD5 b6b76824f55c58ff3e4a258a61001558
BLAKE2b-256 24b75affd77acf6c03b1df4f0c52ef3eb3c715f4190d79cb6156ab0560e850cf

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db3bcd345228f34ce030c961ab9714a091c603789cff7457a685688bb37c3bb1
MD5 b8a9ca78f24da920b0f3ea91cdbef12d
BLAKE2b-256 412c74f76762efb34e2839565f50bf08fd6bbd5af078c97b13b795b0e55dd8c9

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ba11232a0b1f417f3940eb3d5fbea3c920888e840363d0be8652faf668152fe
MD5 ad0e2d52edaca7d286e8bbc70d63940d
BLAKE2b-256 53472c75c0f3eac5ac1057ae4b62e5d2e4547df64480c3c004d639dc3be37c80

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3367ff4101e2e537c1f0d3ae7a0d05be505b200be88d4709ddb5cfd653e5ed36
MD5 a21e6dc304e425444f7ab651b763c62b
BLAKE2b-256 a0e14654fa0498426e5946ff0b33f6a32b97ade6ee8894f2bd5eb65df6fc2f63

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28159edcc846af9226d82a85a8c411b5f69f52cae24278c292f23464249d7ba4
MD5 04218361bed4f4a914628f17bcbd9eec
BLAKE2b-256 a5f60738043ed3eea9244eb61fe5cc8e178d4004f3ea4bf829f80f929a97ea7c

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 1fc2e1778e7097b57e8d1ab09a8a7711061e5d67bbf07372a52172db17f81306
MD5 38fdb5d83be26c471221f762ac921076
BLAKE2b-256 f057da5ddc5af6b85e59b0b1e610e9eb1779d7207cbe6c2dfe9278560a73ee45

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp312-none-win32.whl.

File metadata

  • Download URL: pystaleds-0.1.8-cp312-none-win32.whl
  • Upload date:
  • Size: 588.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for pystaleds-0.1.8-cp312-none-win32.whl
Algorithm Hash digest
SHA256 002e858df5707b3213b6471927b55099a00dd71ac77079dc441940917b6c7f15
MD5 03ce17b43c5040853031e78f00f0871b
BLAKE2b-256 867641c0c49a715080a859077bb90cde779ca7c73f8c622003a83e6bfbbdb1f6

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b5fa67ed5123631291853eefd624d486d00cf1448c7b285ce86e29015e155a1
MD5 467d0d1e71da6ba6f5a91a215becb5d6
BLAKE2b-256 3fefbcebcaffec65a62d34fd111abdfc428b1044f4f3ec222772b18955472dfb

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20e6f3e0e68ad5bc811c99d9bc14f77e8d9dd7a041380b3f7f128807cc38a51c
MD5 81806ab31f04a4df47543bffe590c46e
BLAKE2b-256 7acccfd59b32c9f8170cdffe2f8075eaa745e6417a7a092c1bfa9d7d200bfc37

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b89b0e231b8aa3513d0e3d590a28868f30d242fbc59f919041b61adb187bdba6
MD5 1b4bcb4a5c41993df571dc91a969906f
BLAKE2b-256 be5ee4a43d599e84adfd74803fd336f57bced5770736d30b7f827fd341e676d6

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c86e5dd2261ea0da3088f9a604c913594b24c699d17fb7676288da4bcac2830
MD5 1759c726ba277ac919f8fcdd465ed426
BLAKE2b-256 859aa3c9ec8ec1ec77559172f369b3f90143c07711d7f95d5ed08d70eeedb665

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f31a1be0497d042f2a528903f40767b97256be941fb80229e8239f54137133f
MD5 484808522f5709541a99c51ecb742431
BLAKE2b-256 510f1744243daebc50e8ddf644712ed57d5332ff9190b627eb853c3ddca4fc15

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca4dc8fbdcdeb18fc43b6c8456f0130e65dd85cad9dd943755d9bfcca222e512
MD5 42f46d27e26b4ffcf0bf09fa0b98c7f1
BLAKE2b-256 76c91488e35b45da98ee60c710e2661b7eb9e86a8ecc7f59275709864521236a

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cbdb5c7a56dea05b12ca4f2af44ecd20cb1228a87212b621d42ac65602a7fe7
MD5 4ebba73cc13e3309dd586b3f3c675f84
BLAKE2b-256 e8c47072ab74389ab3940d3cfab81e211e116031dd5ee88b28466df4612c207e

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e8ee4774dcd672d1eac0425e4eb68476115a7e60903e8997dff3b5becca2e9af
MD5 d329b2a088265b6af0d3c52eefc048b3
BLAKE2b-256 5731887f6075dc920bd4fe6a6bde9abe4a2dc7a9be6d5259d97dbd71cbf15abd

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 8c4e7c60e55392374dea0e7b76662d040014b4a248d376bf37a9f9ec29cefd81
MD5 fb3f77e1224d1e9547a9a3ea3f90bb59
BLAKE2b-256 eecfe22368af5cd41075425fcb27d0a51c350c8649abf780abab06f2ec47be9f

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp311-none-win32.whl.

File metadata

  • Download URL: pystaleds-0.1.8-cp311-none-win32.whl
  • Upload date:
  • Size: 588.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for pystaleds-0.1.8-cp311-none-win32.whl
Algorithm Hash digest
SHA256 9d6bc3afb4305f2dc248a53ce97f7bd5b2a5f32c51722138e383a4c0d265aa92
MD5 47c07563917cf6ddb6a218d1b1a7eb2a
BLAKE2b-256 4ed3dc8ac1b3211b51916379559e1a6c3e633885fca2b0cd98899055f3566680

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1bd3138ea33e98b295089756a27a545f3e424edb5c27434ae990e3de04c55d09
MD5 e38b52add6b6a9dbc34ab2ca2fe8000d
BLAKE2b-256 4d9ec17da69d9b5a1223f8ce1a01fbfbaf2042d8971faa366c0e604f90354381

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8255d82f999b4f1f08fe8a5685f121a30b5bafc4a9219c2d690049c699ad316f
MD5 96ba39fb03bc5c79aff5db1e584ac2d0
BLAKE2b-256 aaa883d3ce504ea7f154230efb95632614825a1ac2ac48819ef978e29bc657a9

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 146387c6a2dbcd9df3d379eb9ac6e2be7a55e68cce92a145b3c5e9cadd19a1ec
MD5 f3d9a78d55bb700acd2fed9a138933bb
BLAKE2b-256 975665986a677c68d1d66c8d55091edc6a64e9c78a950b5ffc082a07f8a64f95

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6b616003df0d57ae71fa8f27cd8606d7318e71aac83df6d81dfb52c9ef5de414
MD5 34bd6d7da27f9799e80d60dea77a3bf4
BLAKE2b-256 ba295095cfd3642767d5daeaba5ef7c070c6e09aafd6b340320af9baf404c870

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 110b74b221dc06a47a92881ba1289e267f201995269b31586d86b95d723d340a
MD5 c74fe8206a06af922974967395d9b81c
BLAKE2b-256 2f799094da0bbefb257721fc55919bbd1d1f53900f6bf1325dd18d02c51dd4d7

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a892545c5ade7270e890cfb5c5ebcbd7cbd2585481fb42c166554c9307976a1
MD5 307ef883c2bb9caa6f16c0c90d5b4af9
BLAKE2b-256 d2977150549c21d4d4b1857d82e1fe5e2ddc2348defdfb1ee4b6b700cdd77b75

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2cf3fc2a4bc48eb65e3a8ce88b6df8ddfe4884b1cfa25bb74b7e16613270391c
MD5 128eb5a893339dd1b2628c61c6d79abd
BLAKE2b-256 2af363a8aeb2af8d9afda04d01f41deda35d99f8aca34b6b419f96332c286ab8

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08a5d84f919595ec482ab3139b53c0fbab2ce8bb94d2709c78effabf77cf5b17
MD5 d77408aa201c4a1540f800d17fc12729
BLAKE2b-256 ca77083039150d86f592883aff70c096e860158339f4ac4cd8307346dc753392

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 806dc7ca84a1d303367522246b180c335727093097989f15c245c211cce625ba
MD5 513eb26f08661c67ed1335e9901e3fa0
BLAKE2b-256 3c6e05ae82ef1b9c9d8925ffda5a301d385970c6ae58b079eb4e78314dffa334

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp310-none-win32.whl.

File metadata

  • Download URL: pystaleds-0.1.8-cp310-none-win32.whl
  • Upload date:
  • Size: 588.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for pystaleds-0.1.8-cp310-none-win32.whl
Algorithm Hash digest
SHA256 80662741537d900e4f11544f7383c8d426b86b9a5018db6cf395db9e4e7cb6ed
MD5 62ebb6dc4a48fea9fe7659981457a71a
BLAKE2b-256 ff4c328f13317e3cfb1ec566f103f74028beb33455821554f8481fdc5d81ad88

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e85622457edd215b72ebe5a184bc14a196b5883bb467a150132a251a7cad7fe1
MD5 c11606a9b0888487e018129bbb1293c7
BLAKE2b-256 4ab738d7cb5c49b0dd95b08c9b3cf88f3ce699e91ecfae2e801ae2a15b54c043

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20e9b47f4b39ea23c5d24ef29ba97e7db8d7ec0f34bdd827450c11a84a3ab14a
MD5 8fd82b50eb8347a7c23abff60921f55c
BLAKE2b-256 596ba6ed37661cb4cb8973d2e1df941d1e48336be4393fc069c6a55bfcbbb2a0

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f0a6fd5ff9ad209b9d8ca2d36889c96c729e50d3ce8b941e143b991fbe66825e
MD5 d95fb1907e9ef48175a0873bdedacad8
BLAKE2b-256 af2cdcddb05e4bdda5ccb477b867aa9682fe3131e668289cf07742ff28494cda

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 04964cbf7dd3a7b24f7fd228c7489ea35690c265a460592f99c675d3a8cba86e
MD5 20916efcb7f776081de0007287799a23
BLAKE2b-256 f8bfd10f611e5a31c3c783d33bbb9ba465e7f8aa571c3ef919f645cd36121eb6

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba5629455510242dafbbb414229f19cc43f3f025620c31f9026e0524065b032e
MD5 0a58eaa3cfd170303de560db6c341903
BLAKE2b-256 fe693d7ad3de2bb0a31c0e4ef75d1a07e7951a5db2c5259a013fc3f58d3526e6

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d367477b3adcc0e94c42854afbfd3a77955c6aacb5a77e42ff04b648c179db2
MD5 8800bc920849eec850afbc8124bcf390
BLAKE2b-256 3a4a9ec13de6796723257b81727d873af7fe85ee0b84050226c458062432e6ae

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 809dd0f005d298c71ea42bc1bb0566b6c54b1f745b1e74d66e4293f210105d38
MD5 a7c530da006e84de8ac39d1624ee0efd
BLAKE2b-256 568a0c8c054609caa65c18673a7e2a833218aed1fcee404c38be85f6dd3f68b3

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44b74fea112c027d8795f4a765cb7e7f3404b9641526cbde99f1a79bbf7aacf0
MD5 eb1cf7c5d04845d89a87fb77bee13edb
BLAKE2b-256 e6d657e617b1c8fb8d66b6e1c9b190e3b8adb8b3cfd1d10bdfa39a47f45076da

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 38e16281d65a62103e3679e9346b70b3303a83ad72e838ec21d2b2b30b893b9f
MD5 5620525ad4eeac6a1d7c0fd9f6a56e16
BLAKE2b-256 3c11a1f188b60f5a1187c34dae5367b2d8ebc6b87dab7af0332508dcaead2bb2

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp39-none-win32.whl.

File metadata

  • Download URL: pystaleds-0.1.8-cp39-none-win32.whl
  • Upload date:
  • Size: 588.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for pystaleds-0.1.8-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c5d3cba404487e4ec7bedf21672b930846d1898b284416025151c144b9464f3e
MD5 c89403ed559ac0ddda6302cf30220129
BLAKE2b-256 5b8ddbc2f42eb39136af1777f671f45369eecdb3e719f4bde30dec0ed517e2b6

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e202a2e9c5d0651c756c6350f1fdf32aa01bf979c002589b058f2f608538a4b
MD5 d7ce074e248cfad86a2aa393102401af
BLAKE2b-256 3709932b8ead847fa1001c14d7430d5e1804232a9b90a195ca2b89f9289e122f

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55de544ffb61808cd8e7ae7b8b33a458cfd4558d5029074824886a5d69e25d09
MD5 bf59636bf490f92028e994bbd134a4e8
BLAKE2b-256 3097c301f828d799a83b747e7afa5b3a37f2a2141728a69c9d0055461b415716

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed3c5562363429597db4e60d4db277a48c4536da0e14cc1bd57dcc65df5d9517
MD5 1a25c46bbd128d20573b87bbdc4b4793
BLAKE2b-256 400c5196d22e656474f1f4f2c73c1b113e9e4f852a781b353dbf379a553aa25f

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d70aab5141ee44c8b6f8bb42110531828487a5dcca08eb182b75d764dd8c171c
MD5 411c6d7e01ac57bca30e96631a798c6d
BLAKE2b-256 fb9de2dcc0c4c8a8f354606d5faa2447298a6677217be86092757460ed4ed5d1

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 607a686c8f2fab9d3a87173df19125b50fff295573689cedc74cb4f0f1699880
MD5 4fefd80b0c27026b83bee2386f635502
BLAKE2b-256 ad9109028e34556234945d41bad237cd26014a1dd31664ae39f5b8bb7a9c034a

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce5a2bd3271638f5ccb9a409d98ed0a8a00516f2131049932156e5d2a0b07b85
MD5 5be3474dd2cb0421879e3f66473ae4a6
BLAKE2b-256 2cab19aaf3c086398a8e18a0c2a94ff1ecb3500663103eea221c5cef30430535

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03cdd72e2c704ed9fe261244e5c1b6eb98e9883af197d53339a45e2c799b98be
MD5 de41a320d0807e2154439c7215141afb
BLAKE2b-256 d2531eb515f01da1959ec25e100d15fbb7b40e41349df4ba6f37c6f87e031de3

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 53a8c20aa6b81830eaec8ca890a0f0110ed910f22fdf2ea489e3a54a6072dea6
MD5 f6e5cce01117cf7ad0439faf28c26d12
BLAKE2b-256 923316ab1fb402030110f9df0f77772b91071417286da9e9d6aadedf6bfb3407

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 deb4420f9bc01225f71e1a9126872b6ed608f5880a6756d5e32a2219755ba785
MD5 7704989c80a0ef488375d38643061648
BLAKE2b-256 68c3450fcd1e54072fc63bcd12e10c38552e24391013ea3088cc36c00124401e

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp38-none-win32.whl.

File metadata

  • Download URL: pystaleds-0.1.8-cp38-none-win32.whl
  • Upload date:
  • Size: 588.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for pystaleds-0.1.8-cp38-none-win32.whl
Algorithm Hash digest
SHA256 6a72359d0fc9ae9b37a501137af846e177365c047aa04780833cd1f2efbbdf17
MD5 946d165de9376774ecdcd05ed81f1095
BLAKE2b-256 aea09c023b9f432178b48d739f59e5cbcf12bdfaaad43fa266ff20968ecc4929

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5a80e2a108fa9e81487fa5a5fa86949e93f8795a3d01e64f0fdff92d4cda3af
MD5 9ea296741cc8be41e59a42f431c9fa3b
BLAKE2b-256 4952fa68b927537935ab7863b17683b0d33e7b9909c20f749a746fbeb3858e99

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d2df418fbbc47351af1a098176f3fdfc0333bb68263f20f35e82343f25ff1c5
MD5 7985d7152761943cefd0c5e327942a2a
BLAKE2b-256 f8c2f557b42ad88e50330b53fde73ff2485d6b3c2cd6cebe8dd4a00d5677ace9

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be56a7ec4684483b7be30e5412da64a430eb6836d97e7b13e2ddbf3020b54fc0
MD5 1d4c2d2087d2e359ee07922c2ffbfff3
BLAKE2b-256 4aea0c43ce01c31c1227e7bc896a776974e78bba3a0dcd62b5b22fc4adafb6c4

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6a4df26a2af1542515761d905c9c7c8a4f70f5ddcab536c9b15bfc1b7f1f925
MD5 0198230939318a05dc105d497d477458
BLAKE2b-256 9bbbb62ffbaa102702688b8f3cf122c79a506bb446c8aea5a3d4e4d115890509

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8c239a922f3b4411a545852cbaa38b56251a80988fe6dac68b5528e99022cce5
MD5 f7eb5848afb4a67bef3211537b3af0af
BLAKE2b-256 6f98693e468830819f72db24e8f094acc44eaec6857cb2ff7a01abd97519c21a

See more details on using hashes here.

File details

Details for the file pystaleds-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pystaleds-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e6ded2a892ab2d851464aebed6328890ddb35aec03998331487398fb884bb4c
MD5 c2ef821541828fa16f19ed3a1dd9e1e2
BLAKE2b-256 802e1d51964f6c9518dbbf718963b153ba2b933b09188a3e0ecbeed9df7accf4

See more details on using hashes here.

Supported by

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