Skip to main content

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

Release files for pystaleds 0.1.8

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pystaleds 0.1.8
File Size Uploaded
pystaleds-0.1.8.tar.gz 25.3 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pystaleds 0.1.8
File
pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-64 Details
pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ IBM System/390x Details
pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ PowerPC 64-le Details
pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-32 Details
pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARMv7l Details
pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64 Details
pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-64 Details
pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ IBM System/390x Details
pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ PowerPC 64-le Details
pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-32 Details
pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARMv7l Details
pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-64 Details
pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ IBM System/390x Details
pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ PowerPC 64-le Details
pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-32 Details
pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ ARMv7l Details
pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ ARM64 Details
pystaleds-0.1.8-cp312-none-win_amd64.whl CPython 3.12 none Windows x86-64 Details
pystaleds-0.1.8-cp312-none-win32.whl CPython 3.12 none Windows x86-32 Details
pystaleds-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
pystaleds-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
pystaleds-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
pystaleds-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
pystaleds-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
pystaleds-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
pystaleds-0.1.8-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pystaleds-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
pystaleds-0.1.8-cp311-none-win_amd64.whl CPython 3.11 none Windows x86-64 Details
pystaleds-0.1.8-cp311-none-win32.whl CPython 3.11 none Windows x86-32 Details
pystaleds-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
pystaleds-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
pystaleds-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
pystaleds-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
pystaleds-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
pystaleds-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
pystaleds-0.1.8-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pystaleds-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
pystaleds-0.1.8-cp310-none-win_amd64.whl CPython 3.10 none Windows x86-64 Details
pystaleds-0.1.8-cp310-none-win32.whl CPython 3.10 none Windows x86-32 Details
pystaleds-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
pystaleds-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
pystaleds-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
pystaleds-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
pystaleds-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
pystaleds-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
pystaleds-0.1.8-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pystaleds-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
pystaleds-0.1.8-cp39-none-win_amd64.whl CPython 3.9 none Windows x86-64 Details
pystaleds-0.1.8-cp39-none-win32.whl CPython 3.9 none Windows x86-32 Details
pystaleds-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pystaleds-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
pystaleds-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
pystaleds-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
pystaleds-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
pystaleds-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
pystaleds-0.1.8-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
pystaleds-0.1.8-cp39-cp39-macosx_10_12_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.12+ x86-64 Details
pystaleds-0.1.8-cp38-none-win_amd64.whl CPython 3.8 none Windows x86-64 Details
pystaleds-0.1.8-cp38-none-win32.whl CPython 3.8 none Windows x86-32 Details
pystaleds-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pystaleds-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
pystaleds-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
pystaleds-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
pystaleds-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARMv7l Details
pystaleds-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details

Total release size: 55.5 MB

Release files / pystaleds-0.1.8.tar.gz

