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

Uploaded Source

Built Distributions

pystaleds-0.1.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-cp312-none-win_amd64.whl (632.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

pystaleds-0.1.7-cp312-none-win32.whl (599.3 kB view details)

Uploaded CPython 3.12 Windows x86

pystaleds-0.1.7-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.7-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.7-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.7-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.7-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.7-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.7-cp312-cp312-macosx_11_0_arm64.whl (805.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pystaleds-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl (824.5 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

pystaleds-0.1.7-cp311-none-win_amd64.whl (632.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

pystaleds-0.1.7-cp311-none-win32.whl (599.3 kB view details)

Uploaded CPython 3.11 Windows x86

pystaleds-0.1.7-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.7-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.7-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.7-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.7-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.7-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.7-cp311-cp311-macosx_11_0_arm64.whl (805.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pystaleds-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl (824.5 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

pystaleds-0.1.7-cp310-none-win_amd64.whl (632.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

pystaleds-0.1.7-cp310-none-win32.whl (599.3 kB view details)

Uploaded CPython 3.10 Windows x86

pystaleds-0.1.7-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.7-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.7-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.7-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.7-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.7-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.7-cp310-cp310-macosx_11_0_arm64.whl (805.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pystaleds-0.1.7-cp310-cp310-macosx_10_12_x86_64.whl (824.5 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

pystaleds-0.1.7-cp39-none-win_amd64.whl (632.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

pystaleds-0.1.7-cp39-none-win32.whl (599.3 kB view details)

Uploaded CPython 3.9 Windows x86

pystaleds-0.1.7-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.7-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.7-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.7-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.7-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.7-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.7-cp38-none-win_amd64.whl (632.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

pystaleds-0.1.7-cp38-none-win32.whl (599.3 kB view details)

Uploaded CPython 3.8 Windows x86

pystaleds-0.1.7-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.7-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.7-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.7-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.7-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.7-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.7.tar.gz.

File metadata

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

File hashes

Hashes for pystaleds-0.1.7.tar.gz
Algorithm Hash digest
SHA256 340abc9a38193f9877c80bf4522e0dbef2a7d4a2a9061dceb95ac9f1f99ecb7e
MD5 4bdf4cd18394b38de58906c87ddb99af
BLAKE2b-256 809538bd9cfbbdbc9363cb2d7135d9bbac1f15b5f412d0a1a568435fbdf54f49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ed8acbce9bb87cb4c496c738189e4b3aa6f2deb971c0124293e61ce44ef8741
MD5 f09b6c298c253408bc8a50a356e70697
BLAKE2b-256 f0999ad566a91d97a2a5ce4867f1334ebe75f5a3e13f35f81c0a3d8df03dced1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 93b4c94028b38d9b4e546858be3d0f12abfb8781eafa244a099a87758a133250
MD5 596336401b914706545cb21c3811be84
BLAKE2b-256 a5ebb3ec34fe999921dbaf716c1e7e2712f87ba96f3d84b8ecbc5c3bfd774f5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed5d1b8f298b34a30186299938f07c0ebd76e567c47fe7f324e979a59d60a50f
MD5 774b44df27344404e83af42111e6bf62
BLAKE2b-256 d9110aab62edd6f07717374242fdff519b6c20af4ab026c1dfc12e2ba0da7aea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ceb4c58dea76c5d1aa804eeea6d2c847736e3f70b79187464a9a01fccbc50bc
MD5 46079c99a5c0c232d0997bb7af91f96b
BLAKE2b-256 dace10255af4089125655ad10df48475f98973cc34ff04a8af81cac6f583452d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cfcce437f9a925e55316f10614b420ef9db9a7ab57e37dad0fb95209228d9b7b
MD5 0e449d65304f706face77d7f640bac2a
BLAKE2b-256 96764bd1190a149ba84ff04843fecdc60e96222f37269e0af7071cd13430558d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cb88a0d7605e7d007f437d6984f4ca6c6007c100dbad5707749b6a4cbea5b30d
MD5 f88cdeee517ee919521399a7b4802d0d
BLAKE2b-256 da6c6bcf01e780b0dd8eb641f032e6140f339588f5d85bf4fca2b6b981ba805d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8eae83794f3c2420207c6fc7a763031e2698659d74034244b0e837b37572af4d
MD5 423340160a84c44e69d523d549eb39d3
BLAKE2b-256 c64a3e9496b65d548884971a9f8c3f4ce94e4e44efa406d4ac7207a060010ae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8bcfaea389597ccfdae21dcee962e94e602ec998d85abd575e7b3e6dadac2c89
MD5 b593a8c1bc9920c910d46dc39aeff292
BLAKE2b-256 210f6228c37d1fcd4dd8f87d0a03e3ade480d338a8e5172e6abff2346098fa51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 847741c8745eba3b9c07b46934d0da0af408028015132c9841b8609e9a322add
MD5 634f35be93f44e79c790454589287795
BLAKE2b-256 97fd74da467326242073f08a289ea8cd17e7092d0bdf17c995a7610af9436417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3bee03bcb542fc104b32e04766d11a66f13fc29d439e94b7f847e28c92ce76bb
MD5 340b157ea276375997342fecf8daf4dd
BLAKE2b-256 ae2ba9ea7fe684e45a322b3df8834e1b156831b14a1d62c65fba4ab67e898b69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 188f708a41d95502aafd92ac63cd603ee1a3db31ff49e031ea7caf59c38d5450
MD5 dcc1a40df24ffa1ce77e0110f810b87e
BLAKE2b-256 f989682de9f950ae72c2ec55d080ac827743e5e31cc9f45fdd1484f17d4a8613

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 22796c71b2a4e566144a99735e1391076ddf952c245593422990db1231e04271
MD5 5139ffc1418ce027aa8e4667bf1a0202
BLAKE2b-256 479b0cd5e18113321d2aa9ce415438457770e0b9ff1d31ad30ba097775120775

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7696596b65a92a760b9bf467f0f9bc1a63e4fb4e74dbf9e46fdf3be349ab422f
MD5 e48494f7dbf84fdbbcde2c8a9db9cd10
BLAKE2b-256 4497dca2e871a0f704586489a08bd6533c98897b60ab17eabba83c63441da112

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1b00fc1da917aaf4fed6dccec9053f32f64fccbee5198877d7e517093aa69c9e
MD5 a4566947f1795de81afb599741911779
BLAKE2b-256 ca0284aea9f7283fd36a191710fdefb62e120af4817ea51b46de09d2a85123d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7fe6ab3e5a965886bd6195c5c86ec00ab235fe150502773708085b77934c76c7
MD5 e98048adbf258e629d587544396b837e
BLAKE2b-256 b7492e02a2c6b428b0927ee023277f040b6681244608304531c51ebe1c633d04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19937793b8f231d92177dedd8dbcbffba7ac2766944fea8d934ecdb1e6db1368
MD5 6aa78f323594bba85f2784c78f48792e
BLAKE2b-256 18d2caca5feb52eb446f966e4c5df96343077a299079d99ea8ca65288fd11da9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2ad664a58323896dd9a170304e435025476d224b2ab917c9ba71a43a2054e28
MD5 2429bc12aa27a5984f3b49dad01317f9
BLAKE2b-256 7322cd09c16c5bed6abda870e12bcb9476c4e6c6dd5df11f0c6a77bdc4eeb298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d87685466fb24ecc1f12bfb7269bac27dcd9d02572fd93e83e5f370cccd18899
MD5 bc2129f1ff26b0e68d58976061e03249
BLAKE2b-256 49a283789bd7f900a345ea48050893e5f60e4d7792845c87b7e0590555e178b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 557269a0a6c25841c3f39c576d637675ed9623d6cb3e8f281866e6ca45a6638d
MD5 e6b932d259085cd26f00a6a232efb99e
BLAKE2b-256 a4826168edbb52b66a003e0976dc8f20cf1396d75d985fef14b58cd2d6364b53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pystaleds-0.1.7-cp312-none-win32.whl
  • Upload date:
  • Size: 599.3 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.7-cp312-none-win32.whl
Algorithm Hash digest
SHA256 4a2d2b1102aa4181dacd5bd93ebb7e41cb75be4f57e26a9e644ac59dae0219d4
MD5 269bd38bbf924a8d2c02e3b882e74f31
BLAKE2b-256 242d49047f0d6f6ad6d80b0fcef9efb255e3be64561232e715caa4dc03ec0190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd2232b86a0eca56b0b18ac5f3f706ad1214f072229a929855f6dd372fce3bf7
MD5 202f5017ba7cdb1d5c2104d790934888
BLAKE2b-256 96119bf3ed608dcf452bc61f3416de8049c76651814808b1b1f6cf76afb08747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c6422bd1a5edef225f0f67002b915e5b91380bb87d6d4220618407f9da6c6203
MD5 24357a83050955e5d06cfe8fc5e5f71c
BLAKE2b-256 f3e8e7f06f39689ae1f51a910669bcdb5e2918d865c86feac0176dc2d9471432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53c257b6e46b13d650bbd14d8d5a944cb37edc800b1a71ba0d9a6d4e384fefc5
MD5 7d24c3704e2cfe56e42b3c0b9b5d45f3
BLAKE2b-256 296216b006b7fff273de72dd489905c373ab0b22e2d6d04c572548dd5ad7eb45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e515d19a129ec72c8487859abdb6538997eda9f05d8b7c4058aa2463d4e234e9
MD5 e6d73f017cdc7e1e07bf2764e94bbc82
BLAKE2b-256 f80fb3a080dd89349dda8d0173b7da737fefb16f82617d0595b8a5cd06441d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfa5848903ecae21c46698b49606359e7bac20f20eeba82355919c0e5029440e
MD5 fed61ef6aa92aa287e46c786ad8c109b
BLAKE2b-256 de386ed6d9d5ad7a6dda7bdc2720d138f316a6ecc58ba77f9c430835e0595bf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a5de4ad11932f06d55c092c9ba522c0d9e07ac91adae81c3c95a517742d27e39
MD5 55fcff34a32ed7db97b49b7a776d742a
BLAKE2b-256 0d8c07c1c6d247c4a79b712c22609d4d33b386fd05c16d1c50ab58d2075098f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e3979da7ab1db12ad225e1e7c3cadc08c6a96a862e72637d861e3e5a5e4cfd6
MD5 170a957e3ef1f13d110d1c437d36dcee
BLAKE2b-256 9c1abbaea2b572ec587e65d96edfe1eb4a21f9b7d2f31d07a819d61becda772e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 45ad3c2efef5bf1cf8aa96430f3a7e49c54277af4788550256690b35f7f8ce73
MD5 80b3853c08652e4fd633ec08f30210dc
BLAKE2b-256 411397afe0f8515e25c15e938befc744418feda5a06b3b50175edecb8c30686b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 3d46e978a5e1f7aac740061606a379fa540d147d99d33bd9619641d06154de1e
MD5 2f7636cd555e6957340337c1c02c2d6b
BLAKE2b-256 95dbd56bc92e2c7b812d7dff718a1bac63ebabfff0998229b8a573180259b076

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pystaleds-0.1.7-cp311-none-win32.whl
  • Upload date:
  • Size: 599.3 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.7-cp311-none-win32.whl
Algorithm Hash digest
SHA256 0567383839d9de3037b0958e81880de33d7c096065e10c483e23db8bd119b3f4
MD5 b7afe373ee450c95bc0084e9c4d52062
BLAKE2b-256 b8b4d80418af1280934e2d157ebe60dcebd734161efc7c0a47dacd11350a7f46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3540c02cea84e6ebe13c3d3dd17e76a7a3a147a25894855cd0fabb8a05e9f2b
MD5 58c19dc8d413427fcb93f69b352319f5
BLAKE2b-256 f7dbf89b2d722d9c7a108754464de1184ebf7a53c8d6e8640adc59b003da1c03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63996c1552b742037ffc1e19c2e2be46d80957f8f29b749701cdfc9dee795d4e
MD5 46e77276ba986c31d60daa555e51e6ef
BLAKE2b-256 9ff901d8ce6f98334fbaa5b34a07207b2eaeadce58d964797e76b4b5e49e8ab4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f7c2a7cd948e7159c3ca2ede35dc3b397bd8fbe84ed54938b545b3309c69a85
MD5 7bdd83012f38e7d71e888665c8697ee3
BLAKE2b-256 29f5409075e87d2a76341fd82826ceb3aca1f7ef93595921487e98def7bbb4e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2282dd2bb618af862ce42c6de668e0301c2f09a44dbedf0e7cd9a7502829457f
MD5 337ef69d367f359f5207460b501fcc7e
BLAKE2b-256 3ab9213f72d07071679bf3a9ea3d83b8c3fc050073da7c78b1f8c11714f1ce99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35e86945133dd41f1a3d31f60c75d1e6394de7e9716a6b8b43bf58674894af2e
MD5 f351967589a85b54d7e59a4ad5faf5c8
BLAKE2b-256 20f1914367ceb92878e26824d71349f186f662263001e99ff2949ee369311b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9388e8dca60db276bc8d45a400b64d8756126c516603c4c3fb45b74fa4aeb794
MD5 c08aae1b94806f789e750153b988c8f1
BLAKE2b-256 be77d0ae7f70d2ac1fba7b57a0f85a50dc46172267ad6d585fa50abd489a1044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15c5b2df6655cb23032ef57cc846550f44dccf0ce1c5eec716e29ac0b4df8ff0
MD5 afa378c821c84ef3009d385b67bf732a
BLAKE2b-256 710e41d7188c79e469a63937a951fdf0f4f9945c9786c87536f2185e0aa1feb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c70809ea58009421d5d7c16d380db508e321d13107629fbb9d704e55716f3435
MD5 c17fa5643ceebdcddf9145c96dd1acad
BLAKE2b-256 faa69da67359f731fc4f42c4f51bd21f1845ac7355526df26ed4eab042ccbd9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 85f5c42d823235b769f16137bfc7d1b9ae5001dff70d3d07b1cca7de95b799b7
MD5 0fdc992a814ba8513bb1b50ea36b25f8
BLAKE2b-256 abdd850464b5444d7e4c6a6e0bc04d6ab0e17708a30e3f8eceeb2d49df610b18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pystaleds-0.1.7-cp310-none-win32.whl
  • Upload date:
  • Size: 599.3 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.7-cp310-none-win32.whl
Algorithm Hash digest
SHA256 2ec1274a7037c17923a87a1445bfc9dcf754a328b692ee504f6b9d1b64d30d28
MD5 58743d2f95fe705d980f88d822e7b877
BLAKE2b-256 01f5caac7772bae6a1153b3672306ace1d902411cde40140b0db2a3d8283bd11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 daa61244d9c40c2e46be512b09f09b58dd51895c6bf2f188f9841068ba5d1c15
MD5 9ccd07f204f9d479c5b938acb50b01c7
BLAKE2b-256 00d1cee497f566ad829ad2671b6ed1bd14a91a85760014afc773446d89517845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91bda39ca6c21c758f5ffa0e4d3164e75111b4c61f449ecf0431ac4a5bdc722b
MD5 e57574caabd169d5270e7cbb0f489075
BLAKE2b-256 ce1a6b8f5cacb51301cd34388e5e0585b7e3d6b3407927ec39b001d29e2c1f7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3edaee26b9189eed3e6bcfbd5f75c6af6d5d0b463c06d8ca92e30442abe2ecc
MD5 df6cac14bfdc4869b9d91e0abf946b5d
BLAKE2b-256 9ec9be9166f0f8560c0af05b73bd4653cc27ea30d4c0d94d3f0889c0bce4dc2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9055da68077a29cec6e0c3c855abf98a09ba6a61c0d07403c41e7b788ccf4078
MD5 6899d930e55064941caeab52bb5832b4
BLAKE2b-256 7e4a5607ab8b473104087fd37adab6cf5ab2b8825500e20c5a62e43eaebf908c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86f6b7bcf161ad49895a813eff673827a09f4ca3e269f9bb1226ae892d1a2e16
MD5 3fd1eea9178d8a5f2c130e9b7b08b678
BLAKE2b-256 f7f5e193fcea0be915fea87e1899bc31da37ecdcaf3f0e3f687458582b1465b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b8d462eb5c2783ac8d9c8c5f997a82857ca6402b5954af7f23b2b585e15af799
MD5 aea5856468a81109201e6018e7d581d0
BLAKE2b-256 da7ec22f7962f9770671a8adfc93d41697c02b0dbfdeed2200edc62a30d214be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31ebd8a7a3b1f847d92056c67ab6c52b5e6fa014d47a83edc7b5f26f4d68a07f
MD5 c6b582ce76a351dd7242ea637d6e8213
BLAKE2b-256 bb099b822bd63555eaa152a2cadc17136deb904502c4e505403bf62ca216ef97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e91b6d9ddeec9f12c2d660e46da31d361297841a01681095ae424dd96db4e4f
MD5 b6fc2e51d978a745f8b2949e8e9e5175
BLAKE2b-256 1b0d7244b2c4a7309432e9b381ef1046e8da74238c269716763bac782b194dcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 8807150edb6dea600d4f583fa66f2992732289f9f0c5bf7ed26f67e3f54ccbcc
MD5 acb6b3410db2007993d6ecdeac299169
BLAKE2b-256 fd566f918b90234d729d9c0b565f38af8aa0e393278cfb892e7405d46cec1a2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pystaleds-0.1.7-cp39-none-win32.whl
  • Upload date:
  • Size: 599.3 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.7-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1295a06c54d4e4bc1635d16c820b48b10da5628a6c1ec0be43d8b4c4c3fbfd44
MD5 322edf39f99b95a56f7283ffdce53c5b
BLAKE2b-256 1eae47b192e3dd34d128e3880e1cae7b693f613ddc7d78d0a37a3dea0434dff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 022febe00ebec367e5eef0877d4a4e446093fd862bfcb57c5618be1905881070
MD5 05cd163001abfff0c7729784b60ac8db
BLAKE2b-256 fa529b4d5ef026a1e9a4502b05a9e3521c8b465917fc1931509f412830b1613c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 040fd95cdfef56a8beec81f3a02a9998b36159dcee16345a92d915c717268701
MD5 451b6fecf33d96e5365d802defb00473
BLAKE2b-256 ee6b159a611c745290237d22ff7b4cda23ced05df6aab2118eaccebcb02cf772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c6d5557c102c779b47a7aae76203d67dbcb8eeab4f419728cf68bb32855315a
MD5 4a90258b9cc2741fb1591b04b954c27b
BLAKE2b-256 df2028fad2eb28f1660c644664d0ede71b970f71d27dbadebb6bae230b742d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69ac9a9aaa5ebdcb7b6748fb5d2a6bae2157155d7fb51b4078b97d8ad76f0ffc
MD5 40862d436b0e25a9918d37a10a68bfee
BLAKE2b-256 828eac727f5b3a78209f238914f4c57b79ce3d27fbdf6890aa9e49dd7fde4184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38246240ebcda56141955128ac8ad60bc261b14008ac04b83a31ceb3e2710953
MD5 819dfef19a32d23832ea371ee6703550
BLAKE2b-256 d203e1dba519bdc833c73a1b54525654b428a7048a9b9c124e804b87978b9dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6741a4150e0d8ea031706a3eed943c943a6ad8ef847837c672de1d6d0768f395
MD5 bb28b83294ba9cbbad1d83191675851c
BLAKE2b-256 fcc7cb32cd3c8c78c8b0fdbf35d6ce61030e4f37ee3b3a9f494ce2f7a35a70a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 49a6c9999a0555fd5db538ed89761c0f06cbac5f7528bd2b1b492002ab278446
MD5 9c041d9633e42927c36aa96134087336
BLAKE2b-256 9052ede8a3d57c6baf7c8391d2060891e5e9aeaddd003b9168cd4655c6353260

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pystaleds-0.1.7-cp38-none-win32.whl
  • Upload date:
  • Size: 599.3 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.7-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0fbfab84e2936128a34cc8f8ae0c71cd6075a02014005f14c0b31ef7dccdc67b
MD5 c3e6bc4a42c2ded6712c7a177e2458f7
BLAKE2b-256 9ae5ae80d525917db78f0d71cf865964e8891dae81a282163e59468714dd5eaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa8db0d0da27f1dc055237c449c9cffd2edbf0522f1edf15e75c1e642d03719c
MD5 a277814c416539a9e5e6fa8c682e7a9f
BLAKE2b-256 192c8d6ccb41dc4dfd1b00d0f73cfae60bdf0edbcf2264696feffb42b602bcd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 634688129915b6f881b0086f53f9f9611c1e13b335816ab2f344a2b877ecaa2e
MD5 af08a704c1855ceee3edd8f219449b07
BLAKE2b-256 0201faba8a63bd64deeed7d903210b410a9d69858fd13e600914522f40012311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96acd20bfa5e6741a1ba58977245ee0b604ee299ccf055661a636fc602c88098
MD5 7ac4d31372df5e645c009655867ba072
BLAKE2b-256 703d3afd370cba993ef0285a7c7c4ea11ff4abc3512dbd0fb93cd43077fffeb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 479d3f6ae6c4c4d08262e0e5e937762a8f24e5afb442054d0103fdbb06f6f8bc
MD5 7d4fd89188fee51f5f4f55a4b7db249b
BLAKE2b-256 510429226a4574b52f29478012b79969d05fc046186ca15be2f9a376f134886d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24c97cc4f1f9975b3be750c5d11f57a2564f2e6dc07d8360022d2bcabb7bfb0f
MD5 622320ab8251fba279d05b2ddb42b75f
BLAKE2b-256 e47d8252662fc2a08e6c2f4bd5b6682b21a373d9795f30e8a49e79526ceb4db4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pystaleds-0.1.7-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 25eaac94cbb0f78a9b12090e0899562d2805e4cbcff9d47e91c6a11451557c3d
MD5 fae9c5d894d87b7088be876a6dd89550
BLAKE2b-256 81e9eb6ab2b19d1ed33e9a99b32c8194e01234240c7b4f8d5fcce35a5c496433

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