Skip to main content

A library that implements fast statistical routines

Project description

rapidstats:

PyPI version PyPI - Downloads License: MIT Tests pre-commit Code style: black Imports: isort

Documentation

What is it?

rapidstats is a minimal library that implements fast statistical routines in Rust and Polars. While similar in spirit, it does not aim to be a complete re-implementation of libraries like scikit-learn or scipy. Only functions that can be significantly faster (e.g. a bootstrap class that offers optimized Rust kernels for metrics such as ROC-AUC) or significantly more ergonomic (e.g. dataframe-first encoders and scalers) are added.

This library is in an alpha state. Although all functions are tested against existing libraries, use at your own risk. The API is subject to change very frequently.

Usage:

Dependencies

rapidstats has a minimal set of dependencies. It only depends on polars, narwhals (for dataframe compatibility), and tqdm (for progress bars). You may install pyarrow (pip install rapidstats[pyarrow]) to allow functions to take numpy arrays, pandas objects, and other objects that may be converted through Arrow.

Installing

The easiest way is to install rapidstats is from PyPI using pip:

pip install rapidstats

Performance

rapidstats is very fast. For example, say you wanted the confusion matrix metrics for a 50,000 row dataset. You aren't sure what exact threshold you want yet, so you decide to compute the metrics for multiple thresholds, let's say 500. With sklearn, this takes 40 seconds. With rapidstats, this takes just .2 seconds, a 198x speedup! Furthermore, rapidstats can use a cumuluative sum algorithm that computes the metrics at all possible thresholds, not just these particular 500. So finding the metrics for 500 or 50,000 metrics takes the exact same amount of time. In addition, even just looping the rapidstats version is a 58x speedup, since rapidstats applies several optimizations, such as computing the basic confusion matrix (TP, FP, FN, TN) using a nice bincount trick and avoiding re-computing this basic matrix for each different metric.

Similarly, calculating the bootstrapped (100 iterations) ROC-AUC of a 25,000 sample dataset takes only .15 seconds, compared to .83 seconds for the equivalent sklearn + scipy operation, a speedup of 5.3x.

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