Download URL pystaleds-0.1.8.tar.gz
Size 25.3 kB
Tags Source
SHA-256 checksum
How to use checksums
529f6818b699efebcdf143ca059d94ed3fa1781784db6cb6dcfbb48f57f10879
BLAKE2b-256 checksum
How to use checksums
8537c41ea278063512e196c8aa5274428aac002a3f5210d2c9f0ed916db0020e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 856.3 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
bf486eb39d889e53d5bdff2f8b1a374aa6eed80a17dca5d0dc34bba69afac983
BLAKE2b-256 checksum
How to use checksums
b844eadd3e4e14b0426a2619e99ba083c1833bed54f4c3d637cd0d44ac054e02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 965.0 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
933af7ff120371b443568c9baf73fa54ae3890c8328f802833eb43a732cdd76a
BLAKE2b-256 checksum
How to use checksums
79a0626aa59c951fdbec3de9c2a65a0ca7973a13819b581cb412bca8e129c9fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 934.7 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
816d26173a33e2d89826497be9e465cd49683c5ab3e5dfe2bac379860bfe4a8b
BLAKE2b-256 checksum
How to use checksums
019b6e49f8e4d9f040c868af234b0df7376f739d42c3312c2ac3982a77c94f88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Size 914.2 kB
Tags Linux glibc 2.17+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
b36e7f66c73d43a48f23a289d7b22bd50e0780b90598fdd2f86d63852bd9708b
BLAKE2b-256 checksum
How to use checksums
d85411bc904bb70c3fb8e76d12d1be6df5046908a1ff84bbaab2f067104aa9ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 841.5 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
1881f514025eb4b11eb0083234fea7cf7a8e5b5faf07de54e9556e7974796f69
BLAKE2b-256 checksum
How to use checksums
681ba4cf0ad79f508fb033793d70f8b898ab0298bc694da6077a6c89058ddb1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pystaleds-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 862.7 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
68de6f9a3aeaa0426ef47d8f20ba794e42748a3b3f3f09ac2cfa89852e3b7110
BLAKE2b-256 checksum
How to use checksums
cd4c20f5387fb7f171a52de76769ba4d0bd3942918d0c9b10a36577c75d9a4bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 856.3 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
0d437486901a09fb6b03d5009e62caae95fb8ffd9030efe3e2acba15d651d8da
BLAKE2b-256 checksum
How to use checksums
70a65293c65c1fd7ecfb3e2a23f8fae28558134d4764d113c9fe97419c99c12a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 965.0 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
66d7bc379b8b168f9399ec2b9ccb3015e13d7e821f4f33573b4ea0b61edf7252
BLAKE2b-256 checksum
How to use checksums
2f07f4a9f23fc5240aa6f478d86bec0dcbb730e1feed4cef3ef2d26a1a41928a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 934.7 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
506deb607451ab2d8c35e3f9b7e3dec04cb928487e4d767ad7a420d24a9579e8
BLAKE2b-256 checksum
How to use checksums
87deeb4456db43caf789221dc9cc61b67cf31e2f15cf4b1827349b62426eaee7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Size 914.2 kB
Tags Linux glibc 2.17+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
9ad2fe77f0761ca2adb469995ac2f23f1aa91a10d33c70264f69310773d3b09f
BLAKE2b-256 checksum
How to use checksums
0ec0dfcd32634f55a8527ef7fb60a895685a884095bcf9fc968e4eb6cd5e66e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 841.5 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
794440d3c23b01108d6dad5fadba904b43b15e4111411ef81765d6ee505d30ba
BLAKE2b-256 checksum
How to use checksums
f8d6137f24a805d2cbd6e5c5278401c47ec954ba9fffff57c5563b2a9f43901e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pystaleds-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 862.7 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
0a80e20fc86284e7657e88b17d1a9409a4d60eb97362f71602bb20218b5ab352
BLAKE2b-256 checksum
How to use checksums
2b15a5cfaaa54552eccd17dd9d1580439ec0e5a8f48f379314984d0dae17be3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 856.3 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
86fc598e7a4018b61a42473d81a5a0c834cbc62e48dafc8903e0c6683255c8fb
BLAKE2b-256 checksum
How to use checksums
dcdedc707d18adbf2774cf7572a4dafb6b305f194a5743904f43e6c40a441988
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 965.0 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
751b7e87ebcf9071c3eef6cc108d5ee74d10ec364175299948a6339581b35268
BLAKE2b-256 checksum
How to use checksums
24b75affd77acf6c03b1df4f0c52ef3eb3c715f4190d79cb6156ab0560e850cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 934.7 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
db3bcd345228f34ce030c961ab9714a091c603789cff7457a685688bb37c3bb1
BLAKE2b-256 checksum
How to use checksums
412c74f76762efb34e2839565f50bf08fd6bbd5af078c97b13b795b0e55dd8c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Size 914.2 kB
Tags Linux glibc 2.17+ x86-32 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
0ba11232a0b1f417f3940eb3d5fbea3c920888e840363d0be8652faf668152fe
BLAKE2b-256 checksum
How to use checksums
53472c75c0f3eac5ac1057ae4b62e5d2e4547df64480c3c004d639dc3be37c80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 841.5 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
3367ff4101e2e537c1f0d3ae7a0d05be505b200be88d4709ddb5cfd653e5ed36
BLAKE2b-256 checksum
How to use checksums
a0e14654fa0498426e5946ff0b33f6a32b97ade6ee8894f2bd5eb65df6fc2f63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pystaleds-0.1.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 862.7 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
28159edcc846af9226d82a85a8c411b5f69f52cae24278c292f23464249d7ba4
BLAKE2b-256 checksum
How to use checksums
a5f60738043ed3eea9244eb61fe5cc8e178d4004f3ea4bf829f80f929a97ea7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp312-none-win_amd64.whl

