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

Uploaded Source

Built Distributions

pystaleds-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pystaleds-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pystaleds-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pystaleds-0.1.3-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

pystaleds-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pystaleds-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pystaleds-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pystaleds-0.1.3-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

pystaleds-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pystaleds-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pystaleds-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pystaleds-0.1.3-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

pystaleds-0.1.3-cp312-none-win_amd64.whl (623.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

pystaleds-0.1.3-cp312-none-win32.whl (589.4 kB view details)

Uploaded CPython 3.12 Windows x86

pystaleds-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pystaleds-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pystaleds-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pystaleds-0.1.3-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

pystaleds-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (793.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pystaleds-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (816.4 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

pystaleds-0.1.3-cp311-none-win_amd64.whl (623.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

pystaleds-0.1.3-cp311-none-win32.whl (589.4 kB view details)

Uploaded CPython 3.11 Windows x86

pystaleds-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pystaleds-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pystaleds-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pystaleds-0.1.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

pystaleds-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (793.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pystaleds-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (816.4 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

pystaleds-0.1.3-cp310-none-win_amd64.whl (623.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

pystaleds-0.1.3-cp310-none-win32.whl (589.4 kB view details)

Uploaded CPython 3.10 Windows x86

pystaleds-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pystaleds-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pystaleds-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pystaleds-0.1.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

pystaleds-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (793.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pystaleds-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl (816.4 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

pystaleds-0.1.3-cp39-none-win_amd64.whl (623.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

pystaleds-0.1.3-cp39-none-win32.whl (589.4 kB view details)

Uploaded CPython 3.9 Windows x86

pystaleds-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pystaleds-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pystaleds-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pystaleds-0.1.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

pystaleds-0.1.3-cp38-none-win_amd64.whl (623.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

pystaleds-0.1.3-cp38-none-win32.whl (589.4 kB view details)

Uploaded CPython 3.8 Windows x86

pystaleds-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pystaleds-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pystaleds-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pystaleds-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pystaleds-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pystaleds-0.1.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

File details

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

File metadata

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

File hashes

Hashes for pystaleds-0.1.3.tar.gz
Algorithm Hash digest
SHA256 f2d7ff202f596c03f4ee48debed4b4f2af3ea74bb7b3f21e59aca04545b07a10
MD5 a098043637f75abaa8efd6b0d73dde5d
BLAKE2b-256 45d1971d47b9d5cb7aaddfed80d87c25589f8b7d809c08cb970139264ed0e237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c25066d1768c9d51daea73ab248cb7bd8e7a8356b430703527fa27d61bd4b0d
MD5 d74974363b11a10bed68f0fd9575db37
BLAKE2b-256 0fada56a7fe7e3468aff3df41941557789c9ec20aa73ed99e618d7d1430cd9a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48f70ce2e27348523cd56f2e00e69d7d897458f1e6d19700affc43a870f398f3
MD5 3b2cb0350e85efaee0243e80dfcb7adb
BLAKE2b-256 92ecc07663a0af92ec337d7f36692fecf8f098617dc4dbdb40aa5d99a3a00ff8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6c433b8e61f9fe0ac153e8aa0fccd32830b84292b601a9daf68d9200f632441
MD5 073154d086875ab1ea54aac9522ac91d
BLAKE2b-256 53c36f86c965f399d8332f17c5211f029407c5efc273efa72a5a45aa112b7e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a7299995957173288211acc4147f375ac05a859719bc21c94c1601cc78e7ad2
MD5 a0113ae223b91fc2540308bbdcb2b965
BLAKE2b-256 25a26153b49d90cfa805b316cc03b6da457771e914e9ed0a2248fc3f3569744a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b241c57d4c435901de03afb1679a6ad154bb97390cc3e7c4fece2b94972a600
MD5 4c16a1c3c0d8092f7e65b8be0915e82e
BLAKE2b-256 45ea96279d8629996d914670ee1005ca6d1a5aa39dfc009f5eda4a4003c9a890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 522969ed981521c1a7a6f0d547826a92db303d0a34bcc9ed04158df9a2a90467
MD5 d724ee0ed7a77079155acc161c9ab9f6
BLAKE2b-256 1a405db01e207647dd8d78a88cae172af1d62470c6655ff97bea60b2d05f68fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 630eca0e8df61164c3da819091009e3079c4f69be5c2f977d4836689b88f89b7
MD5 9538e0596c9c14264328d9dab92b4f40
BLAKE2b-256 460989445da8a9eecaae736ec5a7096ee7a5466b41016c2fa2819c0dda3e425b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c6cbe26c73c785ea38a2611114e4f5abcd0880fa27b5241d782930488614b664
MD5 b5c3a6fe55cb0cc8dea738ca05db2186
BLAKE2b-256 a3e93069c47f93b4c43021db15c566adb499165135226327ceaa2d37064098bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10932a2309a2437ec1a414753fe600b55f9f1b70214d59ae9d01aeba02219b24
MD5 3bec425e18f6b1cefeb66f19daab2c54
BLAKE2b-256 ff461e8fd8d4abc7e219307fa2acff401bdc85130dd55dc3b27ddff2ab377bc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9508138218139f814c6d22d4ec3458b2d0f78e5ad5e3a0a39cf73f06838bcedd
MD5 8c6b9840713bc9c239398286503d85d1
BLAKE2b-256 1d766695c6b509e6876bc56c0a80b632156a1b443c1b7ef097a4a97a39f2dbfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2754ce71e4e5d4718cf9cd1c3d531d19271cfb0ebc35198b7e2d101250a3f321
MD5 1efb8af52c49ab20dd3d079805d3b7b0
BLAKE2b-256 77b73c96bbb2719f5af098cafd11a69e71dfd8126e594861a59856b34cb7aad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2712f37ebd82cc60ac7cf540d6076b12c261f3244e773e6305514aa0697c4f68
MD5 b60ccd2f45a599df5fb5670252eb87ba
BLAKE2b-256 d0beb526371343eb6645d3fa4120e7cd25737f376319dcb3b02d780caaa955a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 591a6083fb38428220da86f824928f4f02aac6ec470382b9b5b287d30f3a9054
MD5 6458d281baaca02ec64cb6386b7451a4
BLAKE2b-256 6860449fbbb280cc5508a69b314d9e63ef4b7029c429ee65c9cdd6e2d18aceb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2dac73d03bc1b6f57e5e6ddf5167841b60d9db3a0f0fc323db713733b6e3ee79
MD5 1712d20828e8ec88f7d014a9c3f91aab
BLAKE2b-256 b5b78b69e0529a77c83c66127aa90478abc4d0d6a24eec3499797e3f94c5902d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 75fa2454edec581ba45616c99893c254807e006174dffc245784c2ceaca513b8
MD5 ff7c96921e646b6441c0965cd7526bb3
BLAKE2b-256 006db7fb2b2d453d6493ec7b3a74d76b8a422c60da73cd986979542093c52d8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e76032d2dff3036cfb51aa9101bad2e0589822dbe0d665cc6b5a7414789fb715
MD5 9b07d0d9d7e35ddb657da11a7cd6ffd0
BLAKE2b-256 81b1a4505ad41a13a8274a11eefaefaeb1f0c158bf66343e10e04e7439eacc5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6d1ae6aa8e6834dbfa67d065f2ba10ffad479081b704a6d8c14aac8db8b2a99
MD5 367246870d9433042b6c0814e8dafd5f
BLAKE2b-256 63b3e51433e83885837d54acb21deb45d23caf22c7203046da8121d29dc10db4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 93156b2ed7b0ed93b0f9f68e551975d742566cd2f92dc8569f827efc1e076439
MD5 b94cac7925e38cf40af4a09a23296771
BLAKE2b-256 1799b3e7e81ff7d93b2a72d7177c620ea244f67dc902ba970c3a06021352c272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 8b350ac144308a791736433ff78217525ecf591908be0529c8622a0be21d3864
MD5 cd21830c1093293296bf68a14f1616bb
BLAKE2b-256 dfaf2b42bfd5757aab05f69b19cdd3c776d739dc5a5db5ab8d923cab47c99eac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pystaleds-0.1.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 1c63c337948bf23bc395bf371ed6fc6a5b91a3d6d2b1771c4774d5b3ad7a453f
MD5 4d7e525c42f6607d39567e2109fba895
BLAKE2b-256 945000587f5f5982dcb828d8576b7a8fb8dee1de7167640052da11f2f3d03b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0a2b6bbb7e9fa631237763b7b8c94c7b1bdfb9a15ba9dd0d7dbf48920d9d1e5
MD5 676f502de543f358189cd525e620fcc5
BLAKE2b-256 bff17e590e7b6b476fc84b1c830136134699f7fee5d496538da25969517c33f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9a7724cdc534293fde999705848f1fe6d62b4f618d949279a4640c4b241369e
MD5 d9e51740a9b8e495131e44794e1a3696
BLAKE2b-256 7a640756fcc608fa1dbfd63aac6f2461a926f5c5ed5ff38cb0f88ed2d6e71557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 60227176adb106cf217710852e2af50ef7da4235110483d972f4147d59c95a05
MD5 0b6bb3060cfaea0c919b2d7ac7209a8e
BLAKE2b-256 6796d56205e055d9eeb33e3990c69eef7d077c9b4facde9fdd8617085956c22c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ee7f0cb6468b05f633d1a8af416695416273d69d019d33401b59bd0326f16d1
MD5 00585ee3fef563cd8df70fcc35c3356b
BLAKE2b-256 0bb89babbb78811efcade639e359a72947852b6322561c86c04026d855ad21e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4760cf6f9f74420408576a1c1cd6eea2283a90ef4023d6ff7d23ff683cf2ba90
MD5 c8390402b258b4211534440cab1fd094
BLAKE2b-256 afd8a6fc6ab0822f9761b33cdc25c56b59013c5986ba878584aea05cd77f2a2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6a802b37aa0ae1e3fd26aae09185ff707b95a5df6ae6962fe6d86429cbcdabac
MD5 3cf29822d35b2b71bc737ae060f78b6e
BLAKE2b-256 6442de5308d52d208509f2ddd6ad75969e68f342cc9ac46b2d51725b7d1c04f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62b518b16f58d364d979efd0ead43e225e29c1e11c8a0c89c61e586eba05f7e6
MD5 331e1ab5bcd4832958a55e9d199483e0
BLAKE2b-256 851b0c98ffdf718754c0b306ef77f7ef63cf3f71ce42e59fb0c5877be2bc485d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 764aebc4404d1b6a96797642d02cad60d88662aac6159e8359dd05ecc29b6317
MD5 17e522ded9dd8cc37c81f32fa0ae77de
BLAKE2b-256 f682694ad8a96e9edb27de4861b713d78d55ff9049f249a1c5b20a8b8c7294ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 6b4229d513725552d9cb01dda522b997fd9f68dca45cc827f876fde895fba02f
MD5 ba828aa38d9882de6a25d80940698973
BLAKE2b-256 e9de47d1e4bcedf52ce0d073a060df04f19534cb7fea7e7af1d828f8e0019f39

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pystaleds-0.1.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 3b1d63b8cf5704d4022764d05dc9a512714b83d45195df3c677153d4e4e23f29
MD5 ad83f986c4fa41e1cf601f39aef19515
BLAKE2b-256 465ab9bd25e148ffda1233fa9231351eca8d4ef65c9846832c60b7089fb87693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 251fdc49c383fe2714fd6aa3fe5575daf9a3c235ced5873cf456e77e1e59e24f
MD5 8400109199eadc837919a6f899ff6323
BLAKE2b-256 4ecd3bb4364a262efaf284cfb1fb7a3fdeacb29511c780355eb16cf9ed3fb2df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab0ba959737d4bc73282198420ffa3d33185f97f8d263060c36f3e0ac8a3bfa7
MD5 1609673ae10460cd71ed1c1e071af5f5
BLAKE2b-256 ed1a84b96335983401c1525b1ca56d58c3daf1ff1139628b7766e904fe141232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15b1f3a68e0b2dca6f3a4e7a38c1b9b5e2df54af3e6fd08c7fe8bbad52e93f38
MD5 6d4aae0480464f06b7e0403ba2007492
BLAKE2b-256 8649818661eb4c554918879f2df1bfa30b196b9f293915b63691cfd0c632b39b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0d12774eaff8284bc60a703b5a9b74b3f4e72a5b2eeabdf4c2f28d428132d721
MD5 69056ad6e61a9611cbae983bc059ee38
BLAKE2b-256 a206419d7420d08b00b039152e6b794a4663f8d88d0e2a78d676d249758025fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd2731d4917789ff2e2f9a1ed1c689e3603465f24e5bcdf5794ee11145e54402
MD5 f3f96e982c208e9d79466e05773c0b44
BLAKE2b-256 fa12b5c68222a1104a2e74353ddd96460f88ca19dbac8cd5184af5441f81fd2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 61a028bac6cd96e5d973addc3d33b207df3784bbd05608ca08a5597029eb448f
MD5 ce65b2862d9fccb3ff4a245da4acbc5c
BLAKE2b-256 cb369f3bf59d60622f0dfafd74fe4fe29866416ca42be218057f47f89a7eb567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f37eb91a71b93e8febc06526d696e2ebd964f3845ee28850e7b2228d447b1391
MD5 672ab20dafe9cf487012434c97158fae
BLAKE2b-256 aeadcbd91419ad4071216350295518917b07141f012bb12cac8fb8e87b5ba4f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e4106d88fb8225695db920de9b3bac90e78c95cfa3d87da7f35beaf16894543f
MD5 b5b0aa4b7c67fb2bcf9ee9d71628a8e4
BLAKE2b-256 cd4a932f785e054beb2e6dcc3ddd91da51b260589f0a2f5837ef4b73d07ef2a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 457b2276820b52b865ea82393580d35ef3ba9835456f0cf971cc98c041862961
MD5 74fdb7c32869c738be00f7a23b91400c
BLAKE2b-256 d4fbf1f3a376fc5d0b0bf98b09438ba18b8207c75c545766e0f19f36fae4f3c9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pystaleds-0.1.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 08963be698b9242bf8370eecd427af7f4e6ef36a4b51010b6ce65dd90cbd2c52
MD5 e93332093a48a524691aebfa25dea956
BLAKE2b-256 d768ba92a4d150d5af12864e11d52163df8e20666255ee36ef4421e04267ce7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9285a20671723bf2f408aee3ece83f9be862cefe6afe2d0e3134fe5814632e85
MD5 51550cceaaf1942ade8c2b3a3acc430b
BLAKE2b-256 259ee06b8dead6b114b212c579d79d451ad58f15cd188c867cac4185f97abab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35ae60ea0d89dbaa5f8afca9d177747dfb0542711d9d7d5f3df67172b3526562
MD5 bc9103faab4de3694a61af809749fe96
BLAKE2b-256 50cad2fba6bd9a96aa961fd4552e80495e2e20a9cd6362e440215d512305d51a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8624072e1b59dc63518e1b24de4fe02a403bc58304f347974cc740e59aa68c37
MD5 dd597885db61fab8b8d01ddf8c378bfb
BLAKE2b-256 30f5514b770ec189ab92dcbae55949ba46d4bdbe486e99cb569d34c0cc2849de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44dfbe15665c0ac1f16519b464ad0eaf29d2eaef832fd088510ad7abb317db84
MD5 8cfe64762b6d16c424b910a596958a53
BLAKE2b-256 35de223ba3218582d73d97926daead023008e28a762a2a866fe399454e310a13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a84b8a695dca28892d56844f372437e8e7e0148dda9f273f7017aa43b85fc54
MD5 37bf533ee0b1f9032676abeaf032fad2
BLAKE2b-256 202141ac9ecf556047c3553d692830822d2306de9d34d7e0d1272e1bf226579c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d4b84f798303facdc0928454f884bf50114ab9c6ee3505c4854c1bbcf423d40c
MD5 8e113fa9c3823dceaa75c39e08887b9b
BLAKE2b-256 d540669158faa342e8998c858a776ba1156596d2d12044a1e538b035141be5a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b53724a841f3bd1436e20fecca301814287b88b93511dc46786b953f9ce67410
MD5 6e5fd981bc46ea5bff630a788e81af48
BLAKE2b-256 f98e671baa034d41041b10a56b0182010a192c6cc9cd83238d654ac366dc4af7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ebd9fbc807a190a3e4de8ea15a23fa32a8b218cde18a605358564d8ec4367bfb
MD5 b85e7751fa87bd059d49a10ad3fd4cc5
BLAKE2b-256 36206cf43e0acc1486b02748e574cb49f695957a84456bcac8956ac5e33352c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7afc9dde4fb6f870c53aa3dbeace0d85b07c7b003c78850e02c59ef74099c8b8
MD5 c6804f58db1e2ae7905f8d5151dac10f
BLAKE2b-256 d0264f8bdbf328e7eeac13ca9f6f54634ff533439778d49d7c5e92a9754cfd1b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pystaleds-0.1.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 aa853471067b76edf71d7da9cafa16339972f1a60d6025acd4c59485374d5075
MD5 0c5090aefd0dd509bb55f5ed5b1ef8ac
BLAKE2b-256 8a30d3fdf9e5f3ab772fee021d7a9ac5c29748c3746f224fdf1ffeb2fe9d1d9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77645c9e48bd31e2c272f2a5d92375379624c76280cafa4b250832951db73106
MD5 a75cfe6ec802fd815fa425b661ea94b4
BLAKE2b-256 a89b5ed7087a91e2830045b882d76f9b1d06c372ee4bd2a69b22c130d3c5ae29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d2ab72a6dcb0c734b5a411bfe7bfd614435d1dbbf0d9f82e25180337d6a3ea8e
MD5 9bca1e1ec65896ed0fe5156d15eca274
BLAKE2b-256 db27707cd2149de9f735ee53c85154cf2e498d055b85d468c7891258a1738119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d79bdae9b3033f2c2bd76fad1c6e94040fda20749dd0472c0791773a5ad8854
MD5 3d49725c90608944f0ce3fdadb7d4ed3
BLAKE2b-256 b0c75cf4ec83d199f98115264a2ade62783b449e3b4fa05c5b97034da435d8dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa3a9862b8d89e7e8e33b184318816f8cd466f3cf04953a81367ff280d29098d
MD5 3c26ffbe340a48fd0a16583b71fabc33
BLAKE2b-256 c724e514c0ac357a7841631e45433722a13ca1f2c2c5d91745203bf064b80167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bceb1ca03139359c854b9737cecd8e353a17552bf4c2f118557424c379faf25
MD5 71023dc6b3cffe0240a3c3e108df6ff2
BLAKE2b-256 ea925fdf5de19e082a71349808be5098ac0353751af8455c5d1473e51b85e69e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 65a8a08f7b43e5a5b84250c71fc7b08df3334c5d8b3f4d6ca234ab9cb3c67404
MD5 faabbf8b2248e0a0ac295d3dccf0de14
BLAKE2b-256 4a8282346e7dafaf4f52f3b97d67617d6b69e6ba79e78a7354370542f45cdb53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 68eb648d604a720acc70c7ec159dbeb83e7bb71bbbb12b7dd1f5edcc46aaba2f
MD5 5b3af5ac01a60b0999919f4e3661f12b
BLAKE2b-256 86fcfbf2d55e43a6eb1ee0575c40c05439938c6641443dfa8246999afefae302

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pystaleds-0.1.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 edf975b16c40648b62a125aaf186a80016538d8387e1bfd5a2de8ae2078497d8
MD5 9638f61874db9b9e08d1d3991dfa1a9b
BLAKE2b-256 f0883174b662211fdfc7183c762fbb42fccae4fefbe2ac863262ec14333c13e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42359e98ecfd80cb39be3d136ffa9c2f0a9fb38cc1f35b2f5be125c5e8386790
MD5 e6d364ccc2286f7d6dabe34f223b892c
BLAKE2b-256 e68855efc6facfc461124e37b7ac82a72a81d0790bd3dd7e03903e599b8144ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bcacbbef601fb9a6d40571e33966ffeb803f18cf0550fcbacb8b07300cc33e80
MD5 4b4a86cbbddd54799bdb0e8d43800a12
BLAKE2b-256 d1831b210e2aaaed1cce2c4e56c4ec80afda65eb787f2b46faae59cd32209ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e75b379d64e90fbf6ee283b03c0a835bf4aeab24be90e0d08ad11d9cbfca7fa
MD5 e9b8e12e57f999e6b3a88575a8d7eb7b
BLAKE2b-256 91a4958b3f761dba89b773462c11f6cc4a06530bc06354f8e5a6b66a809c777b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e178abfb408cc93f13e48ecfdcddb82818643130162e338e50c3638a8b76d11f
MD5 981553636ab5d43ecee825d415bb808d
BLAKE2b-256 7d9c6b7166777b4862ba881370e755565e7cd9838c5d23800dda28af0a57ec77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 581ce9aaa40238cf60cbc1897e6bb8307b8395574148f7751a614afc13df77e7
MD5 533622850fd1dbcfb07ae5835dc49b0c
BLAKE2b-256 bbdbded2efe85ecbdeaeb66e89eaf0c4bdd6a21a60cbe56406df744a4047c42c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 71f352373376cffc668803e453e8b7b8d2ae60fb22775ab62a72bfddbd801818
MD5 1d1735ea015beb10f85425cbddfc6c2c
BLAKE2b-256 5215718b838f4784455dc2f1c9081f2b70f949b2f4ed3d66ae00009f6e3f92c8

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