Skip to main content

No project description provided

Project description

incstatspy

A Python C extension for efficiently calculating statistics iteratively on NumPy arrays. This module provides functions for computing mean, variance, skewness, kurtosis, and central moments.

Status

Build Status codecov PyPI - Version

Features

  • Compute running mean, variance, skewness, and kurtosis.
  • Calculate central moments up to a specified order.
  • Calculate standardized central moments up to a specified order.
  • Determine minimum and maximum values.
  • Designed for efficiency and simplicity.
  • Handles weighted data points.
  • Iterative update functionality when calling on multiple ndarrays of compatible shape.

Installation

You can install this project using pip:

Using pip

To install the latest version from PyPI:

pip install incstatspy

From Source

If you want to install the project from the source code:

git clone https://github.com/borchehq/incstatsPy.git
cd incstatspy
pip install .

Usage

import incstatspy
import numpy as np


# Calculate mean
ndarray = np.array(np.random.rand())
mean, buffer = incstatspy.mean(ndarray)
print(mean)
# Update mean with new data
ndarray = np.array(np.random.rand())
print(mean)
mean, buffer = incstatspy.mean(ndarray, buffer=buffer)
# Calculate variance
ndarray = np.array(np.random.rand())
# Mean will be automatically calculated with variance
mean, variance, buffer = incstatspy.variance(ndarray)
print(variance)
ndarray = np.array(np.random.rand())
# Update mean and variance
mean, variance, buffer = incstatspy.variance(ndarray, buffer=buffer)
print(variance)
ndarray = np.random.rand(3, 3)
# Calculate skewness (variance and mean will be automatically calculated as well)
*_, skewness, buffer = incstatspy.skewness(ndarray) # discard mean and variance
print(skewness)
ndarray = np.random.rand(3, 3)
# Update skewness
*_, skewness, buffer = incstatspy.skewness(ndarray, buffer=buffer)
print(skewness)
ndarray = np.random.rand(3, 3)
# Calculate kurtosis (skewness, variance and mean will be automatically calculated as well)
*_, kurtosis, buffer = incstatspy.kurtosis(ndarray) # discard mean, variance and skewness
print(kurtosis)
ndarray = np.random.rand(3, 3)
# Update kurtosis
*_, kurtosis, buffer = incstatspy.kurtosis(ndarray, buffer=buffer)
print(kurtosis)
# Calculate 8th moment and discard lower moments. Mean will be calculated as well.
# Calculate along axis 1 (default: axis 0)
p = 8
ndarray = np.random.rand(3, 3)
*_, pth_moment, mean, buffer = incstatspy.central_moment(ndarray, p, axis=1)
print(pth_moment)
ndarray = np.random.rand(3, 3)
# Update 8th moment
*_, pth_moment, mean, buffer = incstatspy.central_moment(ndarray, p, axis=1, buffer=buffer)
print(pth_moment)

License

This project is licensed under the Apache License, Version 2.0. You may obtain a copy of the License at:

http://www.apache.org/licenses/LICENSE-2.0

The full text of the license is available in the LICENSE.txt file in this repository.

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

incstatspy-0.3.2.tar.gz (16.2 kB view details)

Uploaded Source

Built Distributions

incstatspy-0.3.2-pp310-pypy310_pp73-win_amd64.whl (35.3 kB view details)

Uploaded PyPy Windows x86-64

incstatspy-0.3.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