Download URL pystaleds-0.1.8-cp312-none-win_amd64.whl
Size 626.9 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
1fc2e1778e7097b57e8d1ab09a8a7711061e5d67bbf07372a52172db17f81306
BLAKE2b-256 checksum
How to use checksums
f057da5ddc5af6b85e59b0b1e610e9eb1779d7207cbe6c2dfe9278560a73ee45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp312-none-win32.whl

Download URL pystaleds-0.1.8-cp312-none-win32.whl
Size 588.8 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
002e858df5707b3213b6471927b55099a00dd71ac77079dc441940917b6c7f15
BLAKE2b-256 checksum
How to use checksums
867641c0c49a715080a859077bb90cde779ca7c73f8c622003a83e6bfbbdb1f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pystaleds-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 856.3 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6b5fa67ed5123631291853eefd624d486d00cf1448c7b285ce86e29015e155a1
BLAKE2b-256 checksum
How to use checksums
3fefbcebcaffec65a62d34fd111abdfc428b1044f4f3ec222772b18955472dfb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pystaleds-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 965.0 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
20e6f3e0e68ad5bc811c99d9bc14f77e8d9dd7a041380b3f7f128807cc38a51c
BLAKE2b-256 checksum
How to use checksums
7acccfd59b32c9f8170cdffe2f8075eaa745e6417a7a092c1bfa9d7d200bfc37
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pystaleds-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 934.7 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b89b0e231b8aa3513d0e3d590a28868f30d242fbc59f919041b61adb187bdba6
BLAKE2b-256 checksum
How to use checksums
be5ee4a43d599e84adfd74803fd336f57bced5770736d30b7f827fd341e676d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pystaleds-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 914.2 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
6c86e5dd2261ea0da3088f9a604c913594b24c699d17fb7676288da4bcac2830
BLAKE2b-256 checksum
How to use checksums
859aa3c9ec8ec1ec77559172f369b3f90143c07711d7f95d5ed08d70eeedb665
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL pystaleds-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 841.5 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
4f31a1be0497d042f2a528903f40767b97256be941fb80229e8239f54137133f
BLAKE2b-256 checksum
How to use checksums
510f1744243daebc50e8ddf644712ed57d5332ff9190b627eb853c3ddca4fc15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pystaleds-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 862.7 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ca4dc8fbdcdeb18fc43b6c8456f0130e65dd85cad9dd943755d9bfcca222e512
BLAKE2b-256 checksum
How to use checksums
76c91488e35b45da98ee60c710e2661b7eb9e86a8ecc7f59275709864521236a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp312-cp312-macosx_11_0_arm64.whl

Download URL pystaleds-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
Size 789.5 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1cbdb5c7a56dea05b12ca4f2af44ecd20cb1228a87212b621d42ac65602a7fe7
BLAKE2b-256 checksum
How to use checksums
e8c47072ab74389ab3940d3cfab81e211e116031dd5ee88b28466df4612c207e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl

Download URL pystaleds-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl
Size 810.3 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
e8ee4774dcd672d1eac0425e4eb68476115a7e60903e8997dff3b5becca2e9af
BLAKE2b-256 checksum
How to use checksums
5731887f6075dc920bd4fe6a6bde9abe4a2dc7a9be6d5259d97dbd71cbf15abd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp311-none-win_amd64.whl

Download URL pystaleds-0.1.8-cp311-none-win_amd64.whl
Size 626.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
8c4e7c60e55392374dea0e7b76662d040014b4a248d376bf37a9f9ec29cefd81
BLAKE2b-256 checksum
How to use checksums
eecfe22368af5cd41075425fcb27d0a51c350c8649abf780abab06f2ec47be9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp311-none-win32.whl