rapidstats-0.2.0.tar.gz (452.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (15.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (15.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (15.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (15.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rapidstats-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (15.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rapidstats-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rapidstats-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rapidstats-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (15.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rapidstats-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rapidstats-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rapidstats-0.2.0-cp313-cp313-win_amd64.whl (12.6 MB view details)

Uploaded CPython 3.13Windows x86-64

rapidstats-0.2.0-cp313-cp313-win32.whl (11.0 MB view details)

Uploaded CPython 3.13Windows x86

rapidstats-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rapidstats-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (15.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rapidstats-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (15.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

rapidstats-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rapidstats-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rapidstats-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (12.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rapidstats-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rapidstats-0.2.0-cp312-cp312-win_amd64.whl (12.6 MB view details)

Uploaded CPython 3.12Windows x86-64

rapidstats-0.2.0-cp312-cp312-win32.whl (11.0 MB view details)

Uploaded CPython 3.12Windows x86

rapidstats-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rapidstats-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (15.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rapidstats-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (15.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

rapidstats-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rapidstats-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rapidstats-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (12.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rapidstats-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rapidstats-0.2.0-cp311-cp311-win_amd64.whl (12.6 MB view details)

Uploaded CPython 3.11Windows x86-64

rapidstats-0.2.0-cp311-cp311-win32.whl (11.0 MB view details)

Uploaded CPython 3.11Windows x86

rapidstats-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rapidstats-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (15.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rapidstats-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (15.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

rapidstats-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rapidstats-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rapidstats-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (12.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rapidstats-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rapidstats-0.2.0-cp310-cp310-win_amd64.whl (12.6 MB view details)

Uploaded CPython 3.10Windows x86-64

rapidstats-0.2.0-cp310-cp310-win32.whl (11.0 MB view details)

Uploaded CPython 3.10Windows x86

rapidstats-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rapidstats-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (15.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rapidstats-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (15.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

rapidstats-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rapidstats-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rapidstats-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (12.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rapidstats-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

rapidstats-0.2.0-cp39-cp39-win_amd64.whl (12.6 MB view details)

Uploaded CPython 3.9Windows x86-64

rapidstats-0.2.0-cp39-cp39-win32.whl (11.0 MB view details)

Uploaded CPython 3.9Windows x86

rapidstats-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rapidstats-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (15.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

rapidstats-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (15.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

rapidstats-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rapidstats-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rapidstats-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rapidstats-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (15.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

rapidstats-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (15.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

rapidstats-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

rapidstats-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file rapidstats-0.2.0.tar.gz.

File metadata

  • Download URL: rapidstats-0.2.0.tar.gz
  • Upload date:
  • Size: 452.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.2

File hashes

Hashes for rapidstats-0.2.0.tar.gz
Algorithm Hash digest
SHA256 2cef99fcd379b91c14fb7f17a9417efd21406a84aa4666fb5bde607c3c361dfc
MD5 b1187f59597752d0b2e6027d854597ab
BLAKE2b-256 941aee4c72cdc956eab30c4ff3c923939f5cd53bbce7a13165de2db213b9d3e3

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 856caebe7e3dbcec1137e3fcc29d8b8da6d5f2a22bf6ed9d4e3d3c901eb0e235
MD5 a8fef32830c187e833b9c10ae41c91c9
BLAKE2b-256 7b20d5edcd8422d97424b4266eb244e94124e8bd424f937c70881d0c6699a2f7

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2980e7a6f0c85f118e1212f8218638c3c14c3510a74089c10bc41d23bc7d1d2
MD5 868e1114cd2a01d645e5b58017b7767a
BLAKE2b-256 a7a82d7671f986d263383e2993a3e70b390a6a33070e37b6935535149d406a25

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7ca7a9f205c4e65d1a4c9a7a211926d41368b8446b71f76f9f5f715c03dc1e9
MD5 130e538a42af3d64010793b5114d5184
BLAKE2b-256 e33bbda965bd688a9d2418d4473e6dcf0c549851911a492cf881399bf60d7ec7

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a2f9943d2719d9e6c611a41f32ca3c6a33bd44a293b0a287d169a7aecd3de0d
MD5 58abe0c314599e46682245d312d73a99
BLAKE2b-256 4515a88289cab2d5d1bde31e3f849c0cff6b21a7e279c870b18710cf55e9f087

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 549a45c84940fe0f99a778fac9f8a06a1fe37cc1d49a63babbeba3017eb7e305
MD5 c7c952091f718fcd179dbb61e247c12d
BLAKE2b-256 7f73836f9968f7e46ef2424dc1d66e5d4da795db07d95e87ff7d1230147a4f69

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 159a7419c80254abd77f258510bc15dc5edff26303f86cff7d07c6273ddc289a
MD5 f8c3a7a3e938f642bd797cbb6390476b
BLAKE2b-256 baa114aeab4b441df16cd82db3478a098d6aa101677a273375b5f333bc0a42a3

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79c10e8a24755a489ce9c061cfff756eafa985eb689a1e2e86d37fd8eb5bd8a7
MD5 a34012b3444a39c82c80ec12e1629bc7
BLAKE2b-256 0504f91fde0e5f8b99d7b6512df66d11197a2250562f9e611b6167b63642442f

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e431a568e73b38f0c79cc8fe7e76d1d12fdccd81e8a6ce9f14191cb28e54196c
MD5 85ba81c40a06877dc93c845c94c1e46f
BLAKE2b-256 d5c50001ed5043a9dfce052148cf93b472bb5d6230d168e9f8150ac1a6440e7a

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 16920d679b6fe39627d29ddb3d95b0b57b9308d994ad9e3d714e161d6b9ddb3d
MD5 457a6afd06cb8f7ce67877a586638043
BLAKE2b-256 868da141b50b74338d100819f1aa7510abf2f6ee1736caadf04b0abe91dd2147

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4aaf116aeee65d7334c5409d79f71fa3db6234782fdf3f0a30b2631ed5fe706
MD5 0c45ae218c0f16551474120ede4659f4
BLAKE2b-256 8336b135f2cb41d07556f6cad9ce5771d53d723d07f497e5c2f04bc5012c7468

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d300a6f742d33eda70536ca7588a69f20acd99b5ace3140ca817d8972ddfea1
MD5 649d9d4112ef0661ff6b9aca526975b7
BLAKE2b-256 fdd8fafe81887476204e5c1755515479c794a9971a1906e4579d467b4eeef4b8

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6907111ad009b16400d58369542078ff1dcf641be64abe86bec41f130d2e4fd
MD5 1de8da92f0410deb324b0767f6fe626a
BLAKE2b-256 d354955be340da5843d565547fdb85ed511c327888eb0bd4aa9c214630eb73f4

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7df642e3ac14c3aae7cc22b1809670b882c84425693d476e57821798c206c8c0
MD5 b6a468aebf9603d19194a65ad3ab4710
BLAKE2b-256 41cc4624811f6e2f0ab4e8d3114680204198eaa0bff17b4c439c1b6d9b8a2b0b

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fd9bb0d00728c011a82661d72eaa3d7cd055b2b7702aac42090dbc1fae8b9f94
MD5 1c0013af8a0308f7dc7ea896df0f02a3
BLAKE2b-256 9b29ef0f3dea0fed4bc79467070fe84b2fa738b157490ef7e51c6279e04048d5

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab9f34e25375f2091874c2438e55253ecaf22716a27679627728f9af134d4421
MD5 06b2469a901407b007333567cf0ad3ea
BLAKE2b-256 81971ef1f7c29205525d192137c36f9b15ff85d473947293bbd0bc426ac8de63

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bafad8805d553e6d008c02f7f493e77c9aa3167e8bba0c2eb5cad4bce3a530d4
MD5 f2e00d48674b5f4ada97ab31767e16bf
BLAKE2b-256 4b4c833fec374a3c5b500ef025109dd4ee5da6c1fa8edde0686895f3ef56dcac

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6c080d5fe641e4977bc39a9b4c401a9b50a5771caf8d20adc7ef37fa5224ef72
MD5 20104f2b71da6d85311b2705add485b2
BLAKE2b-256 c2ec5dfcaff5cf5891bbe40702279040cdedefb9a18be75d12793940c33919c3

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: rapidstats-0.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.2

File hashes

Hashes for rapidstats-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 94455f3ea1b144e410afeb57a1815747a854abd52041c2ad2786722058b83a92
MD5 71080d168118e14eef7bbe89b6cee556
BLAKE2b-256 5445d33af32b2bd7a8a39b3cfd90e88009df929966fb3f7a8a29002b3cb8db2e

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 472ac4f005486b54f66afd007e1ca084a2529e0ba5bd99ee930a73f0bec7dd80
MD5 4289d182a777fdbd22313b6305c8fd89
BLAKE2b-256 e05068aa1e6e55a401625b4e2b379d5ff9d5928ab4cd4583ba2e6dd24d2ed335

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9b5855d0fed9e58113851e33323ccf7351b4fab9f03f4f7462b879738c5b124
MD5 29a84f8dcae7a6fcf9523436e9d882e7
BLAKE2b-256 dc48e48924c69459f81fe7163a673745464f5538cf89cc1cacd3615e4e6a3a5e

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91669a71cc8868ca91d2330ea36eb1a14d181436b0a3ca10ff1338bbc91f741b
MD5 55ec4c1f233387d433c699aba0fb80af
BLAKE2b-256 7d98498a1dfb4f910a7b1d9ff303fefa04a170cf06b27046db739fc98662807f

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ef203d725bbf8413daa18bda08a56c8d730316b36baf43be901012149781aec
MD5 b0d8220d44caa0dd9193ea32bf6d6a51
BLAKE2b-256 5c7f86112446bf9b0bee65c5b6333a01de6610124a504cc4465548854d1fa54b

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a705b89f202e9f4ce2d6200a8e89fcebeaf7e02919240d3096f07123643f59c1
MD5 7fdfaba278b7687799dbb011e3f319e4
BLAKE2b-256 55a1cdca654e2c97697740870bf4eb016b5909e88a72c83781f163374e4d0d2e

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c263ee48a313b502a3346ef65e22f35f4e86a86521c3c515f00d751ae11702bc
MD5 201356fec83845731fe72934377f6829
BLAKE2b-256 a6cd9dedb9f249e0e9b2e34d87044ee5af8f4fc84daa1674bf895cf8ba23f122

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cea9193706a8ab3b62ef517af570bfb9d6b5f049fadbba323498f1483c1065a7
MD5 cfd1bbf95af61190cd7b6119fd64f23f
BLAKE2b-256 2cd1677b1d159a629eb1f6143188b674bc3bbb6a53e8da2ae6ea65d6a8c77cfe

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8cd9120bf31e86665415d639f45588007a786f36604ae6a420be6c9fc07dc96d
MD5 5c464084b4b5bfe9752fb7c79a016cb2
BLAKE2b-256 f0eb99c1fa23cdf0944428b9d5f20dc7fe4ae76df552b441137c1e187d56bb25

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: rapidstats-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.2

File hashes

Hashes for rapidstats-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b0a47960ae236a64128a6af6f209e647dc5caacd1e011e5bfd0e76c863758ed8
MD5 8e5a3f309dce3249382fbc80dad547a9
BLAKE2b-256 fcf559be907f1a2e7bbe278854a91921ca6c1020539928c694136f899f095d5a

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f8fab757d48cbb5fa77723c289a5e9951a5d069eb9a2a223c6428f2dc1fe082
MD5 31de48f3bb0bda331c8adbca957a3886
BLAKE2b-256 e24843e7d071814675b02649f968068a4a8ab97db8ccc0abe2a52ddad79fd7de

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 113a248eb43ed13f1751a1ab2c0191867975c9387ee32138f3c65650d2cf903e
MD5 2c5cf94bf12a891b52bdac40de648688
BLAKE2b-256 12c16e8dfaab67081e228554694590a108e3173d22cef63a0e5571ccedd10b1f

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8117d1ccfd6ee0d53c037a89c7fefcbc2329a4818ded66987596f99c5d2e2e78
MD5 8b6de050d43c36214fd5f384e0746841
BLAKE2b-256 382859114bb31fb5a1ba2082dfb8927f68817d3999001c7bf7da645c4550ff33

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 394025f0be4765d4972ef9080083394026d58cc6cb6c607c29909a8e0b0e6f8f
MD5 89eba572b6bde1ce3f31d99122b85ff0
BLAKE2b-256 6cc8831bb0bf4537e6f2c83d7c2473288b4b5be7d8de298147b746126285f320

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed68b80994eb35eff535fedcd61437caa8f8570162f6f15af9cf0c6badc99baa
MD5 b88c3cbfb8485ef701ad1065bcdeeea9
BLAKE2b-256 27e6bd471e76ccd0d47995c615d6f712c6f8a82654baf0d855c2e066c0cc363d

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffa167c4a9863d735ed87e082c63b4a62ea18bb074a6c7f7e525ffa142fc8458
MD5 39c8684439feaa8cada5f8dda8b17cdc
BLAKE2b-256 a43b157ec71a0b0b27c0af3ef4ec8a7c8beda05e68b814c9744b07137f89fee4

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 101fdae36aa183fa7313a1303020a6790037d7c3d7db95f10c4f1da85a258087
MD5 5bbae2a048d38cabfc2bbdfa7de88f41
BLAKE2b-256 1be0577bd7a0845b6c5651178433a76de12d8e88170c3469a0edb93ed0ca428d

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 705db22089c0a89410522cee8386dd8e359b18958de82c184289fe04fe711329
MD5 e18f650948ede833a892436e0ec0c886
BLAKE2b-256 7f5c7b9b406529b24b9b427f538d51a5b739f842a51d05a28d5f0905246ad6e4

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: rapidstats-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.2

File hashes

Hashes for rapidstats-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b6e3df9caeec9aa0c934fe44d58ab5cf38651d9449c8266488c8eeeaf7fdb25e
MD5 6b0e13efce0f0896b9dc1c846ea3200c
BLAKE2b-256 6538bd8baacbbee8e48b72ed58fdab6c4fdad8e785ac99ba4b45f3457122a54e

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f43b9e71cb76f53480798d1112f16d691687ef7fb7960643c8c434231cda6ffa
MD5 613576654f92e7ff343090c8206d58a3
BLAKE2b-256 c381ec0158fcc1c00b608cabb423badce80d59e974569fd70795f70fe12430dd

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 823da8aace92141c9bee91f44230abb5b225d31346a285d830c22fb2372a1fe6
MD5 4d2df7e5167b8c8fd881251840370a93
BLAKE2b-256 10160add6a8905027ac750ab9cce5a1abb95c97bc7811e05054db03840da8eb3

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e3fd111c90fd5b242a828d40179bcafca963a1d2493cf6b95d300c45c67f999
MD5 fd3af13354ee073f45ba20280ee1bb65
BLAKE2b-256 458126d9dff6bfcd41a7cdf4bac39226ddff5c1084c71d3945874ad3c010675a

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6ba764c0edc032a696a76e1f8ef729ee67af472dc6c0cd6aeefc3ffa4aabeac
MD5 c3e2eddf18eb50a4316e57619a724d24
BLAKE2b-256 0feee915a69ea02a84a242cd9705999c0838ad5fe961743a79ca35e60a8153f8

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78f16a20c3e12c146ee4794fcd1bc420ec1ee8713b8dbbc3c0be9e19733f3f72
MD5 947984d021c9c2c19e811d88f29c4ff1
BLAKE2b-256 3b089df1ae1367159224875212d9c585f00d520f94af55e20aa53535a4ed973a

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 238e32f19c5d393c3e182668b96639766a9ab24a263a7a7a2b182686266ad18d
MD5 370def9504b4a6d94e7b97a6f1d0306c
BLAKE2b-256 a930d3e3c04b999a00f0ce684e2af62b7e1e6fe80a9016ef8644cd6a2a8896e1

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9440716935be869fe4219ea2345a53fceae33f388667fece025d3a43e3f6f8e1
MD5 6acb836ffca4c0656a56037a7a7621b2
BLAKE2b-256 30f6dccca02ffec1aa13c1509ece302ddc7647f4646c4b16afcc652cf917d70c

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5cc3ebc33defc9e2ce4f6b860e36b8ef3b1ccce69f16dbacc508898a8ce954bc
MD5 c72444e61dd0490c889fb02e7747dacd
BLAKE2b-256 2354d23b9f339729e60d818de80e56e69d8e6bea2d6708b3e54e3430c3f1fe13

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: rapidstats-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.2

File hashes

Hashes for rapidstats-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cf1618cdc27734fb6596ad051227e065c7a365073b6d1343443f7372daadf3af
MD5 27d9dd33a9931f4b9c48282e5b489493
BLAKE2b-256 4d2ddd4e62e4437a7c8c3ddccde5ff72a89867593b01eb33d58997316709a533

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26a9f42e319e1316aab9b39a9e8855afc0e414f60b41ea89a644b3fbb845102b
MD5 7466595a17c90c25330d9b49e603f944
BLAKE2b-256 df109f7a636b0a9571835abc7627078fa6711a68abf9f46b080c55061b4ef194

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3b29c846a1b2207e140d319f26decabbe65cc9248e0b25c5a8c65939c496121
MD5 1e0db031841ff2e694bbeed60587b442
BLAKE2b-256 9d11056ed64fb690fbccea75f27b5773f0d8b1b4ce8557132f6688771f5dfe1c

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6195807afc3a959334426859526aa1c8fb3a00b200add4aebd87db4aa1cc801d
MD5 0ec6e4baa91bb3f272e9f1d13f747522
BLAKE2b-256 ea334985a109ce7bad97b71a5c3f7a2ee93deaf2c2e1e9a8ac16abe2f456550a

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c7bb73b28e0ebbb5dda80c741ee4404de091b04826a4216bb612f6a2b938591
MD5 a81ae338b2f4d3d1fa280f17f5380491
BLAKE2b-256 04a828e89385f8dc58f3b5f1fc05888f2e2c03f31c9b27aaf0bd04585e64286d

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ba060f78753b787c49642f0eb832eb510200a544deb3dbd61c502dfa0260add
MD5 48fe497d3ae0d1d56227692d4c88fb07
BLAKE2b-256 82dde73c906cf71c6d79c88bf1be0a57613fcdeae542027ed4615c7ea65fe082

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66ca23eea941fb61ccdb867ec447b06915ebf46ed67f0730d244b4c59c7785d6
MD5 20fce943ead28724ffca2bbfb15f6547
BLAKE2b-256 659d3bb3aee3c34a5984bd41b0842a2cc3a80d5fb4b89e9a96ff99d568fbefd4

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 339f0a59e14a91fb9a0cd74eab7a448480c77e2107d845cad79e6286bfb2a714
MD5 f4e65e318361577dd032da3d9454200e
BLAKE2b-256 bbfb138a425445a7d5d2b4092af7af0f6a2937a16aeed6047a8c274b6695e785

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7a170954b193d43bb9824c95bb1b04910c54022248f80e1937a3a4b26302e365
MD5 8fc6c70331437d37b68ccdae535d3a4b
BLAKE2b-256 c2dcadd683e9fce44df08f53be8be73c4d578f6c8bb11752134c5ebdcc10d793

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: rapidstats-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.2

File hashes

Hashes for rapidstats-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3853ed9748d3e5bede05ed588e4fe6eb1ae52ef4d27e76d2f9d32b4818b425a3
MD5 dddc01ea37e3d62ba31b8c9e9d76fb51
BLAKE2b-256 dbf16647fd13edd70d6b1f42cd2905e3a7097f9a4861314c317e79238367d3ac

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2965c47e1f955922ab30f099841f81e436ca2ab4bd4e169179ff84ee15e90951
MD5 fe6afb6b916b8eed1fa3e83a21ecafda
BLAKE2b-256 ca596669cd5db344198af1c54ddf384277bbc1da6c510db76cd6bcaf405c53f5

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25651d429286553f3a1ee1140fc9a464beaeb56dbe89533c80f45c1a6faa2d24
MD5 5e86149917d3b2bf3ab6ab5a7785aa07
BLAKE2b-256 5c491efba1c57932da70623837ea8294af347ad838b8d00568284d3e4cedd168

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4336af590bd4208c6e44c558a5eb1adcf2e4892267d9cdf2402ff405089fce38
MD5 7e55f0cd543d34b20dd6c2a4ad30926d
BLAKE2b-256 e7e436371058a609f493271538e5a0ff1cd012863f5186eba469d17f22756cea

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c70e2703de8f23ec7ba093a0f2e82f31530c3c4bf80c55b93eec538f7328791
MD5 4ca6c685d0c63d35b69fda127d810f63
BLAKE2b-256 eea74f7811cd8bf28e956cadbb748c1d43ed7f0405cad9b33f77075f634df935

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e51a11eeb21d058e6b04a03731909031dd2e1f99ee8d69b8c6a24cef0bec7d3
MD5 cffd9fd3b5ac4ce1c82e005d78362b49
BLAKE2b-256 ac94da5ad1b5de7b1ca4bef19aabe1a387c5233f4c9a4db7945229e85d4043bf

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c90943a3687051f91bdb50f9c48fbdd3d38b87d56ba25e6aaf49a26ba0cb0a9
MD5 32557600dfcc2b966f669f077509674e
BLAKE2b-256 24211fcbac04589faa767d8c6e0e56cc7deda5beda39a110f28db3a7c1230374

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae657e8b81d8fd512d31ac59a3e6870dc921fb40887fe5fa0ec1ec6331cffa57
MD5 391fa634b3b9f7ed56efe0df27307870
BLAKE2b-256 806f3580db7106113d268ef85aa09e0112182d2faa4c510f30fea9483cb30a68

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1485da68684a4db616bb4eb986e168947138903452fa986bd166294644eb76b
MD5 42598e010234ac687ee6075b87b5babd
BLAKE2b-256 6e0cb4401507f1e16de7b1e15909dd617ee09e12aeb53c33d79bb352ee3e9be2

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e7b8b611dba31336e748a00af7d4ea790b17daf3ecf3e4eed94bb9686bce332a
MD5 06afc175e2e78eab72424fbf7aea4cf9
BLAKE2b-256 95888d009cc90ba2dd8d3d40383e48619114d24fc9b6969c530cbd9cdb0fdd8b

See more details on using hashes here.

File details

Details for the file rapidstats-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidstats-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9df9ee74293cda4a659a9ae4eca5c7a402fe4d76eda98e22fdf8ec5d5c171512
MD5 61e0f18c581d0872e263455c261742a6
BLAKE2b-256 81a7afdd3508ad7f6b3b9f2892f04e1041dbdb3689b0d61749ee7de1e282d347

See more details on using hashes here.

Supported by

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