incstatspy-0.3.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (29.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

incstatspy-0.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (30.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

incstatspy-0.3.2-pp39-pypy39_pp73-win_amd64.whl (35.3 kB view details)

Uploaded PyPy Windows x86-64

incstatspy-0.3.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

incstatspy-0.3.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (29.6 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

incstatspy-0.3.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (30.3 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

incstatspy-0.3.2-pp38-pypy38_pp73-win_amd64.whl (35.4 kB view details)

Uploaded PyPy Windows x86-64

incstatspy-0.3.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

incstatspy-0.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (33.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

incstatspy-0.3.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl (29.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

incstatspy-0.3.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (30.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

incstatspy-0.3.2-pp37-pypy37_pp73-win_amd64.whl (35.2 kB view details)

Uploaded PyPy Windows x86-64

incstatspy-0.3.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

incstatspy-0.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (33.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

incstatspy-0.3.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (30.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

incstatspy-0.3.2-cp313-cp313-win_amd64.whl (35.5 kB view details)

Uploaded CPython 3.13 Windows x86-64

incstatspy-0.3.2-cp313-cp313-win32.whl (36.3 kB view details)

Uploaded CPython 3.13 Windows x86

incstatspy-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (31.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

incstatspy-0.3.2-cp313-cp313-musllinux_1_2_i686.whl (35.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

incstatspy-0.3.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

incstatspy-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (33.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

incstatspy-0.3.2-cp313-cp313-macosx_11_0_arm64.whl (29.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

incstatspy-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl (30.2 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

incstatspy-0.3.2-cp312-cp312-win_amd64.whl (35.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

incstatspy-0.3.2-cp312-cp312-win32.whl (36.3 kB view details)

Uploaded CPython 3.12 Windows x86

incstatspy-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (31.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

incstatspy-0.3.2-cp312-cp312-musllinux_1_2_i686.whl (35.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

incstatspy-0.3.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

incstatspy-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (33.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

incstatspy-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (29.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

incstatspy-0.3.2-cp312-cp312-macosx_10_9_x86_64.whl (30.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

incstatspy-0.3.2-cp311-cp311-win_amd64.whl (35.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

incstatspy-0.3.2-cp311-cp311-win32.whl (36.0 kB view details)

Uploaded CPython 3.11 Windows x86

incstatspy-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (31.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

incstatspy-0.3.2-cp311-cp311-musllinux_1_2_i686.whl (35.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

incstatspy-0.3.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

incstatspy-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (33.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

incstatspy-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (29.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

incstatspy-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl (30.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

incstatspy-0.3.2-cp310-cp310-win_amd64.whl (35.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

incstatspy-0.3.2-cp310-cp310-win32.whl (36.0 kB view details)

Uploaded CPython 3.10 Windows x86

incstatspy-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (31.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

incstatspy-0.3.2-cp310-cp310-musllinux_1_2_i686.whl (35.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

incstatspy-0.3.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

incstatspy-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (33.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

incstatspy-0.3.2-cp310-cp310-macosx_11_0_arm64.whl (29.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

incstatspy-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl (30.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

incstatspy-0.3.2-cp39-cp39-win_amd64.whl (35.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

incstatspy-0.3.2-cp39-cp39-win32.whl (36.0 kB view details)

Uploaded CPython 3.9 Windows x86

incstatspy-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl (31.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

incstatspy-0.3.2-cp39-cp39-musllinux_1_2_i686.whl (35.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

incstatspy-0.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

incstatspy-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (33.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

incstatspy-0.3.2-cp39-cp39-macosx_11_0_arm64.whl (29.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

incstatspy-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl (30.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

incstatspy-0.3.2-cp38-cp38-win_amd64.whl (35.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

incstatspy-0.3.2-cp38-cp38-win32.whl (35.9 kB view details)

Uploaded CPython 3.8 Windows x86

incstatspy-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl (30.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

incstatspy-0.3.2-cp38-cp38-musllinux_1_2_i686.whl (35.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

incstatspy-0.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

incstatspy-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (33.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

incstatspy-0.3.2-cp38-cp38-macosx_11_0_arm64.whl (29.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

incstatspy-0.3.2-cp38-cp38-macosx_10_9_x86_64.whl (30.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

incstatspy-0.3.2-cp37-cp37m-win_amd64.whl (35.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

incstatspy-0.3.2-cp37-cp37m-win32.whl (36.0 kB view details)

Uploaded CPython 3.7m Windows x86

incstatspy-0.3.2-cp37-cp37m-musllinux_1_2_x86_64.whl (30.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

incstatspy-0.3.2-cp37-cp37m-musllinux_1_2_i686.whl (35.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

incstatspy-0.3.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

incstatspy-0.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (32.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

incstatspy-0.3.2-cp37-cp37m-macosx_10_9_x86_64.whl (30.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file incstatspy-0.3.2.tar.gz.

File metadata

  • Download URL: incstatspy-0.3.2.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for incstatspy-0.3.2.tar.gz
Algorithm Hash digest
SHA256 a691311ae822cff8192b6df73f67cf880829d12ce18eb04f41982dd8e36624cc
MD5 61d558e8ed459aa05b971489deacd598
BLAKE2b-256 e0e0edc3ffe255d7934e4f9440b3c453ec2a0ce87fe50dc7a9d267b935906fff

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ad313c3e69c4f9328f65b4325621c19deab53b243d42d758747b4e3340a5051e
MD5 b261a5ecfb14645de7b1798fdc90053b
BLAKE2b-256 d3a58fb80460b6ec13f697b9fdd42eb47e0d288dc0a2550a12d0265b7dd4b4bb

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e72f852372994eb9bfd216d4393a1c52d8948db2f174dc5743eeada85a011905
MD5 7bf5baebdbc031baf96748d4269ec205
BLAKE2b-256 44f43230c0c9772e63e7aa22d0f5795d4b0e9cd52af4f1bb1730f6b4a7f3369a

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e74587917875cd8d6ed3baf574138a883b2f3798f9b62f325e79b9d04c141781
MD5 3f875a57b9a0c5903c86dfd896cb40d3
BLAKE2b-256 d0977d26dff9d99987379d892a219092ee2b9904e77c4d5661658454c13c3378

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3bae7d85faadc5cf4b8c81eaafb44774199897322002aca28afb2f0c6f666e5b
MD5 d6c3d1474e97933bad59e3ea8e012614
BLAKE2b-256 f42856a72d4eaf575d6be45b0090b41c1d77f1719e495579ca908f32eaba7472

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9a509a74f46656eb4914caa83756c6c93bbc7864cf1542ce06d43690f511d9ec
MD5 d0925e2605d3f69fcf6641850fcee65d
BLAKE2b-256 4890b9d4b035526f53d19bd81811b97c714c34d353001af58aded6341453257b

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c71a3346ea9806c7763772d463d80a5912e53dfe9f807859152c8bbf338f8170
MD5 9a594234613779e72b846792417dea4c
BLAKE2b-256 611750603be2a252e586ca41c5516c592cb88f7d2ef12b2f2e5d279c1b1be432

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ec5de09a82421da50c65cc3e9cce21186181b3926a6009283ca4aa528bba6d2
MD5 9c248c4c7bb2f2657400a51a15677349
BLAKE2b-256 5342cf77d4e4c1f8dc46460cb7ddcadea9e03c485720f6ca5a0e73433b0e8953

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d09bc40129ef75a7457e5b3d873e1cb458d67576480ab32cfcb5d5249dae3095
MD5 e4359ccee963519bb947856a5ed3ad69
BLAKE2b-256 9ffdfaab238cab08dd126f0cdf4ae89226d4ed6f825ff0d00b30ab64ab1ed880

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 17262f2e24d2226222325ba7d587c5ada57d5db83872d9f0f175c43f4de1d6c8
MD5 b58f27b3b4c996f35428dd86de730669
BLAKE2b-256 8be137a3d181f07d4a128f5067ad5d4f6955e42922ef1f91b2ba27c9c4e392f0

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4fe3d47531d90513c3be95174e310b8a392103ba72350bd0943ad2c170dd3ec
MD5 9ee237f83f3703585854ac1feead433a
BLAKE2b-256 12e5ca7af1efed4081cb59405f33f13c114b83ad798167fe5f65c4be769c6ee8

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 225a0d2843cc33cacaa1171ddf8e036195a5d11c14a5a0df649277c1e664a130
MD5 ea823b7e1cc52e43443716db7581c14d
BLAKE2b-256 c7c0f3845c3ac598455cb05737455e6683982246676b639bb7989eaae3a3a803

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5ef567a787187b3e0e95f25a640b327a20d189fa96987ec4203c16437596c52
MD5 8d49b38184099ea31780a53358b79a41
BLAKE2b-256 1b2bfa4d1ca951800957d5e583b1382674d4791baca5f80b4d5d278f0c416dbb

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30487dcd8a9c0fbb9618e407d8affcc4545b59171408930c21ac5c99d35db8a9
MD5 e616e585c20931f9351deeb582b2be3c
BLAKE2b-256 6bba7cba7ec369d58c7e33978748705473d470d76de4a100341e4f4aa12dd170

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9403fd0debd48d5e6b9bf718c1b013761035e4da0dc724ce1eb8172677c0e9a8
MD5 296ee8a668cb315004d3adcbb7bad547
BLAKE2b-256 0e45929c95cae77ae9f2231e9efbba25cf3e63023b469314987eada77d125bd3

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a035ec506169ec62bac7d88155df84af10560efc878a12795763cfff381439f2
MD5 9bbc9551da38a9d33530e4aa85af9faf
BLAKE2b-256 c4195044ff97491b64ba2315853a76c5d83ed5b8ac8c01e234e3d1e593e6c027

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e6f8fd3842e3511c6302a3a7bbbc6ec227ae84623c78aaf20ffb955bd2a7350
MD5 e93ddede8a40ff8a2f7563ad4791f266
BLAKE2b-256 a4915518144f47e91c78173c7d1340854b37169b52213b68b5b97db98f89725f

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e4ba893071f413b4072d1fec8b0fe1b2fb30f5a8214629d54e6169d477f6e16
MD5 0edbea0f2ce43778e62ae56899c37b6c
BLAKE2b-256 3fc56e92833b5ef5265084d86729a24288c798a3fe99c47af87739df5adc92f1

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5586df29b40e1204dca91c00b380c65aee1fe5dea00b8bb23fea6d281282fe26
MD5 db1f23b9231c21c7eb657a490186ba18
BLAKE2b-256 2620940dcc23a2d7b83d81dc2b9acc021341637d7406b1ba18282fa8d6f33cad

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: incstatspy-0.3.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 36.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for incstatspy-0.3.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e689a68ab3cafce2eda1f15e12a289aa23108f135cca5514e7fcb3c55c54ea7b
MD5 1c316c6fbe6b73f4b4eca7e35708a3a3
BLAKE2b-256 30872342bc877a84e17f7c075c041165463e750f4ae50a7c11b217270779cc73

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c49ac3691249c116419f68307a0ce2ca261790b6843e74fcec82d8a66645b94
MD5 ebe94821bdf4bf68b24e1cc0aa140fa0
BLAKE2b-256 0ed12fbe92a06bb5c857a7a3a772ec738d5853763ee217ccf2d2ec92fa1a597e

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9226af789bce2ea791c3ebd59a1a37824c3afb84c86a218c02e6c99b6000ad9
MD5 6438b6f0b7f702ade2207c55b253c9eb
BLAKE2b-256 524af96f5a9bcc0a459d29ad308e4ca2f829e63977c12a3dc3891f8d8ac5445d

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 540d561b782c6883b19661889316871fb831343750b5b7245ce7c91df1aa1ba2
MD5 f4661cc7b270504fbaa5db4d5a0273db
BLAKE2b-256 863a09af834ac583cee1734fc4d4c6c792fed26ef9cc344b876dfee725cf685c

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8195a2249a7e1c14829a40d9dc9f460b505f78c9fb1f80d0d4c2aed1e4cdfd77
MD5 a160c69da4c382addb652bc898315ca6
BLAKE2b-256 822404091215ffa1aea123ea9c5f68e0132eedc4c56ed83f4732864a70ca5caf

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37680dbb8bbcb1a7367cc2e68210f20ae82e1e0611eccf0265e52a5f19e40eda
MD5 3c9bf297bf9c4e4287eace462427e754
BLAKE2b-256 5c4c915a605bd8eef097b7617b37e479f8ae4e1d739497eaeafcbdc0d3df2366

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c8889cb311ccf92ec29681d404ade8509921c53a4c8521e9c734d4b563ca21bf
MD5 1904e7d04876a5e42e0105c6d68913b0
BLAKE2b-256 6753fdc8160a0ec3fd11aa3747eb6775cebb5bdc915b92b3140a630095b70eb1

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 25c0437fbad83280aa0fe76c592fc7470f14c5d943c149f94ce88b6b2ac8198c
MD5 37ab2272059eb1c643c37d040c0571ec
BLAKE2b-256 db3f7c5d9892baf52dae73afa8fbc17c21586cedf48752823f8914d09c3aa438

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: incstatspy-0.3.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 36.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for incstatspy-0.3.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9eb264cf0010859afe943c4724bd17bc0d15089a32f1aec9672415d2a66a997a
MD5 ce9bc1bf62e4ee9d711e5a74c98ee1c3
BLAKE2b-256 13964a5f567798f5220d9464d2c0743dc69ee6b27e8ff7cd50a68d6fdbe15e3c

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d7602130763e70b2b70c2a99b8019224f558ce8d896f5de9b9b9047bcd54cee
MD5 9e863294d973c1a9863ee7c0cb685d6b
BLAKE2b-256 9d56ffc40e05fd3690135940ad96fff0d03c00f4df6d0c88582b9dfd960a5627

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08189076a81b7f26bcebcad261826ca149d9ccc77fffeaaa506616662862665b
MD5 3f442b2859d83906c5b557e66971d53e
BLAKE2b-256 e30bf297354555d4e94aed8c7466c3aa2a30bb61b26492ee64913395e709cfd1

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df1f55efab85c1877571ce3c7ce4394756143c0f687c50471f80013d1323e666
MD5 a37617c175f7f0015deca695f50a42b7
BLAKE2b-256 609bc7b06a242849f100224f621429dfec289459941a92629d6a6aa6ab12588d

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 42edc3e88686e552702af3374c734d7d0325a97967badcbf658144d2a1ea91e1
MD5 7f2c7158644a7bd16a686356e271ab7c
BLAKE2b-256 459c9b90129d57ff2fc14174a8bbdf59cdad88faf9bacf6b1ad91344e6d0b3d8

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4136d8a4e5ed7f0b83d8a20aaa38bbfecee1af578c65bc4e8d0dac795f0e169
MD5 097e3bb8fecf5490b22b231131b0def2
BLAKE2b-256 da52a589d25b33b3cf17f2a12ceb79ed01a3558496d8bd7c94871a99056606f2

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b46d0a4c3a95e1bce2033e107c697598507186e021881aae7e07b673429743c8
MD5 adb78ed6dabaa71825de453fc8ae0a5f
BLAKE2b-256 01d73d2b87a952d9338068760cebf9695e44e81ccdabe4f21b5a185f62b33034

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 34850e947fde94d502761a18b3b77f2adffb2742ee4c84882c0543de6c00fd3d
MD5 455f89c7f412eeddc8f5ea28022726e0
BLAKE2b-256 9cb6b9d414eaf44e69555b65b3e605f812958ac6976bf8292018c422dad3bccd

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: incstatspy-0.3.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 36.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for incstatspy-0.3.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 42ea4e6602cb403177bca9a7fa580f1b2fb357cbd7988c47cb6f2a1288235675
MD5 091887508ba2bd0e9f2e4d30659e2a7f
BLAKE2b-256 e1cc3344faf8d21a10919d720cc5c22193458291f24e794abc9cfa30ad98551e

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba04d6777361f194525e37dfec0c1b1db325dad20e20405aef25042c11edc3d6
MD5 02f881adad319dc92927cc79dc57535b
BLAKE2b-256 8f6f27c3f88e75de08750b5ba5022d037ab30278e0ef394965461ed4c6251a04

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f2147450a8fe5b6b9210523afeefa9c30dc86d8825b8b5b943b17b9d1db1b69
MD5 a156ce9205b9cc7468efea01532464a9
BLAKE2b-256 4251ff7032daf2868982111b9fc906ceb88dddbd6b4897c1117fc1f0c2b1cbaf

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcb82552f33cd65270f1cda9044dd53bca448d9899df0975d3c0ed4f3b696018
MD5 a850120860572eea0d02ebf8068dc24d
BLAKE2b-256 ee39ac54f24c635745d61d9151e70ece6c31bf0edda915df258007b83ba12b15

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00261bf345f83c82b5cf8da9cdd06753699ea755e963c7c966e165f6c2dbddd5
MD5 17d1dde3332db07452fcb0ea1b43f180
BLAKE2b-256 d09b36d8fab29d779a736d279287f712565c92ef083fb79d51c8fefbc1a54651

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac69de868105eb84e9b64e086c6018494e616c0ebb9064ae66f78e932bb4f937
MD5 749ff5a72b855412df960a5b085d21ef
BLAKE2b-256 20e06154459258ac946cbcbf59527de9b9e892a9ce078beaf3122f5542a846e6

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 645f74ffdf63065fcdb41eb63cd1841668e59e079545cb334c60cbcad1f8f010
MD5 5b68b5a108b02a45d6c2db89e61431f6
BLAKE2b-256 177c8524b9b6b198d3391334557e05b084725e4782f6b024054f506c6de1c1f7

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f2aeebf1f583b93bd962947a54589eed2b374cfb9abdb458f9455619082df1ff
MD5 1529ae7106299c39c11c2b1563276a9f
BLAKE2b-256 06496bdf020e3e86e7ec6e5a62bbd1b06c14669d3f375b9979d5a10166768c6f

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: incstatspy-0.3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 36.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for incstatspy-0.3.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3c41098a6748672bfc809ff3c2ec7950b0be3c15a64c6babc39600eae08a9ced
MD5 b868ebd1b95a3e3c8e5bb9e1647aaaee
BLAKE2b-256 4262cb7e03282d195103ee1cd61bb2d9e031380649e87cf34605846b0750cccc

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb30920a0273f22f42315754b94f8f0e8c87260891ce58ca65a1ad5a4fe2403b
MD5 ef5b47f82f5778ec7bfedd96a6a70e75
BLAKE2b-256 fb19d95198c103b53d4bff9647bfebc69af4bc90cd1132590d4a304c64b5df83

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ab4e6bc2c11fe4e949ae6373eb371172ae0420442af5f5a44d768308b6716ee
MD5 dbd2d5bc264b671639ba0235036c8146
BLAKE2b-256 58833d9a6272d485f17f34415ed9bbe5ab4a9998710b1231490951819699f5ad

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78fc94de0216f4bcddbab8bd81b613182bcdf6308e0933b5894b3200ac0d832b
MD5 1a2133bdc7adc8abec594006baec3bb3
BLAKE2b-256 f513b4f833e7508671f16fe6fd3d69e0c834453fce4ec8d80a06839309dd7c92

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dcbf4810675e64bd7315923b0011eb4a1d6e71ebaea2622fab0f0860cf4c5ef4
MD5 7fd9abe071a49d6a322d270586351bf6
BLAKE2b-256 5c967f5c66cab0009564e60a747fda800cf91f7c6d6530a52cce525d78b43954

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b328b102c475f9148f9402305894473fb4beb882870c0503d8113976c1af04e
MD5 234367815a6470f6ef4004c422334ab4
BLAKE2b-256 5886c317c54d932ebb1a907edbe09dafad4f2a2b46e33d18f58621eaf2ad347f

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12f51a241f038b46a5e0ab8c9719b2ddd8e7c8cc5a053e0253d9bf97aed69966
MD5 ffbaed54ac3ca2c84bec40207ea44db4
BLAKE2b-256 ee81d6f01720e28e37ba0b7106260134d729ef5fdc76050731ca737645ddffbf

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f206ea910b83dc33dbba3943ea67e05359cc36df74abd8a51f501d5015d5a6bd
MD5 324547c5b700da58457519608a2f1549
BLAKE2b-256 76f8e46e962af33453427873cd320ba2c3749b9f90e5e8025825d1ba98f0debe

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: incstatspy-0.3.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 36.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for incstatspy-0.3.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4ca4e7dc33fdb17611838e547514ac7027bd6780e0c38d1d192377127bf2cbaf
MD5 c7514737299686317dc9737cc08f6ee9
BLAKE2b-256 2afceb2bd86af9a781c27a54f19e158b606c6ab8a8797cca7f830f56d6a9a9e7

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6634074a1a95f0e88e31cae674270ded0aba768e343e583a007c9bafaf030a2d
MD5 ce3340a891888cd1a5c13df49d9326e0
BLAKE2b-256 2846b897f30ff935321ae3eabf604a57d78512c536da6e24b80874b470d2adbe

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55ec124c86d0b85bb513f8aa7c97b90c485d8756cb733687f16a87e3ccf15944
MD5 c47c568948a429d018db84e580393209
BLAKE2b-256 1f101fee05797b78f2849a47f47b9c761bba2f89cb5d4e9bdfd39dce6ec0e332

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8d599a96c60f2f6945502824b39bea54d348bdf283dd1974e5796d29a668479
MD5 62a83a2d76ab3fc3ccd19330fd3ea479
BLAKE2b-256 0ebca985a15e3df0e2a14aad60a10ce4ae111687cc080028086ad93cbf6154bf

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a2d8dd96061f84ede83d4049a435678e05f24ba9c47db1280c1e3a17a8e4e59
MD5 f5e0f466eedf62f88363e8d3c2772765
BLAKE2b-256 fee611422362b2d6758799d922b5e1ff79a9a4917cef5bb13e037ff651b6b4d1

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d57ab2b9427f6270b078c8d09eced8ab07d32f64566750ff521cff23e61e418
MD5 b8b2bcb7683fcd93087d6fb693796f0e
BLAKE2b-256 14ab0da79bb74ba31f004136b1a4ce03904ab5b4ed9c38b63f11bf47faccf8b7

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3492ae9ed10fe0e55a6d425c3c3fb94ededd27ea3539b781de9639e3a4d221e
MD5 107b88c724ff8236ce0b6bdeac11b3c4
BLAKE2b-256 a57797e77f35ba77a77520d59a67b4b7f61c75f41cad17d96e75f520799f5eeb

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9524d310ccfcb55677e3d6ad4f2498de91a9f78a2bcd151cb1149bb340d5c177
MD5 0dcd4525eea88ab5648d756d12011605
BLAKE2b-256 01d3642b6c29fa3d3dd25220a1a3fe4f9e7528737990222215e21559907b6140

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: incstatspy-0.3.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 35.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for incstatspy-0.3.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4e1bff53eb2071384879cff1e13cb7c2d7c5700072d2574ed414442dc22dc903
MD5 caa774be935432c14761a80f74680e98
BLAKE2b-256 13b93dc42104c02a54d7d75d90e24f3d50a881ef599ffab65703218307ac0324

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cef92808fded381c2bf660e20e7dcfa40034308b1ce1add8f5bc2cafc8c1509d
MD5 009db73be3653962c6f0a7c85f4fb916
BLAKE2b-256 86377b0201c48d6b92844d51773f754bb8cff84f5c0df4db85213f788c167154

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f177c46f3aea4da3671349bab054c5404697f8f116ceed752d9fcf2cbcde923
MD5 9174804e823f9d8d96a9f6b20085d5a5
BLAKE2b-256 ff7adb406ac5381e5616f12308ec8411d1d6b9fd308da44e88ac057d0365e700

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1eb2563c80af456a9fc1c84746502f25899de756916d0c07c5621f9e5833ad8b
MD5 86e018250cd36983b25de2a253ad5879
BLAKE2b-256 b23830c0a3ef94c9b0704dccebc3193238a16fb5001a01bb39fab536fd27c162

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14b45d34706a47d6120af135a1e328d16f7b6ba1040723ec5cfd2b3e7c9e509d
MD5 ce1d12f74074c73a21596d60683c3371
BLAKE2b-256 b05db2d98cdd048244ef19ab0a0d3dec04c7c532220c8400c9597e2512aecf52

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 605a9660d598ff127c57bc89e8afa65b2102045b77bb08bfabb46347bb86f201
MD5 9d4425f6df26d95d593a786263ac960e
BLAKE2b-256 e406cf27a5a1c675f8240c07c09666a8a858e3372a6c7828e9df50b75db97777

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e30948c27313453608bd2bad17d88115715a6c2ee9b5292c89012bc8e870ff98
MD5 84be599b606decf35773151ac2ec0bc0
BLAKE2b-256 1de78fd6156d7214bd10fed16054c923493729d80c702302eb26507577744417

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 42c82eb52a4639e18e2dc3d1feb09a71b7a685403a45b30180efc4491611cfdb
MD5 3cc0336c7a1eec6f5ee4ec27f191f519
BLAKE2b-256 a3430f3b2f2711821491b09f7241265ae6fd3c955dad78d4425cbf70d6504674

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: incstatspy-0.3.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 36.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for incstatspy-0.3.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6cf4d2203394c25f75a837130ea6e0465b0d3cae322f9834ec472b073528fe4d
MD5 fb3bf3ef2904ec4e97da3cdeb1673742
BLAKE2b-256 0ab5b91e7a2d6bc09e1aebf8caae1f91b647bb879dc4f926926457efeca48986

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7ecbf6659540436e4aba8b0118f058b858b9b27b83589995e03243855ac83d0
MD5 af533254f6469f6f5ed533a0c8c13c3e
BLAKE2b-256 f937f64c695e8dffdec6d5c4e5482cb1fa61ca8ec25218ea044f130c07d314a6

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2fa97530a666fa4b642b36958e8e4ccc90981debb7b9f45eb448cf8c1152b8ae
MD5 ff867a8a96a0c7dfec61ee692bde0c85
BLAKE2b-256 24b5c17d8d7790c09a4260d462e63b5546cc9ef378c97671bf57a787d7a9eb37

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12c4804bdab48597652e4838684b718967af5b1ca26bafa2137b69137b211ca4
MD5 1a3ff4304e7ac38726cde5e2be849038
BLAKE2b-256 b8a503bad5a12b85124bc699c97c77097ef74406bc9feece4d73d0ae77c548ac

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c1c4efe2cb78102475bc850850e1d510aebfdf6ac95734c629590040c665000
MD5 ce4b4c5b5f326a13b7acdfe1d3172cc8
BLAKE2b-256 470b4b3f1af48d09fe9592435513ad35ccba900ccbf4ca819db647ad8c8deb0a

See more details on using hashes here.

File details

Details for the file incstatspy-0.3.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for incstatspy-0.3.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed2f0862231857a51ac12b8541d2484ff1d71fe213732ce3f2b48c950dcc8776
MD5 0587f362ca88362ff1efbb9a3a951e23
BLAKE2b-256 0ce9403db5f8cf588f0d219e6fac13c2c1c538269fe5b6dd4727edb7d22e0aa4

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