Download URL pystaleds-0.1.8-cp311-none-win32.whl
Size 588.8 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
9d6bc3afb4305f2dc248a53ce97f7bd5b2a5f32c51722138e383a4c0d265aa92
BLAKE2b-256 checksum
How to use checksums
4ed3dc8ac1b3211b51916379559e1a6c3e633885fca2b0cd98899055f3566680
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pystaleds-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 856.3 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1bd3138ea33e98b295089756a27a545f3e424edb5c27434ae990e3de04c55d09
BLAKE2b-256 checksum
How to use checksums
4d9ec17da69d9b5a1223f8ce1a01fbfbaf2042d8971faa366c0e604f90354381
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pystaleds-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 965.0 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
8255d82f999b4f1f08fe8a5685f121a30b5bafc4a9219c2d690049c699ad316f
BLAKE2b-256 checksum
How to use checksums
aaa883d3ce504ea7f154230efb95632614825a1ac2ac48819ef978e29bc657a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pystaleds-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 934.7 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
146387c6a2dbcd9df3d379eb9ac6e2be7a55e68cce92a145b3c5e9cadd19a1ec
BLAKE2b-256 checksum
How to use checksums
975665986a677c68d1d66c8d55091edc6a64e9c78a950b5ffc082a07f8a64f95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pystaleds-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 914.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
6b616003df0d57ae71fa8f27cd8606d7318e71aac83df6d81dfb52c9ef5de414
BLAKE2b-256 checksum
How to use checksums
ba295095cfd3642767d5daeaba5ef7c070c6e09aafd6b340320af9baf404c870
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL pystaleds-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 841.5 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
110b74b221dc06a47a92881ba1289e267f201995269b31586d86b95d723d340a
BLAKE2b-256 checksum
How to use checksums
2f799094da0bbefb257721fc55919bbd1d1f53900f6bf1325dd18d02c51dd4d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pystaleds-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 862.7 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6a892545c5ade7270e890cfb5c5ebcbd7cbd2585481fb42c166554c9307976a1
BLAKE2b-256 checksum
How to use checksums
d2977150549c21d4d4b1857d82e1fe5e2ddc2348defdfb1ee4b6b700cdd77b75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp311-cp311-macosx_11_0_arm64.whl

Download URL pystaleds-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
Size 789.5 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2cf3fc2a4bc48eb65e3a8ce88b6df8ddfe4884b1cfa25bb74b7e16613270391c
BLAKE2b-256 checksum
How to use checksums
2af363a8aeb2af8d9afda04d01f41deda35d99f8aca34b6b419f96332c286ab8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl

Download URL pystaleds-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl
Size 810.3 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
08a5d84f919595ec482ab3139b53c0fbab2ce8bb94d2709c78effabf77cf5b17
BLAKE2b-256 checksum
How to use checksums
ca77083039150d86f592883aff70c096e860158339f4ac4cd8307346dc753392
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp310-none-win_amd64.whl

Download URL pystaleds-0.1.8-cp310-none-win_amd64.whl
Size 626.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
806dc7ca84a1d303367522246b180c335727093097989f15c245c211cce625ba
BLAKE2b-256 checksum
How to use checksums
3c6e05ae82ef1b9c9d8925ffda5a301d385970c6ae58b079eb4e78314dffa334
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp310-none-win32.whl

