Skip to main content

A fast package for analyzing Power-Law distributions in empirical data written in Rust.

Project description

powerlawrs

PyPI version License: MIT OR Apache-2.0

powerlawrs is a Python package for analyzing power-law distributions in empirical data. It is built on a high-performance Rust crate powerlaw, providing both speed and ease of use for Python users. The methodology is heavily based on the techniques and statistical framework described in the paper 'Power-Law Distributions in Empirical Data' by Aaron Clauset, Cosma Rohilla Shalizi, and M. E. J. Newman.

Features

  • Parameter Estimation: Estimates the parameters (x_min, alpha) of a power-law distribution from data.
  • Goodness-of-Fit: Uses the Kolmogorov-Smirnov (KS) statistic to find the best-fitting parameters.
  • High Performance: Computationally intensive tasks are parallelized in the Rust core for significant speedups.
  • Flexible API: Offers both a simple functional API for quick analyses and a class-based API for more detailed work.

Installation

Prerequisites

  • Python 3.8+
  • Rust (the package is built from Rust source)
  • uv (this project uses uv for environment and package management)

Setup and Installation via pip

  1. Create and activate a virtual environment:
    # Create the environment
    uv venv -p powerlaw
    
    # Activate the environment
    source powerlaw/bin/activate
    
  2. Install the package.
    uv pip install powerlawrs
    

Setup and Installation from Source

  1. Clone the repository:

    git clone https://github.com/aulichny3/powerlawrs.git
    cd powerlawrs
    
  2. Create and activate a virtual environment: This project is configured to use the powerlaw virtual environment with uv.

    # Create the environment
    uv venv -p powerlaw
    
    # Activate the environment
    source powerlaw/bin/activate
    
  3. Install the package: To install the package in editable mode and include all development dependencies, run:

    # Install the package using maturin
    maturin develop
    
    # Install development dependencies
    uv pip install -r requirements.txt
    

    This installs powerlawrs in editable mode, so any changes you make to the source code will be immediately available.

Dependencies

  • The core powerlawrs library has no Python dependencies.
  • Development dependencies (for running the example notebooks) are listed in requirements.txt and include:
    • jupyterlab: For running the example notebooks.
    • numpy: Used in the example notebooks.
    • polars: Used for data loading in the example notebooks.
    • matplotlib: Used for data-viz in the Quickstart notebook.

Usage

powerlawrs offers two primary ways to analyze your data: a simple functional API and a more detailed class-based API.

Functional API (Recommended)

The powerlawrs.fit() function is the most straightforward way to fit a power-law distribution to your data. See the Quickstart notebook for an example.

import powerlawrs
import polars as pl

# 1. Load your data into a list or Polars Series
# The data should be a 1-dimensional array of numbers.
file = "reference_data/blackouts.txt"
data = pl.read_csv(file, has_header=False).to_series().to_list()

# 2. Fit the data
fit_results = powerlawrs.fit(data)

# 3. Print the results
print(f"Alpha: {fit_results.alpha}")
print(f"X_min: {fit_results.x_min}")
print(f"KS Statistic: {fit_results.D}")
print(f"Tail Length: {fit_results.len_tail}")

Class-based API

For more fine-grained control, you can see the API examples in Notebooks/02 - API.ipynb.

Jupyter Notebook Examples

The `Notebooks folders provides a detailed walkthrough of the package's functionalities. After installing the development dependencies, you can run it with:

# Make sure your virtual environment is active
source powerlaw/bin/activate

# Start Jupyter Lab
uv run --active jupyter lab

Limitations

  1. Only the continuous case of the Pareto Type I Distribution is considered for parameter estimation, goodness of fit, and hypothesis testing at this time. The example data in the documentation is discrete, thus the results are only an approximation.
  2. Domain knowledge of the data generating process is critical given the methodology used by this package is based on that proposed by the referenced material. Specifically the 1-sample Kolmogorov-Smirnov test is used for goodness of fit testing which assumes i.i.d data. Many natural processes data are serially correlated, thus KS testing is not appropriate.
  3. This is highly alpha code; backwards compatibility is not guaranteed and should not be expected.
  4. Many more known and unknown.

License

This project is licensed under either of:

at your option.

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

powerlawrs-0.0.10.tar.gz (516.4 kB view details)

Uploaded Source

Built Distributions

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

powerlawrs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (615.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

powerlawrs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl (647.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

powerlawrs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (703.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (618.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (444.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (465.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (571.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (470.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (436.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.10-cp314-cp314t-musllinux_1_2_x86_64.whl (612.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.10-cp314-cp314t-musllinux_1_2_i686.whl (642.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

powerlawrs-0.0.10-cp314-cp314t-musllinux_1_2_armv7l.whl (700.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.10-cp314-cp314t-musllinux_1_2_aarch64.whl (615.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (462.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (568.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (432.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.10-cp314-cp314-win_amd64.whl (262.8 kB view details)

Uploaded CPython 3.14Windows x86-64

powerlawrs-0.0.10-cp314-cp314-win32.whl (242.7 kB view details)

Uploaded CPython 3.14Windows x86

powerlawrs-0.0.10-cp314-cp314-musllinux_1_2_x86_64.whl (613.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

powerlawrs-0.0.10-cp314-cp314-musllinux_1_2_i686.whl (644.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

powerlawrs-0.0.10-cp314-cp314-musllinux_1_2_armv7l.whl (702.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.10-cp314-cp314-musllinux_1_2_aarch64.whl (617.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (441.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (464.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (568.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (468.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (434.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.10-cp314-cp314-macosx_11_0_arm64.whl (383.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

powerlawrs-0.0.10-cp313-cp313t-musllinux_1_2_x86_64.whl (612.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.10-cp313-cp313t-musllinux_1_2_i686.whl (642.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

powerlawrs-0.0.10-cp313-cp313t-musllinux_1_2_armv7l.whl (700.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.10-cp313-cp313t-musllinux_1_2_aarch64.whl (615.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (462.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (567.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (432.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.10-cp313-cp313-win_amd64.whl (262.6 kB view details)

Uploaded CPython 3.13Windows x86-64

powerlawrs-0.0.10-cp313-cp313-musllinux_1_2_x86_64.whl (613.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

powerlawrs-0.0.10-cp313-cp313-musllinux_1_2_i686.whl (642.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

powerlawrs-0.0.10-cp313-cp313-musllinux_1_2_armv7l.whl (701.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.10-cp313-cp313-musllinux_1_2_aarch64.whl (616.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (441.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (463.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (567.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (467.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (433.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.10-cp313-cp313-macosx_11_0_arm64.whl (383.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

powerlawrs-0.0.10-cp313-cp313-macosx_10_12_x86_64.whl (392.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

powerlawrs-0.0.10-cp312-cp312-win_amd64.whl (262.6 kB view details)

Uploaded CPython 3.12Windows x86-64

powerlawrs-0.0.10-cp312-cp312-musllinux_1_2_x86_64.whl (613.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

powerlawrs-0.0.10-cp312-cp312-musllinux_1_2_i686.whl (643.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

powerlawrs-0.0.10-cp312-cp312-musllinux_1_2_armv7l.whl (702.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.10-cp312-cp312-musllinux_1_2_aarch64.whl (617.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (441.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (463.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (566.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (467.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (434.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.10-cp312-cp312-macosx_11_0_arm64.whl (383.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

powerlawrs-0.0.10-cp312-cp312-macosx_10_12_x86_64.whl (392.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

powerlawrs-0.0.10-cp311-cp311-win_amd64.whl (264.0 kB view details)

Uploaded CPython 3.11Windows x86-64

powerlawrs-0.0.10-cp311-cp311-musllinux_1_2_x86_64.whl (615.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

powerlawrs-0.0.10-cp311-cp311-musllinux_1_2_i686.whl (647.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

powerlawrs-0.0.10-cp311-cp311-musllinux_1_2_armv7l.whl (702.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.10-cp311-cp311-musllinux_1_2_aarch64.whl (618.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (444.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (464.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (566.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (470.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.10-cp311-cp311-macosx_11_0_arm64.whl (385.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

powerlawrs-0.0.10-cp311-cp311-macosx_10_12_x86_64.whl (394.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

powerlawrs-0.0.10-cp310-cp310-win_amd64.whl (264.0 kB view details)

Uploaded CPython 3.10Windows x86-64

powerlawrs-0.0.10-cp310-cp310-musllinux_1_2_x86_64.whl (615.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

powerlawrs-0.0.10-cp310-cp310-musllinux_1_2_i686.whl (647.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

powerlawrs-0.0.10-cp310-cp310-musllinux_1_2_armv7l.whl (703.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.10-cp310-cp310-musllinux_1_2_aarch64.whl (618.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (444.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (464.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (568.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (470.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.10-cp39-cp39-win_amd64.whl (265.9 kB view details)

Uploaded CPython 3.9Windows x86-64

powerlawrs-0.0.10-cp39-cp39-musllinux_1_2_x86_64.whl (616.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

powerlawrs-0.0.10-cp39-cp39-musllinux_1_2_i686.whl (649.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

powerlawrs-0.0.10-cp39-cp39-musllinux_1_2_armv7l.whl (705.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.10-cp39-cp39-musllinux_1_2_aarch64.whl (620.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (445.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (466.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (573.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (473.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (438.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.10-cp38-cp38-musllinux_1_2_x86_64.whl (616.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

powerlawrs-0.0.10-cp38-cp38-musllinux_1_2_i686.whl (649.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

powerlawrs-0.0.10-cp38-cp38-musllinux_1_2_armv7l.whl (705.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.10-cp38-cp38-musllinux_1_2_aarch64.whl (620.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (445.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (466.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (473.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (438.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file powerlawrs-0.0.10.tar.gz.

File metadata

  • Download URL: powerlawrs-0.0.10.tar.gz
  • Upload date:
  • Size: 516.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for powerlawrs-0.0.10.tar.gz
Algorithm Hash digest
SHA256 4ef8a90623f727af0e89f904b636bea3c279740097da97d1d3d39f9c0cc156cd
MD5 7ede232870e1db9afd9a96ab203ead1a
BLAKE2b-256 ebcb8f6257ad966c84a62a77888f1496188314e90d682de74094aec6ace3934a

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 379cad0ae06544f3484cc5b84e74de93af8f1b185d1098e9ffd793eb6d80cf79
MD5 0898f4adfd0442ae0c5db5ff37c90693
BLAKE2b-256 51c0458bad2d084cbd1cc9f22b7e33fc314dfb3dc3bd80442e736aa0e99df8d8

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 690b0688081b607f11c42e7ac9a4cb141c6599077e99defcfed84a159a1424ab
MD5 b0de919678abe1d8e522ef95e645a64f
BLAKE2b-256 1eab409dedab2e0e03f4fe17074ce5327ee1b0dafe9b588ae4e35828bf541f61

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77a94291da28f4e040b67f9e2aa26180fecb01e201d8acc4a57fa63bb3273474
MD5 85460797565a460730c6d24dbeb149e7
BLAKE2b-256 e0b210dd76706765f7a7854abd7cc7ae0bd94b595bd128072ea59346fe57929d

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce12e027dec14eed5453d3c8747cf935a3f59aa55ddb06977277f9e2e362574b
MD5 3dba43e8899dc968a1a7a30bc6a29a85
BLAKE2b-256 7679151eab7f10c94960a74231b42f796ce11195d7eb6527df39f098ed553cb3

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01a4fb2a586c3a0973c48d335f7c27df4dac007499bc1530b8d9399aa7822c16
MD5 69737ce798154feb14e8b53ffc5b31f4
BLAKE2b-256 d7e950ce16143edff57c83ef89c17d391371ec15bae2baad22c9e3c9caa982cd

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 be0412b883242d4b350adf971869c13c1cdf42dbc1dacf654e891f19ff54ddea
MD5 84c7ad449182c49202d1abe725a8e615
BLAKE2b-256 1924093b9207f37c48e0e8adc870030b75a97f64d38efed14a0de4a6f20e850a

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d3f06b91fedb199011954cb2edba2d9fbdfb4af11949885204b9140b0a8b048
MD5 74fe0d3d70d490d548ee08f05fbc8cd5
BLAKE2b-256 fd287e14233b37cffc37a8bcdad5aec1d272c89a102b15895ee2fd9a8483f348

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d8e2e6716d43bc985f70a748fbdbfaec5932d95fab02f0e2360cb9fec7cddf2
MD5 c542eccd47afb0234371f1ce17326065
BLAKE2b-256 bf0496181160dcbea9ac4a503ce5c2c4ee532bbc7ef407b34365e09e8cc5222d

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7fde1f7fd85d3ad4ab1d59d3a2c2d87139ae8350110fa57f2ef850a56f4fe07f
MD5 ad7023a34ef93df8534147a73184a7ce
BLAKE2b-256 74541b0b81becd99065b8b18f6beea4638b7aee248a25d47d57137bf0e0e21b8

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7814f8a4346da317387e258c5358e1ed656b5932f5ec9d91ee1950036654654
MD5 4bb6b0e913c019af43f63d708c33c656
BLAKE2b-256 8b0ed4810822ab33b68e4200043f4e4feae3e8ad10bcd1fc55688a4c53f7942f

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ac16f372130f3a0baf721abf8123eb02839bbcc7981c616e64f8a19116c4588
MD5 aadcdb9ecd9cc91ceb135266ae98ab3d
BLAKE2b-256 682c99529bab677031e4fceac2048a41da8614b6bf73ce7cab377d9edfd01e47

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa891cce7b2cb04d835a8349e3acd8426ee5b2a33866797587304cf1f09535b9
MD5 b065d18791cba0852b8af1c6730fd591
BLAKE2b-256 b663c4b3611af563e425f13995a100749baa2a7f1120de7ed55df754fbc4d412

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dfa08023695f1835013b2dfc4e720941af99dfabfd1301341435eed040578b74
MD5 23e2483df0c37eab285aa9d0edf385a7
BLAKE2b-256 2783146e89ad80bea7a48a99d3e5992dec5d13d13f70fa45a95153a324aaa82e

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9977239c6f52fd67abd41680b40cc025a9d07099a70bcc2b23bfab37d9b4f34b
MD5 c3df5402e1ea624aeb775fc5a083839e
BLAKE2b-256 c3e6e316e831da75881108caf4a4539dfe279207557a476c901bf437ef870274

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ec6a320467bb0a91c83458c2830aea87883773df373aaaa4a78cd8af9c7cb43e
MD5 b00ca4b9b95b32e52f6d0abb515460c8
BLAKE2b-256 d81c5ba9eb82ab07101fc01b6476db87fc81459664cac527cd4886d88dca6752

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c26bc595567e7be084e34d98f4787937659ae98a38110c8944d4a1333f7593b
MD5 a55ec8cd7a4b38ef16a561b788e4c093
BLAKE2b-256 635b21365d2229af772e1cb47df16791cce7280f7462f76c17983a4d25050e63

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0309f9052ffb14ccd22f7f69094d9cd54c5349e15a542b091a2761eda393ec24
MD5 25c509aca670d262bc45638179e289a0
BLAKE2b-256 0dc3c802fd1d49ee29a4f8fc2c220ca28227feb622382b42f539ef441fff7c4d

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92fbaea31d7c027db92d254e555f01294b60d0d3a714b90e7ecc3f87b2f2c7f3
MD5 ffcccaf947791c1a156a128dd951b654
BLAKE2b-256 d7299cd33b4cc07819febecfef664830e8c15289a8ad9caae68dd6f781ce6497

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 066049cecd0010d69da83c953850520eb3164f4222d83f4bcd01194e718d8699
MD5 fa9dea5f5464d09f5e7795a39d4dadc2
BLAKE2b-256 b5bde2e0daedbc0f41a9a281a204d3e70d6440871c4b932433b834e7c3f9dd0c

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314-win32.whl.

File metadata

  • Download URL: powerlawrs-0.0.10-cp314-cp314-win32.whl
  • Upload date:
  • Size: 242.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8e1d2ff33d4b4d1ca92737ecd4e5720d2af75b15180b63cfc6fe92a4bde39ca5
MD5 4fe64e23b0ff74825c431c7574897231
BLAKE2b-256 86feef5264212ac6409905c82ef5d56444a9012f7a2670ef9c6ec3d8304defa4

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 886756c3f9e0ad958678c3033b7e91ffe4eef23e585c245ea06ebcdc936cbb82
MD5 4e770d58d29cdbc4249e7d10cbac839a
BLAKE2b-256 e92a7a4559e7e18ab68ea6c47aa0324244c29943acf5fdd52d12926bc9b2ab05

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e9f630ed3b7a7b94918dd3c43d4641af4dd4915829fb285f947eeac52dce38d
MD5 5188a0a5f3cb67d95e52a7b48f4b27b8
BLAKE2b-256 da44cdcbc1dd3ae1eb923ade224ec85d73f97b160fce6624881febc150857228

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6380ebc8c077d9d086623807db2a633609b4d28843930b0dfb4686005920b85a
MD5 c673d67e9d6746670fe0c3ecd30587ca
BLAKE2b-256 d8f75062c0ae47d636491f7844d11187290ec0de425635cd3cc01adf24363919

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a713c1d497099c0c839b9ebd50ea510df29f15542867d45c8a4f452b8ecc5e00
MD5 2e4c211d1eb8d0cbe379ff4ff1f26dc3
BLAKE2b-256 00250da7a18e5246f45602b3e46bd5334221fc703149ac846992b57f3bd741f0

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5115cb6869941da3164fee009ed98976f00950f6acc9f58485fe8b8cfe1af9da
MD5 40c4887d92a3b25d7d3e2f45d0391ca4
BLAKE2b-256 d201a8c84a008ce4f42ff82c48b838e1c845a9bd80a5c332bc82f45313cdb284

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e76051ac419fb92289498a277706c2df310ce9ba084f963083b890cd63ef3d9d
MD5 10350a9937a0f20a3f8486eee9e4f678
BLAKE2b-256 6966bb456061dbee9f605c830b1e541bb47e6f19b6fd724174ae46e485c08f49

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c957fb8dc3a537e662431dd85b034061979f1f7d16155fffd2d4c6ae4149cda
MD5 545ce9503733266b9ef1c563baf18644
BLAKE2b-256 2e8c54ad6cf63d6f275f91dc6aebf7efb41ab1ab396e99a5d517647fe97b8c03

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f29a880251a98712817b0ce5be242addd3fe50623d4edca051624ce67656a66
MD5 2bc274d4c934835ca7280f94333c9fb3
BLAKE2b-256 17db71f16184dad54b0b98af52db08f95621fb47c3b99daf99a15d0c20b273e7

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92f36bbf00e39227582a76f5c8256e7a5a361a3cf52ae804efdf8b159719545f
MD5 c96c9a7486de930b377b5e60804bd3a1
BLAKE2b-256 01ba954fdc8eec9c5706502f5df13c9b5c3c2193c0cd46ae009a1b0e3a6927cc

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7edd6962a8bd43db45340be1aae07defc7620cdc689433afec516d175f0e5fb
MD5 7591be5c4a1b8b84f37371fe43a5721e
BLAKE2b-256 caf4312854e484cd06963986c20d319bdb414db943fd5309d4e6bbbf6c266c21

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cee6da752892fc6a8e6be784d685629350934af9ea11fdae5bbb98dad1765ccf
MD5 0e2702d92f2e3485078f1963a99b593c
BLAKE2b-256 d929596e610d251956d07f30b10f942d22659f0527edef44da9ea630ea8ff0fc

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45d63b56da74562d40007ee4725110edf4b77b9b488442c6e59e164943655b87
MD5 4970b3b568763629d9cea6620c9f6014
BLAKE2b-256 74052e28b172b3a7f13c5e8bf6f8ef1a8ab845342acae12fcc4f6a9baead5cd5

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71c38e65bb913819cf895a118fafb9eabe5484fdc1025f1f23044d1289332917
MD5 438a10ca792a53aac3aa178f5a184e22
BLAKE2b-256 945a39e9a68fb2187240032be874a5edc3dbb7d63729696e4ac99c52d3ca8b12

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 90d88206b370e59d2d6b84758308ca63451338c1c16677ce8e6225bdc6a888c9
MD5 fd90e8fcc5b0fe668f18e8caa0fe3dd2
BLAKE2b-256 6178e4c182d0c4b6036f9351ebe72011174930c634ecad30dd12bf4c618eca6d

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9600aa287bdf6cc29dad609113c4eafbfc911cc4ccb17758ffa15c7b5160aa81
MD5 89e5b91e374861ad146373edcbdd01c8
BLAKE2b-256 e70e751da72cb362e66563bd153c1585984bd7b6fc9c644c6f1deb14718d18bf

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 462dbe3987aa00e3aafb764939a838d661bc08fda723e51caca37df57b0ad59a
MD5 824fdfd7d4df5a0ab1890b4a50d8a372
BLAKE2b-256 9c3b6ca05feedb210ad716e1b81af79169b5cc6fd85a257eef9a1fce3bdd3a46

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78792491397959f1efdb416d52823a373c8c834b3f755a6c117b84911bdc6f78
MD5 1a2ff253e3aa2fd3c31b657f94057ca0
BLAKE2b-256 22e6749dacc7b0bc607150e41fe87ee96ddc3a1da547f050773a2236b6284746

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2fb219870668dc7658c1adbbc25e85ac3d25e7cd8cb474dc124ac9e1f1bc8e4
MD5 fc37325366d4812a55922d0cc5e8f596
BLAKE2b-256 76f3b2ded03b55041f7cd737ec477d950c8cf62a9f52a722be829632d773a86b

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4cfdce37c52273a5df80d88ed77ef92723b05fb728bfa1352999769c587d596
MD5 328b86dad0591e5d5c7d2daa7818cc1f
BLAKE2b-256 15abf03a0c364b4253ccf33d1eb106026aa6f959f186e80c8fb4dcf190ea68f8

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9dc37cba03b281a9db92317951dccec280ce9ee85adcdcfc7ec2a6535696d5f8
MD5 a85335ba89cb0545660d05144dbd3029
BLAKE2b-256 52b6819fc95c413f74e2cfe213ee1424422f9c0035d592ddaee2a5526f8883c5

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f6636a27130bcbeeaa76c1e3decfaa707cfeb89ae7568658dd6689f40cea220
MD5 b0525d22693d985aa0e8d7f541f43406
BLAKE2b-256 f0b5f4b5e63419f5b3bbf9ed63b8cf86837f6a2a2831012cee463f2965c6ae07

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 74d94b8e9e71d2b439460f4c93892949dd80593dbcf4569a1d76b8b391ec1279
MD5 0b863e2289283167445853ec70fe62fb
BLAKE2b-256 937453cf2541f0c31fde298744b1773c2558b2ea98bccc088ce0d590d660e4b8

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dfb458a286941c036b177f7a45ad23e5b2ae36c1405a12a5355f531f7087ae7f
MD5 cbb721bb80f4b59f0399682001122392
BLAKE2b-256 fb8bb85fb28de5d5336314809dc4f830f12148ae0314a846d0a1b652ffddf9e8

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57930f3022d6bb4e4539b7c7899af66f66e46d1fc69c094939a5a4d03770aa1e
MD5 568b6909d3a4d0514e213d0745e9f0d5
BLAKE2b-256 2a74a4e27855098d60411c4724b4e6052540a4635e90b1eafa24a5b7a11fd849

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39ccd21fc009bf3dce38eb7fd7e2711636e50b73dad55d1d23e041a2b960a18d
MD5 79070f5b109c72b7181e4dff8e8a55c1
BLAKE2b-256 686402d7c0a653a1d278f33b3f344e348517b0023b7c6156dd721eb8afbb8644

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37c975a91928122d5ed17aa660402acce90f31f6caaff43ab938d9523725dddd
MD5 f68cd07ebf6b50070aee76da95ed5e1c
BLAKE2b-256 5bab83118abd5d0d349d76ecdfadff364572d40dc822a8f0d8e4285755929278

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d1223bdf1d37c692c8f4057280f91e636ae445fd899372a166716c09d97b0a5
MD5 8a1144171467940c2a5c6e9470bacfe7
BLAKE2b-256 5b4289f6d93e8f53b2bc2c957c3a76d0814439ad49773b1d874252230f9dcea6

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a85ba8061f6e7c393a3f9baeae55e9b31d8c1c0571a5da6a76e3cc7622249e25
MD5 ad750e42a88dbf08b93fdc7e5ff29c7f
BLAKE2b-256 89533a4033cda91e2ccfa5d62ede64b995cf3b3f400315be70f50b02711ccfca

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1e4f0aa7049ebb3abf83f5a822e32b0a3a9dd7d8bad8f0ad6303633889e3828
MD5 5cd970f89d4f289c0a9e3642a227eca2
BLAKE2b-256 a6189fb41a37692418d62a96f6bd8de19315d355827486dad1d4739d066667d7

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f98ace122f7054bc0f3ca7f7f18e68464028910b152d76fc9065547e61bce941
MD5 15e7b91085cd423537e900dca38aaf0d
BLAKE2b-256 2a80e38e7e1549326de96d27f903366298d7e4eadd52febdec4c8104f82229a3

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8d12f3909b2c2aab27ac7b84e3ee5e60aabc46c0181dc4fb557a88e315a022c
MD5 b8250c3e4de4f83f6c6f7e3fa8efe2b0
BLAKE2b-256 550b78a24ecf15e360f5cd4aa3a73068ce5683365ad20b026f9ca4b4e59e1367

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ddc57f4a0187edcc7c861f0854c3f4a62cbbb659029412b72d6154e2184cc086
MD5 06b77c0208e742aa30afb7d351322ae3
BLAKE2b-256 276d88536fa0d0a839a4d9bf24b6c7ba61c928f473b6b4e6cc968e922c8fa528

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 27e143ef1d97164beebf4e011977efe9f563af0c785ed63350efd750970c8344
MD5 3ba2e4ea74d1fb50c13e414f9e41e0ac
BLAKE2b-256 19ec3b02bc039373507b9cc51e3384329ee5eed5326ae92c42c38e56fc73279f

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 896e78ce071da27ddde2a78077798c9fa13ba0f9b0ca1f38411fd282c135e2dd
MD5 f3707c465361a76d35613ec53d9559a2
BLAKE2b-256 cbdb46472fb22f36628375e9d812645abf16883d66e27dd1a28c7e97f4df99f5

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6bae885fc5569fa9600f818bd0a530785a3c13fedb8b994d92deda2ed22e36a
MD5 f1b01774585a7e8f6dc0ab5326b001e6
BLAKE2b-256 a03fd24b234029cfd0d7165f397c38cd2d6a563e8a28ff774d835ff7509b248f

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec2e70a409fe2db8c31901830a8d01bd7829aaa8a857664d7387651625ec5dc1
MD5 9489b4acb5bd9d56d65244f599209ae7
BLAKE2b-256 49c8a7b19a6baf158bf27602e4fed85ae6dffed643e9ed7f0fadb57d39e0ef62

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b43bc9d1e8c9e1398a33bb109119248d1a2eba740707da5b4b6a84aea8c87302
MD5 3bb951644cbf1abda5dcc33764dbffa9
BLAKE2b-256 59c046a379a3ec2654f995bb34e721537c266223e6fedc20540116a5f1d94e39

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34025782055efe7fad4a1643aa2dc19ae462b06a27bd8a2f110a437aaa8bffbb
MD5 77c425e0ae0c2beed67a1ffe2720b48b
BLAKE2b-256 55234021c9f09b4530350fff5df1ea003e413db0295cba2df3bd26513b5be95e

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8da8070ec5fe1b4dc5782ef106829dc05904ed5af8dbb62d6168b4f508ad2fdb
MD5 b52d2ebaec0a67801154385498e97294
BLAKE2b-256 0fb7b2ebc2bc4fae61ca4413b7fbdf96862fdb45cbacfa875607b42bca7f0456

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a0d1f2b87e9e2d62799d00a1e2e60bc8378311eff3e8044d1b3f17f680e4df4
MD5 4e8d2884ec5f510f0912fb2b902e5a85
BLAKE2b-256 c4ece23fff1586a71f86c49af2aa8d37bf4490faacb4ebabaa754b2fbf24ffc5

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ca17b06c65b020fc98ad220e52a5f762036fa747ecab5dbbe89bc97ec27b235
MD5 dcbbddd4ccce27adc44327067327445d
BLAKE2b-256 7ec57c1534d9e8544ec7aa0ea4507ca5bb9624e586454b86e0d2d4a705060257

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a77db326b321ce1e8edf6c254f6b396eda3a31f12b723517943e473f59bf6d0e
MD5 14b95fe8dfbd5c0c954e281ceba2f666
BLAKE2b-256 673b5b2526dae96ff6260b01fcaac9fde763fe8d92fb69a1d2aaafa3eb1548b4

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4347ab9771a4092fbbc72ef6707bf64512e7f58063e8b52dba47af40a5a454e3
MD5 cf45198a835784af81903cdec52cb83c
BLAKE2b-256 575ac4a5d2a0e8e46e81392c7a3094a0e729e1c149af1365f1e285c4b695c603

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c7e3bfa3167e6835470d1408238b2baa565edcbe3a11f8cdd72731288670074
MD5 b70b55b438b83b416ec9be1e1307f324
BLAKE2b-256 890c7c2bdf237364ea0236edc0e05c5b602bae14b7520459ffd65bd829bf7345

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90999949a4a9c17b5817021764d5bb79499a7d716f5e4175f563d03c07f7a17f
MD5 dffc99c4543143bdd1cf593c6893356e
BLAKE2b-256 0081e7f14ec4ff0897721a98d275a3ca9a70c72eb8d62c5cfed92665a2b7c116

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a7feff8a932ec764b8248844da6363250cbb18c174a6be72db8d7f1051ec8328
MD5 d033a4526219d6743eea7591c1e271f8
BLAKE2b-256 0ce292a3599fb2c03ed29ba76440a852e27dd090dab02b55823996374aaf6321

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5596d6871a8a8c3a7631efa952a8dce81ebd44049a6558c332d3794634a76acf
MD5 5f0035a75e389deb6308739224b90abc
BLAKE2b-256 17bfa4226b11f6a0d3b1c1bf5519a9fcb42a5aaab91fd75691e8707f68a3a5dc

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 afb1295aa5297c6a0d977db1b6c025aff1b2c3470b0a0d4a0e4145fda16dbf85
MD5 57017635658b214541ae258ccdff8d92
BLAKE2b-256 33e0754a6ca5ec27f1539bd66ed6ff67b14f1e9d9bc8ecb768ad7c0e5ef89dac

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2179a272f0d4bda98d8bb5a58097d4afa7eb4446e68b762d268ed74abcd7846b
MD5 4870c6a2c4907c187814ed3a45ed8d4d
BLAKE2b-256 ff4ddce38b279ea62241f95577c8a6c0b545e3bfc11cdbcf52fc396f8ba28642

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a0b3713bf753aedf1604e6394523eec9479e5d32c29c92cc03c703706f0fb43
MD5 111786e0cc51040c0fe21de85bf683e7
BLAKE2b-256 d72c487e715de3bb11518f6756603f75e82e00cc546393bf1ec67e427bb13440

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cad168bbf28f5f6bdf9dc2719867acc7606c823ebbd3c7af8e9df708af6efee
MD5 976031a199c414e65fb15df95c804758
BLAKE2b-256 10c95c3b6cf17f8ac6436cc741ebfe00689032f52fc5113b740b66e2004cc1b1

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b67bb719bc9495b2194202127cf12317f8bf8b29d490d5a08822c9a97b27584d
MD5 4ce296fa3ebe3846976a867be9821d05
BLAKE2b-256 2a8b0fb1ca688e68b4607c65c82966dd9c29ac95bacdb3f1f03861d2f7f6d90c

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1d6166d59456a5def41be4f722f4f1feed8c10b26438910887cc92a07cb1a84
MD5 3a7b272b35f739ccdec3475652e3fb72
BLAKE2b-256 d0bc8e1eeb06a9f7982bd123ed304a475e28eae7a3cdc47a47c6781efac36f18

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a45ca33b251d8e08dc19cfed2400228d86f1dda34fcf804e56a52c1525477568
MD5 6c119c60ad7f42ef9187328f2b6a6934
BLAKE2b-256 aad497720894c5c5795c0124862be2db8ceb3d65a312b58a105dbc7c8f63afe5

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b39504139e5f7df9a4664e4b57357430200b9c23b6960e09885886fd9e4c99f0
MD5 645036d3c29342e79ca80618a35b410f
BLAKE2b-256 0be700defd0f4d6c65b72c27d1e8d03c270a5c639e9bd2dc733b2c146c95d8ae

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3fbfcac95fda581802c4eba2779f0e683de5d81051a706adbd46535a412b8e93
MD5 6c94bf1a2d2bfad819aa1fdf004bf2d8
BLAKE2b-256 244e5c62d1304dc0175bca64aaa17764cfaff35db0b701bba2e997259171c03a

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e935d9f3d6c8342f9f8e2ce7bd827148a56751f2743693071adcdbaa7f87aee5
MD5 ea8f4cdd0e51f6d33b86237a9acb2f3a
BLAKE2b-256 3e5649bd15a672dda5048592ebaee2cead23b8f5209d099f3f1867d14149e366

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27124bca7c40a7f16d11684a9e8a68c5c6978e51b49bfbcaf2b09228636a3f0c
MD5 cc249f69067e9286b8ac51164de6fa75
BLAKE2b-256 a6e842ab314517b7065b4f620d4f02cf5503057902cb09aee967f3ece370ec18

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b0871c1716e9b265b3c2957e691500fe2c3e809686c7557e02da12c8ba112d70
MD5 ccfd16d80277241a41344b3a02fd2fa0
BLAKE2b-256 f20de710edb46857deb18dc10c67961dce7330d285046e03d2a972577e35479b

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a637830e6cb6f84288a865418c13ebd8c2c8af5a847b8ac7cb108a8fa1e9241a
MD5 cac0f84d05ddfe48d10fe3f575f730fd
BLAKE2b-256 f41228b5323d88ac66f1f9bcc464a07a0b63a847fbc974e81b2f8c728f14cabe

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eec30969a93f36cc1c5e5b9fcc54559932f0f519fef9e1d39fb7a9fe72bf3c3e
MD5 92ab6551615ce982f6da6d8290165a3b
BLAKE2b-256 26d3227841494ea514a7a94a70c59b872fb4d0a94998dbf6632d3e4aacdefdb5

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 316000c7421aaa8f044096ea9aec8f1c8fc2a432116677e4174b43ae0d44e025
MD5 6202b9bd9d9357e028cc548369451876
BLAKE2b-256 7010e6f3d01e9b52f1781ebbc7d5c2bd3fc20aa467127c98a9662a435b2de3b8

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a73948fe14ce9d00c7cd9ab7f9f4c56827105bbd4a2fc26a83620a11e1460797
MD5 ccba4952c0fc1be7ebac8c5e1981c6e1
BLAKE2b-256 9f9c1c3179f7c1f1cabfade4e8dea1e073f30a9c539017065bdcd91e62cc3388

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02a2095842c332816cceedc839a86cc9537672d963e86812e18e2764d58f47ba
MD5 7d887f767f9d66b555d52329cb7c1340
BLAKE2b-256 8c15127e395f339fbe036c4267b40d760fe5f32b20ab21d313b22835af87f21e

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cef6cdb6d445ebf85c4535ed6341f8dc266c950c504a37d6dc76345b4cdac16b
MD5 1236b2646480537c9e15375cfd369c03
BLAKE2b-256 353b5f100a8b03fa8978caa7d71c6473cdfb0d21f9e27a39beb65efa9aec135a

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6564dd54ad5f8b0967d1d378e3e3aef7e31072ff8b2aeb279c3558448ae57009
MD5 6d150ecc3cfae0d82c36bd77712796e9
BLAKE2b-256 880f58a8df608afeee12d5221f41ba1fb8af4899fa54e5ed73a8d95f88c18029

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5456f073dcfdb946522d1971a40faf73f080d6f9d90ffad15b08ba9d44b198b5
MD5 382ef840d487f4ff6513ccae11127a6b
BLAKE2b-256 d2cd0f29d4a1df08f2eb45c62ead85644ac41908918ebf67502b321384ef4daa

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8d22d63af69aa245bd13503f214e517aec9a6f580b3f50e216177c293ef0b714
MD5 3a79e442ab4102f507c6d28232b870f4
BLAKE2b-256 458ac01f2c3feb2419f25fc3a7348fc6f427800fdb15c093b43c8449a80d1304

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c9cc6cff7e01e7d9c0cf23fcc6b5bd7dd98d02479697de992d98af9b5eb2ae1
MD5 6c134331c5d5a733a5a18b0cc8d9ab8b
BLAKE2b-256 0bbd70f92e17e056f800647bb8265a02d1efd30efa517e897f62fb7aab0fb3d7

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 eb63482c030132d795af79dedf8f194bd6081c72c6d2b2bdf78e7bd787a743c2
MD5 12e481828c5ffb6eeae76c685ff241cc
BLAKE2b-256 56da846647880c256206912e5f079e7026ab9eef7064ebd9fc2777aeadedd428

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5741838eea64146cfe9b70e3879521baf0ec956be4e55fb4108d9a7fb49f69b5
MD5 afc05ff47773faf28d5bc6803ade04f0
BLAKE2b-256 4dca55c017f9ed6da4989a9bfbf7ca7c93fb2e20a19c5720cba681a3071a3ae2

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 365b8900084cf32b8e43d0ef6c9be09e0ee0d9c45665843003a680119d1ffdff
MD5 6287bdb3c6b3f6a41824848dac257eb5
BLAKE2b-256 66b8217f307aee3a5346393414a03aa424108de5b836b184df692bc77f7e6427

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d0fb7be39d73471aec28910639292abb413b767c4a91702f6100902cdff334e
MD5 6e22952dadc3396e242af6219c37276a
BLAKE2b-256 a9c361e090d9407a5656bc5928d97dbd97476e39069346da1ba13928e21a843f

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 002303a6ac03ea45e5e7409b208a6b6c7317f92961b887eaefb28e265dee1050
MD5 c3b324edcece73401af1352cd7c5390e
BLAKE2b-256 3c5d76d6e22914508e468717b5869e73fefbf93ef5c0159d1caf5cd4c23f8bbd

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2517eb84c36f2e5b08369177c515ab478fd161b0b8d4d36770af261618878fcb
MD5 35953860a677a7d4487e19d9da8febaa
BLAKE2b-256 1e1b78c33561ec9ba2b0fc2d7c21b956d943e718f7aa7c82cec51d0730f46dda

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1efe39170c77d1e81fdf0771c8e7f1ec5996b0633fa7a511076680e1e54e9194
MD5 2ae8c459fd91bff89877bf92aa646654
BLAKE2b-256 072a6126fa5f1d547bbaaf624ef2571b44407d6fbed30f9597b97a347e5cea59

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42bd5726be5b0522d2c4bc276dbfdfc02b31d7d20ca5efc49230001a44c83037
MD5 5ebd1aee27fe172ec00906bb48ea19be
BLAKE2b-256 21f18ebfe8c1a725f5ca714e46ea73eaf9ba4e102c415bbfc6bd787614474fc3

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17adfc36e3e30f5c160f12f82986ef0e62164193215d7162984ef51f337ecd82
MD5 3538ba3f8b819f870ac42390b62cc3e2
BLAKE2b-256 36de8405304b5f11b0f87c434b49dcc4d08d56fbf2936c0c03b5118521f20721

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8aa739a9ae212bd5db4f5a692f293ab7ab510d69a5a56dabe92398984b643f4e
MD5 693eba13e16cbca58703031deed36a71
BLAKE2b-256 5f2953cfd70fd2fa39c14387da9df05dcfa9994c28ef729d1432f88b2e1f1eb5

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d36ddc01c406c9492cb23698d7d90d0e8be21a6a1bce8f81d476a2fbc86349d7
MD5 02526347c5093f19dd383bb1a07c2544
BLAKE2b-256 a70d6e15b1156db505f4b130772832bbc86f0bfa9a64983f26e9c8994df2f02a

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59fe2d691032c70c40109f45305e6f85d6af42520e6989dd03f043d0dcf80684
MD5 9c60cc89255a0778480393fa12a36db3
BLAKE2b-256 02dd41e3f658080d81d3e9f9fbd586ebe208330841c6d4260b159ded986a1b5f

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44761b5447ef0f66147ad9bbe06039b96454bfb701b0975f930bc078dae90fff
MD5 75f25cef0fd7d4cad5fa580b55ecfe3c
BLAKE2b-256 3e252ecbe8f21ebf49363523f8ed8e2765dd028beec94707c499017703b75a37

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a3d887a3bc20322e9eb3600ef2165dff25ff49c3cc7b3f15c0e354526b4a3da
MD5 5f19c89e5fd03ed262b691598f7b8c9d
BLAKE2b-256 029c11684526c9eadc71b99d40ad62164b20ae744a2445aab629e521ede95eec

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58b1e750729254530abb038b8e91545fc550314f1dedeaf884907d02bc413357
MD5 c8aad9385337562e170d6b46905faafd
BLAKE2b-256 c0a4b533f86a57eefc67875a548f1ed663e3fc443e081e1ee7ea2314862eee02

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d2bf457b0b7e3c9605413d9821ac3ebe05c0caf069732c77723ed3aeac3f362
MD5 069c645d0137b7b9ef9a82b4412d5b0e
BLAKE2b-256 8a44b2d0a88e2dfd57d60f220081b7dbf28af2fc118b94d7aa1eeb2f44b61134

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b73922b5479810cb50bd0af18036fa2244e5ea5695020f6a31656018ba930c19
MD5 4bd2c57c441c20a874da1cfeebf2695b
BLAKE2b-256 953228021402b14df39be63388f6c3e657ef1bb1e3b9033fb22188a2a66cac32

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 edd8da813021f53c42b29ab4e5ee81dcd91e8568223c34c5d6e74fc773e8b9d7
MD5 fbc302cd5b84b582da62fe2f78532ffe
BLAKE2b-256 ae0f52d30131e413567dc189a4ca1093c61ecdf1a771d1d2019b9a9a8054b5a2

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e72f38d0f2c62f7a410b869a05604e87d69fd5e9e847f3edb579ec4cbe09b031
MD5 628443a23fe12f9275170e297955ed38
BLAKE2b-256 9d752a306bcf624745fe19d183c3c1b989e8ab27831d3f8979b6f28ca6e3ece5

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 15b47d5e7dee73d005247b4706a6d345223d31a405c2223dd7f866be82323db4
MD5 5cb86acc3fcf41c3b788b08b5f97323d
BLAKE2b-256 ad594f4f49c4a1e4002919f6e0b673dc78dc242f7e90d62fb4e454d35dd894fd

See more details on using hashes here.

File details

Details for the file powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerlawrs-0.0.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13d67b1b7e16f520d325b9b066dc4dbd5613b1d98477566e13f56906223542ae
MD5 5e453e97dbf3b437a480ce970f510cfe
BLAKE2b-256 dbeb3492036b7028715c19596a9ba700704c93d5d6cc48f08b8a07779e71a982

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