Download URL pystaleds-0.1.8-cp310-none-win32.whl
Size 588.8 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
80662741537d900e4f11544f7383c8d426b86b9a5018db6cf395db9e4e7cb6ed
BLAKE2b-256 checksum
How to use checksums
ff4c328f13317e3cfb1ec566f103f74028beb33455821554f8481fdc5d81ad88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pystaleds-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 856.3 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e85622457edd215b72ebe5a184bc14a196b5883bb467a150132a251a7cad7fe1
BLAKE2b-256 checksum
How to use checksums
4ab738d7cb5c49b0dd95b08c9b3cf88f3ce699e91ecfae2e801ae2a15b54c043
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pystaleds-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 965.0 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
20e9b47f4b39ea23c5d24ef29ba97e7db8d7ec0f34bdd827450c11a84a3ab14a
BLAKE2b-256 checksum
How to use checksums
596ba6ed37661cb4cb8973d2e1df941d1e48336be4393fc069c6a55bfcbbb2a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pystaleds-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 934.7 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f0a6fd5ff9ad209b9d8ca2d36889c96c729e50d3ce8b941e143b991fbe66825e
BLAKE2b-256 checksum
How to use checksums
af2cdcddb05e4bdda5ccb477b867aa9682fe3131e668289cf07742ff28494cda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pystaleds-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 914.2 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
04964cbf7dd3a7b24f7fd228c7489ea35690c265a460592f99c675d3a8cba86e
BLAKE2b-256 checksum
How to use checksums
f8bfd10f611e5a31c3c783d33bbb9ba465e7f8aa571c3ef919f645cd36121eb6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL pystaleds-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 841.5 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
ba5629455510242dafbbb414229f19cc43f3f025620c31f9026e0524065b032e
BLAKE2b-256 checksum
How to use checksums
fe693d7ad3de2bb0a31c0e4ef75d1a07e7951a5db2c5259a013fc3f58d3526e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pystaleds-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 862.7 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2d367477b3adcc0e94c42854afbfd3a77955c6aacb5a77e42ff04b648c179db2
BLAKE2b-256 checksum
How to use checksums
3a4a9ec13de6796723257b81727d873af7fe85ee0b84050226c458062432e6ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp310-cp310-macosx_11_0_arm64.whl

Download URL pystaleds-0.1.8-cp310-cp310-macosx_11_0_arm64.whl
Size 789.5 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
809dd0f005d298c71ea42bc1bb0566b6c54b1f745b1e74d66e4293f210105d38
BLAKE2b-256 checksum
How to use checksums
568a0c8c054609caa65c18673a7e2a833218aed1fcee404c38be85f6dd3f68b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl

Download URL pystaleds-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl
Size 810.3 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
44b74fea112c027d8795f4a765cb7e7f3404b9641526cbde99f1a79bbf7aacf0
BLAKE2b-256 checksum
How to use checksums
e6d657e617b1c8fb8d66b6e1c9b190e3b8adb8b3cfd1d10bdfa39a47f45076da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp39-none-win_amd64.whl

Download URL pystaleds-0.1.8-cp39-none-win_amd64.whl
Size 626.9 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
38e16281d65a62103e3679e9346b70b3303a83ad72e838ec21d2b2b30b893b9f
BLAKE2b-256 checksum
How to use checksums
3c11a1f188b60f5a1187c34dae5367b2d8ebc6b87dab7af0332508dcaead2bb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp39-none-win32.whl

Download URL pystaleds-0.1.8-cp39-none-win32.whl
Size 588.8 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
c5d3cba404487e4ec7bedf21672b930846d1898b284416025151c144b9464f3e
BLAKE2b-256 checksum
How to use checksums
5b8ddbc2f42eb39136af1777f671f45369eecdb3e719f4bde30dec0ed517e2b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pystaleds-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 856.3 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4e202a2e9c5d0651c756c6350f1fdf32aa01bf979c002589b058f2f608538a4b
BLAKE2b-256 checksum
How to use checksums
3709932b8ead847fa1001c14d7430d5e1804232a9b90a195ca2b89f9289e122f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pystaleds-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 965.0 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
55de544ffb61808cd8e7ae7b8b33a458cfd4558d5029074824886a5d69e25d09
BLAKE2b-256 checksum
How to use checksums
3097c301f828d799a83b747e7afa5b3a37f2a2141728a69c9d0055461b415716
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pystaleds-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 934.7 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ed3c5562363429597db4e60d4db277a48c4536da0e14cc1bd57dcc65df5d9517
BLAKE2b-256 checksum
How to use checksums
400c5196d22e656474f1f4f2c73c1b113e9e4f852a781b353dbf379a553aa25f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pystaleds-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 914.2 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
d70aab5141ee44c8b6f8bb42110531828487a5dcca08eb182b75d764dd8c171c
BLAKE2b-256 checksum
How to use checksums
fb9de2dcc0c4c8a8f354606d5faa2447298a6677217be86092757460ed4ed5d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL pystaleds-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 841.5 kB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
607a686c8f2fab9d3a87173df19125b50fff295573689cedc74cb4f0f1699880
BLAKE2b-256 checksum
How to use checksums
ad9109028e34556234945d41bad237cd26014a1dd31664ae39f5b8bb7a9c034a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pystaleds-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 862.7 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ce5a2bd3271638f5ccb9a409d98ed0a8a00516f2131049932156e5d2a0b07b85
BLAKE2b-256 checksum
How to use checksums
2cab19aaf3c086398a8e18a0c2a94ff1ecb3500663103eea221c5cef30430535
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp39-cp39-macosx_11_0_arm64.whl

Download URL pystaleds-0.1.8-cp39-cp39-macosx_11_0_arm64.whl
Size 789.5 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
03cdd72e2c704ed9fe261244e5c1b6eb98e9883af197d53339a45e2c799b98be
BLAKE2b-256 checksum
How to use checksums
d2531eb515f01da1959ec25e100d15fbb7b40e41349df4ba6f37c6f87e031de3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp39-cp39-macosx_10_12_x86_64.whl

Download URL pystaleds-0.1.8-cp39-cp39-macosx_10_12_x86_64.whl
Size 810.3 kB
Tags CPython 3.9 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
53a8c20aa6b81830eaec8ca890a0f0110ed910f22fdf2ea489e3a54a6072dea6
BLAKE2b-256 checksum
How to use checksums
923316ab1fb402030110f9df0f77772b91071417286da9e9d6aadedf6bfb3407
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp38-none-win_amd64.whl

Download URL pystaleds-0.1.8-cp38-none-win_amd64.whl
Size 626.9 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
deb4420f9bc01225f71e1a9126872b6ed608f5880a6756d5e32a2219755ba785
BLAKE2b-256 checksum
How to use checksums
68c3450fcd1e54072fc63bcd12e10c38552e24391013ea3088cc36c00124401e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp38-none-win32.whl

Download URL pystaleds-0.1.8-cp38-none-win32.whl
Size 588.8 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
6a72359d0fc9ae9b37a501137af846e177365c047aa04780833cd1f2efbbdf17
BLAKE2b-256 checksum
How to use checksums
aea09c023b9f432178b48d739f59e5cbcf12bdfaaad43fa266ff20968ecc4929
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pystaleds-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 856.3 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d5a80e2a108fa9e81487fa5a5fa86949e93f8795a3d01e64f0fdff92d4cda3af
BLAKE2b-256 checksum
How to use checksums
4952fa68b927537935ab7863b17683b0d33e7b9909c20f749a746fbeb3858e99
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pystaleds-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 965.0 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
3d2df418fbbc47351af1a098176f3fdfc0333bb68263f20f35e82343f25ff1c5
BLAKE2b-256 checksum
How to use checksums
f8c2f557b42ad88e50330b53fde73ff2485d6b3c2cd6cebe8dd4a00d5677ace9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pystaleds-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 934.7 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
be56a7ec4684483b7be30e5412da64a430eb6836d97e7b13e2ddbf3020b54fc0
BLAKE2b-256 checksum
How to use checksums
4aea0c43ce01c31c1227e7bc896a776974e78bba3a0dcd62b5b22fc4adafb6c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pystaleds-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 914.2 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
d6a4df26a2af1542515761d905c9c7c8a4f70f5ddcab536c9b15bfc1b7f1f925
BLAKE2b-256 checksum
How to use checksums
9bbbb62ffbaa102702688b8f3cf122c79a506bb446c8aea5a3d4e4d115890509
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL pystaleds-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 841.5 kB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
8c239a922f3b4411a545852cbaa38b56251a80988fe6dac68b5528e99022cce5
BLAKE2b-256 checksum
How to use checksums
6f98693e468830819f72db24e8f094acc44eaec6857cb2ff7a01abd97519c21a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release files / pystaleds-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pystaleds-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 862.7 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
4e6ded2a892ab2d851464aebed6328890ddb35aec03998331487398fb884bb4c
BLAKE2b-256 checksum
How to use checksums
802e1d51964f6c9518dbbf718963b153ba2b933b09188a3e0ecbeed9df7accf4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.6.0

Release history Release notifications | RSS feed

This release

0.1.8 This release

67 release files

0.1.7

65 release files

0.1.6

65 release files

0.1.5

65 release files

0.1.4

65 release files

0.1.3

65 release files

0.1.2

65 release files

0.1.1

65 release files

0.1.0

66 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page