Skip to main content

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

Reason this release was yanked:

Wrong license attribution

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

  1. Clone the repository:

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

    # Create the environment
    uv venv -p python3.8 power
    
    # Activate the environment
    source power/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 notebook) are listed in requirements.txt and include:
    • jupyterlab: For running the example notebook.
    • numpy: Used in the example notebook.
    • polars: Used for data loading in the example 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.

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/Example.ipynb.

Jupyter Notebook Example

The Notebooks/Example.ipynb file 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 power/bin/activate

# Start Jupyter Lab
uv run 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.3.tar.gz (314.5 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.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (609.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

powerlawrs-0.0.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (638.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

powerlawrs-0.0.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (696.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (611.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

powerlawrs-0.0.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (438.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

powerlawrs-0.0.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (458.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

powerlawrs-0.0.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (560.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (463.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

powerlawrs-0.0.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (429.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (429.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl (606.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.3-cp314-cp314t-musllinux_1_2_i686.whl (633.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

powerlawrs-0.0.3-cp314-cp314t-musllinux_1_2_armv7l.whl (694.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl (607.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (426.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.3-cp314-cp314-win_amd64.whl (258.2 kB view details)

Uploaded CPython 3.14Windows x86-64

powerlawrs-0.0.3-cp314-cp314-win32.whl (239.5 kB view details)

Uploaded CPython 3.14Windows x86

powerlawrs-0.0.3-cp314-cp314-musllinux_1_2_x86_64.whl (607.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

powerlawrs-0.0.3-cp314-cp314-musllinux_1_2_i686.whl (635.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

powerlawrs-0.0.3-cp314-cp314-musllinux_1_2_armv7l.whl (695.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.3-cp314-cp314-musllinux_1_2_aarch64.whl (609.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

powerlawrs-0.0.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (457.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

powerlawrs-0.0.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (558.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (460.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

powerlawrs-0.0.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (428.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.3-cp314-cp314-macosx_11_0_arm64.whl (377.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

powerlawrs-0.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl (605.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.3-cp313-cp313t-musllinux_1_2_i686.whl (634.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

powerlawrs-0.0.3-cp313-cp313t-musllinux_1_2_armv7l.whl (693.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl (607.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (426.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.3-cp313-cp313-win_amd64.whl (258.1 kB view details)

Uploaded CPython 3.13Windows x86-64

powerlawrs-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl (606.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

powerlawrs-0.0.3-cp313-cp313-musllinux_1_2_i686.whl (634.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

powerlawrs-0.0.3-cp313-cp313-musllinux_1_2_armv7l.whl (694.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl (608.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

powerlawrs-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

powerlawrs-0.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (459.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

powerlawrs-0.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (427.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (426.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.3-cp313-cp313-macosx_11_0_arm64.whl (377.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

powerlawrs-0.0.3-cp313-cp313-macosx_10_12_x86_64.whl (387.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

powerlawrs-0.0.3-cp312-cp312-win_amd64.whl (258.0 kB view details)

Uploaded CPython 3.12Windows x86-64

powerlawrs-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl (606.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

powerlawrs-0.0.3-cp312-cp312-musllinux_1_2_i686.whl (634.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

powerlawrs-0.0.3-cp312-cp312-musllinux_1_2_armv7l.whl (695.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl (609.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

powerlawrs-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

powerlawrs-0.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (556.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (459.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

powerlawrs-0.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (428.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.3-cp312-cp312-macosx_11_0_arm64.whl (377.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

powerlawrs-0.0.3-cp312-cp312-macosx_10_12_x86_64.whl (387.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

powerlawrs-0.0.3-cp311-cp311-win_amd64.whl (260.0 kB view details)

Uploaded CPython 3.11Windows x86-64

powerlawrs-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl (609.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

powerlawrs-0.0.3-cp311-cp311-musllinux_1_2_i686.whl (637.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

powerlawrs-0.0.3-cp311-cp311-musllinux_1_2_armv7l.whl (696.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.3-cp311-cp311-musllinux_1_2_aarch64.whl (611.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

powerlawrs-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (438.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (457.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

powerlawrs-0.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (463.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

powerlawrs-0.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (429.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (428.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.3-cp311-cp311-macosx_11_0_arm64.whl (378.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

powerlawrs-0.0.3-cp311-cp311-macosx_10_12_x86_64.whl (390.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

powerlawrs-0.0.3-cp310-cp310-win_amd64.whl (260.0 kB view details)

Uploaded CPython 3.10Windows x86-64

powerlawrs-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl (609.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

powerlawrs-0.0.3-cp310-cp310-musllinux_1_2_i686.whl (638.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

powerlawrs-0.0.3-cp310-cp310-musllinux_1_2_armv7l.whl (696.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.3-cp310-cp310-musllinux_1_2_aarch64.whl (611.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

powerlawrs-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (438.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (458.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

powerlawrs-0.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (558.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (463.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

powerlawrs-0.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (429.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (428.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.3-cp39-cp39-win_amd64.whl (261.6 kB view details)

Uploaded CPython 3.9Windows x86-64

powerlawrs-0.0.3-cp39-cp39-musllinux_1_2_x86_64.whl (611.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

powerlawrs-0.0.3-cp39-cp39-musllinux_1_2_i686.whl (640.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

powerlawrs-0.0.3-cp39-cp39-musllinux_1_2_armv7l.whl (699.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.3-cp39-cp39-musllinux_1_2_aarch64.whl (614.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

powerlawrs-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (440.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (459.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

powerlawrs-0.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (562.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (466.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

powerlawrs-0.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (431.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.3-cp38-cp38-musllinux_1_2_x86_64.whl (610.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

powerlawrs-0.0.3-cp38-cp38-musllinux_1_2_i686.whl (640.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

powerlawrs-0.0.3-cp38-cp38-musllinux_1_2_armv7l.whl (699.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.3-cp38-cp38-musllinux_1_2_aarch64.whl (613.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

powerlawrs-0.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (440.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (460.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

powerlawrs-0.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (561.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (466.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

powerlawrs-0.0.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (430.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for powerlawrs-0.0.3.tar.gz
Algorithm Hash digest
SHA256 4a6edc37b88321ebc970c2972d4a85b14a17180fba3c4b4296861c0fe6f3352a
MD5 7a8f2e25a09b7b68566b5a561cbdab5e
BLAKE2b-256 132b0dcc56c9b21d40c3dc0b4dd9ced94b88304deea5c4bd413e2dac9103be67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c40197c3f9332f90d1878020d07960234d8ffe51bd1ae77efb1228aef57877ec
MD5 73bea9f956c74db9db6a2922d3aa2bf6
BLAKE2b-256 e70a48d09086149659895e4c499eb128923b5d16a2a12d55406ad422a2678847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7edd50a17c248c77b69c243038c8b9b23d4568b53cb338e010635fcfdcd2fdd1
MD5 4e88c16f2cf7d32e0add70cec6dddba6
BLAKE2b-256 fc0becaceae66d290a50915df60f38e467e5dcfe3c4deb54f63d45cd62b87f2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b5964fadd1e98f6498214411f4d7ab9a57d1e27593f2e648d3edd8baa02d999
MD5 f95edcacfce197106ace7b9a29e67a9e
BLAKE2b-256 cd48949d563afa8fa794f9a05ab1ec6ab59acb110d23a856e03f4a4ed525b4f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d927503bc213726224feaf2386ae215d70ae5fbbb6655708034ffce75f7ba6b2
MD5 d298a3d385119aedd08896ec305f2ffc
BLAKE2b-256 1a34d08793fd4d44a3ec9396ad9fe2202f8f693481665b4ce70535d2ea16edf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9beb2330f53a898ec5d0c11f5a09e59a5f7a339275445c77ac4f92378309633
MD5 fb01b5b4a8b375000f53bf3b0136de14
BLAKE2b-256 dd6b1e41de09b343fcd6c4f4e92ce07c623a9d86cb3f3f3edf5006883be72604

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b0cfd343f87c4a9ef781d1df5f0dd89a31fc13f3d0fbac138d8f8d073891a773
MD5 db0130f6ff6d752a760f4719ecc48cae
BLAKE2b-256 6cbd2650235ceb7d168cb6839882ac65f1d12ac8572644a498aafdb3dbce363d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29cb1a6f7f081102b0a4d8fa1a66060e417759794ff2dc235baf66512273c7e9
MD5 9d4f6538676452cbda9f60f42addc824
BLAKE2b-256 e603240d51a702b97deef4d53545f52c972b842dfaef93819955751cc5c5dbaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4bb3954424824abea1a445a566e1d7897966abc9935ff0e9b0c7ab41150c3328
MD5 1c1fcaa794a6ec9babfdac23d424b75d
BLAKE2b-256 69ed9d7036e242999321260b2838b4f465dbb97a23a15d319b83f7e0bf0f23f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1556e25f9e248c8ba09721edefc9f922fa458234bbfdc140cc29684ccaacb1e7
MD5 eaade460ed316c2e59840e03cfd64564
BLAKE2b-256 bc4d36c728ddf63de39d8ed9f4869e3b86a556fd2382fcfb553d9b162978c268

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fd0b87b87b9adfacb90e8687815e97b4bfac7f107f1209264e2b2e1057e1d19
MD5 f96974b6ba454be6893d500cf7994a4e
BLAKE2b-256 385454a18cb4c94d5118db32db5b9d28a13ee7a974015f68371cf03a5e64fb54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 804bfe85b34b398a24f3325264d112ca2ff6922270dc57728233335d5b8d028d
MD5 61938ae6735ddf21c19767301b2322f4
BLAKE2b-256 f9528fd4499c78ad4a3f40b026306b67d26ee864add2c73d35f69c0c968538fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8a854ff1af1efeb53b5588afc62f6ef6972f43dfc730113af301fd14a4e3203
MD5 e25609469735e2a86ad53e88d51b1205
BLAKE2b-256 5b90347c4dfabe47cace5bea57123000c6afb4cc4b7ca592cd71af1d33338d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b48dbb81898308ad9111bbee66f008db57c34e66a98266f2a7b54403c7501ae
MD5 4c087d1b5ab94ab5a01fd4c90f3ede01
BLAKE2b-256 e2a758114bd989af3e092ce7d842350e8f663efefeb25ee20770ad6b4bb62824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f87feb26ae6776c4eb85653ec505f30661e9c1e4bae7e54bd5c01ba956449eb
MD5 ad3e2849a18ea33e6b98b1855db7001f
BLAKE2b-256 38de79abd977128d1f638d56e7e3ac95ab304457cca6c16c05434e01893331f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 39a55a58452b49f37efcae106444f21cf5b81f13aeb726dfda33fd0e517333a7
MD5 e7f9c77ca235cc0a953bdbf6814faa15
BLAKE2b-256 c97c82ca5b57d30a95ccb62fa7fcf0cf1e39d5835fb6e70e4423c034bffe1c26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 473141cab960e504f4208ef8a0aa7398b7ca7d5be541e2a11ba8b4ac243954e2
MD5 78ab5ff4d8b840c81afc4a79f5995a7b
BLAKE2b-256 0de379b629c3038b663144544d004542c744bf8234b75ce6210bc2080b82659c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c427908edb2e576c7e8d7252b8c289a4b993fca0fb599942283ee1f4b130e474
MD5 defcb9fde31ac0122e6776f298fef4c2
BLAKE2b-256 006ab931233863794899b396310898183f071fab7a52ce5bdab803c4d01d1838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23abe818bf51ab8e605d6a10f2b41c0508a62a1073158b86afd29d1b50e5e74a
MD5 f3b590ad9cda9a922a6f5de01cc064d3
BLAKE2b-256 1d21249cf5a6d60c685210c2683fa5ff7548f613e5f1b8604f8235ee4da0be70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 11140f394f6be95f54b7e37fd5bc6dae2a04d847931a9bbac1baedd3d1d6a07d
MD5 dd8122320a3898bc0670aa87f1940543
BLAKE2b-256 d73d81bcf4f4e57db26242d2d95aff68c2bf8dd36ea8a834ebc1dc83187d8a49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: powerlawrs-0.0.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 239.5 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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a545e71ec1682ae1c6ff1b3355efd769fddd7fea24b89e56f7a713f71bfc375f
MD5 d7f5e37814e801320881c655b5bbb0ab
BLAKE2b-256 7d0a749b937403805e01454b9ea6296db5ce6154840e1a2f64e1d3e80e2647a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afe869680e99e6df2700fdbee64b857ca20949896eda7d4ac8876338221f7765
MD5 cc526db5d187fa623190f1af97365d3c
BLAKE2b-256 589a17e573a5f5ccddd306c8057ae8aa89ecc04779926af09723d622971ebbee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fe60b8b3cfc9b541797223286431bf3b389610cf68ad8f815f2f98f37408802
MD5 50d5f02416b6b15e3c76d8f6fb6af884
BLAKE2b-256 481600bc13e5f6faabee9b82a244b8688c3b739ba3606a05f0755f09111f1cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d8388f315cb5bea3284753f4af1fad176aaa68455b924a53ff5aae526f263d7a
MD5 a410228d8ae66802f68acab1f75ce63b
BLAKE2b-256 f96939b31f4954491392a8aad75aa7937276fe88755b6b3c9535e4b14f9ace11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db85aa9f521320df9df42332dbb04998a493f6ef596ca6b0b1689c618e3cdf14
MD5 c2310815445a8f74278b2e4340d02093
BLAKE2b-256 1011402a2b03b9b5179ecd7da7bd508c6322b50c35c73ef71680c6d0e9e96080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1bc06b3bb68daa2b330a6960971e78f65052dc673b539d1fe9127af35bfd6c4
MD5 9119b24fc9d79d45c619d6296b5cbee4
BLAKE2b-256 ad442ef0683b158056382255ec38db974524bdda0a03c5e76e9f8283240355c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bed787ddd21a1c1d5e3a0277f7a68200e910425ff42d44d82c992caad8aad8ba
MD5 72eff6bd49a9f82ec4091b5172e36ac2
BLAKE2b-256 14723376e6fe472ce52df9e3ee18b84be546f82cbafb28d607107bc966e54a01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 614aaddca2b732529975bd7171a7d2b205fb70497269df2626eaf06a1b757f4c
MD5 6b781a7518dc4ca39ca45bbb56d3c3b2
BLAKE2b-256 ff41b29e1fc850d8f02f9a0f816771d972e9dfb861df4a7b49ce100fb5ef84d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ef47bcf2301501cda80d60db826e1a363812fbacc2530eaa1ff6a48c2abbeb0
MD5 6718da47ae83d152f8abff20fad2a810
BLAKE2b-256 2fe32364d5b85051dd5ab3597d3570edc999a7f1dcad2bee60bf9a5b967ba7a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12f4cca61d5efbc4b4927e61d488bbe8eb02814e8f32baaf66fb2e6f39891a7e
MD5 760a4a7e33ee14ebe7f7fb31947eef43
BLAKE2b-256 faed69b9fe2a8e165c0a5fbe5000a820f71ed34491d37adab50f65a13e394730

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48dec741db1fd5e6a7005cc64ff9b1f1874fbfaf9fee0838a1fb942bd63ed5e3
MD5 33db518af34b9e6ebaac58de446d42bf
BLAKE2b-256 56c41ce53f90a97a479c1edf0d661aecf94ff10e0a6a4a223dc8eba2283c1ada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c1b071fbe10a2a97b8b7c110731576e0d254032c6e528395ec4e29a05caf595
MD5 0c3a75ecb5a464ec4e6e20b423047b13
BLAKE2b-256 4ccc1281e8971d660ab5cd8f290420023a358c432ede96d5023c700cff4ae654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7412a66161c982350e078304f73361170a1af1f609eadfabab6351e6cdebfcb1
MD5 67aa83e09a388a6124b79990b4d1d70e
BLAKE2b-256 2b88ffcdb6fd788ac9c39cd9cf56f75fad1dbe10e5cbfb3001f34099292381a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d3849871e7361188812d2c1d5ea696a6109c5ec9cecc6baa75b591987883cb0
MD5 99b30b32d71eb9c4cf9046a4c6e20938
BLAKE2b-256 9d5fb1389257afbdd4c91599efef665d375f2e955c85e1207fbc25cde92f9114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 89b6a656f241f3f287269c52e963581557dc88c39bfc28e6afacc75862e31542
MD5 e917b8412277b5d4c831cdac9a75b0f1
BLAKE2b-256 22b6499c1b2f7951ad38ef4d4e539636d225a1880f9fd3b8db03a2dd3d9a113d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72e12ac72208e4281b34ff65f6baf0f5fdf5414daca7f44f46d1d4bee8258960
MD5 b031322f469b1d0437d290bb31b110dd
BLAKE2b-256 421d27558f3cac6f61b274bdfe24d3d704115b5a60172c85479f344d3de6c1dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 136560e155c3e95d039152a69bc05d1dee09829de9d51c67eb2418027cc47fc7
MD5 b0399686421f75b89fcf23cc0906aafc
BLAKE2b-256 f1ca6e1f4dc78ea8470df814ecb69af6423aa306c12221d7a959a37dad9ee9fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77ac6375e746c5c7e9c61bfdc13f24d49f2d0bf336d7a5b61354c6e4dd4452e0
MD5 d72d403a3faab46f684389fb2103f0b7
BLAKE2b-256 1813a762a564a78af29437e6d1d4115cdd0fc425047f758c505dc9e34c51dd3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e233f7714dc61ded731cf5306458235fb4717f87a5f435eae853a2cde3ea7ec3
MD5 0aea0391edb7a5f3d6442dc7954c8dd0
BLAKE2b-256 178585f340bb51dca30dbb1bb2d25218e35bef1f6c6f9dfe49a060999bb9f59f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64241ce253325150f9efd1382e582f2e8c3dc81fe07c2955f3bc60dfa3a40945
MD5 5d8578a293e4562a362d84c9728830b4
BLAKE2b-256 a6e2c1c109fae1302c993ba9e8af5aa5270db4d66f5c056b12b161b3f36d4c21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 34da36f03df249550e2afb511451c3a516648ee17b5a43592cd7d1fb4f1140b0
MD5 1e6ebe3e23b36da699c215deabafce11
BLAKE2b-256 742b401a91d38181f61dd10d51a7c628b893bbb0d601605c85292c50f93ee04e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e2bf93489dc6b8ce8ab8028dd6db14bcc80b02f5cfe3b28d570ea2cab4faeba
MD5 04fa4121f184a7e4fb2275c9f9ba2497
BLAKE2b-256 8cd0a46caafe22f697949335b1969be4dea4edcb73fd8185394899ccd7cea16f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed78e1bbfd06fd29964bc3d6e50001ca727684c0b916bd16570a46a1e25e82de
MD5 c0ffc098d9d97bc3dadd343b0dce1663
BLAKE2b-256 2b331ae148f9ed37f7a4febbf36440d3dce43e57657bcec31573fcfce74c0fc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4fe82ab75c78e71624ff3287f7f4233d0dc5fd21383fb14ffd1a3852378aad4b
MD5 84169506587330201cdbe1936da0563b
BLAKE2b-256 b9103203bccf066923472531f50e9d13310b584e8daa1c9b1d5157aa54e59e97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5047f93a3de59eb23a653279b1f0ad5201eeb06a10a0e2b0d7a840452b5c050e
MD5 f6000833af537744df966ea352b3457d
BLAKE2b-256 27a51e3c1dd7f2583a816f852f7a9d32ed39a2bcb070f34324426eb76b4fc850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9e82bbf2f7393640d479c9fb683c98b83d96af540ac86356be759ca0fceffc0
MD5 94ef7fc2d38e79b5713777603fd3f10d
BLAKE2b-256 5dc88b3703b56b84d917a1b929a23f43d2748531eddfb796904aeb95da68f9fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e20e906ecae532e677c9c13b3def565d99086ee22018022cbb42b340e574b321
MD5 d27f5350ada8221eacac0d73749d9937
BLAKE2b-256 3449b4db4c53cfec751c40f5aa560605352f3a8ba8fb3fd1f980f0a41ebfe0b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 09e03cbf762b61f96a386e388d4d96488783c103c5162ce77b732c3db1043845
MD5 f45cbff1c8fb58c1a3bb6be8c9c5b6b2
BLAKE2b-256 7a2cd9084b66a9da157cfe2c36ee44dffa45a9d6bbdadded552bb6e27eec5969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ade6290835cf7bf49a8108df221dc18f3f9131de51606c10df8efec27a246b8
MD5 a5a17e22027ebb1217f3ff6ff492c5b1
BLAKE2b-256 117fb1961acccbdf53f2039219607ce9663224e9b0f35825e5b60b87b1649f8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d17a44a11461cd10c7f4c3c2fc059f56c902af27bf10acdc918b01af24ec54a
MD5 1c7bf19e82c96e3ab19272141b7e3c8e
BLAKE2b-256 005af20fcd3aec609a8dea8beedf2c738c234af50c94a0987f4342f525f97bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e3b10b6317ede2a7883c4fdbf0ae2cc498244435c01c06d0369998cfded39d6
MD5 a4deeb1c3832d9dfadda715d45c34904
BLAKE2b-256 631b786ec38396dafc0f43e9d050d6d8d4dd540add2b7842307e4f17e42b2b58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fc7ae4e9a629eb7ea930a9e52ae418430ee36c45cc6533994d0a8476cd39d11
MD5 d09578003dd8590522c2043ebc2181fd
BLAKE2b-256 90e5e5649d2646a63f32c3919d9da480920589a6c7359d1bbf674025b7e7132d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 86ad62ee4343e80c72d3ad98de919701b3de2b4814fd484c26f329140ae82525
MD5 9059e96dab5c7600100fedc36c350e76
BLAKE2b-256 f76c5ceb11e8847ab9a2feb6f553367afe9b75c3f5dc3249434454516bfab3ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bde975a23c87074b4a9aab06cc35c228a2b33d35250bbd97ef282b93d8e99092
MD5 f5bdfb18c5fa97261672dc7a159af2cc
BLAKE2b-256 e3f632ca5215ddbe9cd609ad17e29bffd63763551a328abedf1d0c530032c226

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc236a2ec8157e75106021443fa33b73454ddf43a592e967a1975f664a818057
MD5 b79b6a274b7d9144c3cd2f677c7e0852
BLAKE2b-256 5ba2f43b6d9883dcb152bd12ed4d7d258ee72b5a7d8cb90a829889dd775daaf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f02f329aa56547a54cf9a99eb7bf4984902d64bbf30092cf02b8d7bb32215a3
MD5 2d45d015d974362498d1e0f9a858a390
BLAKE2b-256 4e908f65d53c3d452d2cc27da009a328c0719f6c990c34f3384400c7cfd240ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c8377e476e7b2d463276a77f1ed260012375959c653f1e440c5f90eafcd3297f
MD5 ea0d07215958e695b7f8d649c632bda0
BLAKE2b-256 cbde758f097a5466ff1c231c83bb61fe128171428104d59c1ce471998e9d43ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 216e250f7bf71dfe8116d7ae8cda416b85e9f092115c2d6838811e6c773806a0
MD5 990adb4fe9cc2f697652ffed46eaa4e8
BLAKE2b-256 501d1dea8feb1bb3405cd98962d0e9b45a3f24408f3019d6d9168c39c00c378d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49246028904587873ed5fe24ace3fac4750373572610f84b2f9a4f2228d8c2a5
MD5 e85d8487493ca822f781e71358008b52
BLAKE2b-256 e1702fc47a5b5f23f383a5aa4f12e9607767b543902626a9022fbc6d58f30dec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a99795b37749df079527599da6e252316f931a52e759ea523f6cd5fbf10f0fa
MD5 3f160bed7bba54f59790c9e460943313
BLAKE2b-256 031a6a2c5a4cb1fedecb082cd1a5a915c0f66e452e8cb457f1964627e9d9805f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a30dcd682f0d4811a7ecd5bb20aa6280680141999b825090261ea74d4e02a82
MD5 20e9aeceaf2f7e922af0ed26b160e24b
BLAKE2b-256 3f38794cfa40d6c0c90a972d2a6e87d3e990f29f23434f9fff9c349310a9bd66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c52f4182ff37eac992b475138ada0b742b6af5cc6f481c3f62c38d8ff812ce9f
MD5 ade9f9a24486d18ddec64657581e9189
BLAKE2b-256 fc1d2496a77baf25de84c5fec29139be2256fec94902014a94b3df64107707c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 754db27a5fcdd405f30e2e845df4cdac35ee372ae39dd80db3e6893b14fbe0dc
MD5 566704820785d580600cab35fb6d1742
BLAKE2b-256 7c08502d5e83a545273201c6756e812731b3799757e380d1d5c6796bc5861f26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31a36ad22d91072a10a310ae08fd1b8809c8bffa7ff60bfb31cef24e012500b5
MD5 c2c24c14cb8d098312327602d89c573d
BLAKE2b-256 d8c047e9f956d861da2ff3cbc635ae3a97f5f82f085b949fc443f1560582d009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27951a80902dc941df8562632d4ae13e8a2356bdb96397e466461e3e1edc86a1
MD5 447e9f942474c936a1eb48fd253999ef
BLAKE2b-256 94cb576e75625418052812839262f7d063aa426dd583cc4ac30a9bb12aad2733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 48eec58b49adcce5baa317c45c8acd633ce3b072eadc2e6dce7de808692b9dcf
MD5 9e83e2350069c54269997e131589dd7b
BLAKE2b-256 5c5930a7455d671fec8fc756ed9bec56288dd60352ea664a78261105b2511e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dabfdc90169cfefa15947599a5732c70a3417f02f26853395088110eb2987486
MD5 f47099a7771cbd2b7032f7b37ee03931
BLAKE2b-256 bf717161718296e1764bcf4a1df6a4cc99902d02e89fa3df9a5ea8cd8ab7c21a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51d17f0537e6fdd5cf8cb15318aa9d8181fdea909fedfb19fa067e94a3b4b7b9
MD5 250304d78564a8c382bbb5a588cf34af
BLAKE2b-256 e369d7f80eb05b1b11a95ec49b96892a944eccfffbb4cd57274638e47e9d792b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2824ded9bac623975aae69647b02173bcf16a6b2931b8bbdb93ed1948be014c3
MD5 728eaac4361510ac8fbfc191333a0f12
BLAKE2b-256 c7e8d916d1bf879021aad100b2f35ae2962eace57f12408d1d7d31afc4bb63d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e20f82b0fbab866a245a6abd8948dc7dafe0041295dac4b65265050b019cc50c
MD5 416756c924fb3e6404fb19e58a738708
BLAKE2b-256 467295f7bd9f26e40b6c57c36a82ef71cd92b23bb477cd3aa794a6d4acef5c8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff3d2e91fb5917c7ac08b90d1440d8b4837265dec89f77a14f7855b0c2313316
MD5 7b55f385291b9def4030e8bfc9df63e5
BLAKE2b-256 2b6bc19399cb47dab896cb030c11a563eebf0b05702ecd787b520ee0b8e16f93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 937be00c60955091201d3a718e56ff8d4e0e07738c4066e0270520a09ca78419
MD5 fb0e5ac2acf03bdae5ab77d79e927677
BLAKE2b-256 836bcf77a19d874dddb66ebf0f3d4ae6348f7a3883eee1731673d996b0cfe669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 415a6d3da0081e79fcf30359a9d862db8a9c6af7e50aa1b772cd68fa5bc68831
MD5 4b3007f870c275b8bb2efede32335814
BLAKE2b-256 1e6ed7f2b449f896d417b613e4daab1e87d249e52e3330bd9e03173eff8d352f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 361a0f92d6b31b2cf27985773e4e94f8a401cc5dcdefd51906859884d06bb4bc
MD5 ebb5a97ea5cecacf4896e12ab4ef294b
BLAKE2b-256 e4df89da000c463e5b9a45b31d84cd2193587907baa4a3a5c3d7c8bad300eb06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 28497fd66558865959efdb7e2b3759ee3ef14886b68afef9fb46892e58e2fd31
MD5 5d3b0aa156c100b80b46b55b570165be
BLAKE2b-256 017cd119dd33bb60ba89ebaacc2d04d0a9f3ea770315c758b6fc456e915f6931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d447c0154fceff429fafcaa4b06323bc62fac0225e45f68e964cd436f67334cf
MD5 a92c7f4a43fb8ded17eaae09f4df262d
BLAKE2b-256 7c3d928c75b04409cd3d3cb9d14a4bd34060be8d9aaac377c71a30e7b567d52c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 989d0d98578950453dbfca341cea56dbc39ad4010f0530157f804d2256d6e12e
MD5 0972db37b665f4d465cc792236cc23a7
BLAKE2b-256 45bdde153d7765237f14181148e27dd92db35dd7c6d58988d2edc3ba161b344d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 011884070ee3e06ff24f5f3dc54e4ad7e2cac6b91498e4e411c73a92e07aff09
MD5 3c2beff5237784459bd666c1e6916cf5
BLAKE2b-256 58ae8ddcf35e13e9610dc4e3460bd667617443063a8c6d86d42a844b79ab073c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a794fd0ab24c2dcf714ba878003689410b0f43d874f2b779a7776426772e077
MD5 bd2ff16c2631eeeb9eef7dfbcf8f704b
BLAKE2b-256 803cb1798bf674e21052afbd12a38f067bede61aff6d2f322272e6d1b4c62791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e55a0d0874b1540d18df42fb8a37cdedf386bfd661ba64b4e789dec6074f9ddb
MD5 234d6962ccddb109f0b8f03ab5f408a2
BLAKE2b-256 aa7a684b26b5b71ea7a80523bd480745d98b33820869c89f2873ba42a343c7ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f446c4d83ba609c54c72a4d2e1e83106f1c5e1a4b65e8b698611dfad12195167
MD5 496fd00720e55aba1faf5dfc2d9f277b
BLAKE2b-256 0fef43b1f2615f9692c2f6ac1416e7260840b145b1aae5e82aa6fae32ba5c137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f96904101d6d745ad6a39605c68fb5662efc0fdb33e4990883c296f1439c1d80
MD5 920bee67b51bcd06f33ab375f552d01b
BLAKE2b-256 f1d72fb09d6f3f24f1316d7aa101434ea2e25353157b2bcedf5c778b9c27be61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 708adad35def9dfbb74f18c755dbf2cb38b9b41bd8f74a6a287bfdf839967e4d
MD5 cdc295bc5211c6bf1390ebf28fa13fa3
BLAKE2b-256 c07aade0491daa657f43309b4a1a71fcc80aca8fb09127844ee9fd6f7dea7c38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc7a6d3e31c4db7818e223c675baad9e81300de79356cf867d68db4ac16c61eb
MD5 7c573f231b8f94a4455207902154ea9f
BLAKE2b-256 419aecdfbce257b74675f2cc6a74658e7b82ff85629034b6ec5a8d210d94a870

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb51e35ed7f92c31175bd8fc5866e5a524325d3e2450f0c8d803aca996dec6b8
MD5 b3b1315c244b36ea8509e20270d5d927
BLAKE2b-256 13f98ded69bb6ea04076d5b6e28cebddc009c795b3a4e654248179204d2b18f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba2f158fc6ab0f5a3033c7bcb1eaeca268f74b3d88832283c8389832da4b8aec
MD5 76f342afa49da1f0d9080f5a127c6f84
BLAKE2b-256 b92a1a24460f5994073c13e31f1ba0ad03e8bae51fdb0de3a8fb7abd6842e406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e761e5db05b6cf11ab02b9730e3ede710f7f6f81d6d5f1d7e64bb170a20b2285
MD5 a6ebdbd7e3335748a6e2408b281c8136
BLAKE2b-256 a9ba39f84c48672c8c02d63887bfe82299545a60c4e453a39764b0a9f2de5807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed2327b627e370a23da27a1b0e0806c58a501ac3668074aff688b16da512f387
MD5 5ed92b805eead48ae1f1b4cdf581b34e
BLAKE2b-256 92b4bef28572b42101168e100b4d524c70deb02b7bc0f182a980ebac105b6f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8bfcc4152811692e2afeaa31324175d15e9ced3bf92ed121c94f172369c70a6c
MD5 b718184834e08c4fe7ed3917abed2246
BLAKE2b-256 08187935480bd3a30be33aa8db68387c7710a5a0afe03e4fed00866fd6b21bba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73b3984b9b0b0529901ed3161180afbcfa0e7ddbfde383c376a78ef8565d0bbd
MD5 da6de7f92a03f9243acdb3fb5294bb2e
BLAKE2b-256 32923580bd4458c9e87b8ba4a301de547f99fed0a3e6463f4f25513a717cd4ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 20d123d40f8878fe71c87008723edb2ad5c0e7c1ad56e59e704490f1ea92e451
MD5 7d0533a07072861f9c7294486bc6959f
BLAKE2b-256 a081da58d34c3c43e4d2ba6d49dc0631e0b1927590cf3c2929590b3030e49195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 daac6c6ac7e9d7294a7c975a63d2e5ac9fc66f46cf1fd5c2538fea68e1fba8d3
MD5 01f8cb76688ce8c6bbcd2336b34546df
BLAKE2b-256 4d73078d66ef792d2bdc4e1990f757078b793b2690fb311da94b5e2887c722e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 486239ac87ee91231752648c9961a753b14634aa4eb26b40431b7171938065d2
MD5 5b3ecf971425fcab19f3b4e923c452bf
BLAKE2b-256 d90c2810dbbef5a3bc8f7c67da5709df7d9e57565e917a22b464ebe75303c344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fc1631a207031957c5b35374838976489a01834c0ac841d2a2ecd44a2599ea44
MD5 f88620963bddd98b7a4a8740d8f8ead7
BLAKE2b-256 a2099b8074cc1fbd873463ee112d9b281559bd2ba9e318479da10ab50d94d2cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5e84c94ba0942c2764e471b6a0051720db10e4e04dfb0c6543e14f3c15cb7af
MD5 7bc58616a1da0fee4872426ab028f405
BLAKE2b-256 8670eeec1f48a9c9654022be0d1d6f7a2010cd0f348c01e4197c6e65a7ecd869

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa4733116da31764e80ef00b385d235df15408cfd2dd694b0a69f61ce52af1f1
MD5 a42a254ea65c9e03bc7aae3a82f06785
BLAKE2b-256 4712c759f9eb871ebe789c3c962337ff9ca1a44aee3fd073c485e773353333de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e9ff1f844fcb01cdbb95f1531f6447f05b7ce82c710daabd95125e228d5ab70
MD5 28c21482fcfedf9a62f0c88938a91ff4
BLAKE2b-256 36d7b86403c56c64c3c5995af00b2acddc33f8258bbe9689a347876326c8648d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 407f85a18b309ea02555ce18a70690b6ad42346890e6e5f572b5b3957908aa3e
MD5 07b0ab1e51c027f68ab25955dc3588ac
BLAKE2b-256 57b373c82d9a84967e7a914c0b08f5884f6e33c79d4f5cbe4b33334fa127bbab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 934997a8db215a271ad5b2893ac6359350cff90290d83149f994923885f8f9c0
MD5 b6ee81da69f1485b061e94fe87b37def
BLAKE2b-256 b104e8cb20f870edd53165e4adca63b70db12283ff9ed2ee3ccc27cf1d5b3e9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a280d2f8b7a16af093759d06bcb98dce3aa35f19d54dfa169ddb92c6e5c78a9
MD5 550e90068a0ac125aa9c332c2bf1ff63
BLAKE2b-256 7d1dafdadceb0a61955cc75349a0e08ce14edae420bc7952aadc263e8b455236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8f1e120d6f602944155d05fa0177375d09c5b280014ad841da8093ae6e6768e
MD5 04885acc0a3cdbbbc8daf1b776b40f56
BLAKE2b-256 79372a2f0d44c2092e118a118bfc30ed24a29a1d83580b04144b098ac1875baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44fe2eecaaedc373be5135a54493262161513b17dd5961e985335f2bdacc6e03
MD5 6c4c24d176ff7639581f6aaab0b3115c
BLAKE2b-256 29b6f2a3f87b52f179a8fd6b9eb86ad8510a81e0ba93e43426d04d87b7e4d9b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9a1f1aff814c31d859c5ae425c60a3679c2a6234b17dcc989d8d9b583bf33a1
MD5 a1f4a8049629c859bbcea9375e6abc25
BLAKE2b-256 ef2a5b4599ef67a436edd8cf34f2c398b453e474b6d4067f73333f1610dab6b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5080261bc31a67c06aa5ed1f7412b1ac3d6614007012f5ee1fb5b502eb332b2c
MD5 40376fee7c3867124798e28297a5ffbc
BLAKE2b-256 4fc19c0350ceab6cfdac212fccf8fe4148ab1882cbb9608da8252d762e207e1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f9ffb9e3e95463688fa5e0c71a0d1b4bf3e30002ae1779b0276a8c71cc5d6c2
MD5 b4bd5df3da38646155989986ac50bf6a
BLAKE2b-256 275f3172ba282c465810b0198a59bac9a618dba8e34bb3a5413f60f038f1220b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 056a4e07ecf406087aed76aa17a5b89b5928129b5c542530c87ce2b26148e59c
MD5 c81072baf7546ab664eb0f6482825b57
BLAKE2b-256 c365e8824685895b81f6ccb97df2453cf593c010814a40a614e081054ed6dddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 66c606cc7350d992ff468880383a877caf95c9383a40e62e24741549eaa2c7ee
MD5 bd51ae96a34a118d8cc874555ff448dd
BLAKE2b-256 ce585fda23fb106378d215e34f29a25deefb4757901dce502c560871a327ebd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0031839a2b68fdac403f4d65c9dc641bf57493e097627994235d99ac4ee9a820
MD5 96bc59dc7ed5994dd3fad79163489f06
BLAKE2b-256 2cae56e4ab717754e96b1b9b6464c4ac8ac1a95136e15c9c79a8e9b64ccbb3f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95005f8efdc0e5c341f3d0edada5f68258b677076e3674fb69a46dbb633f637f
MD5 255591012d1eb5b90e8140573ecc285f
BLAKE2b-256 1a54156f8d286e19c43f119a031553e87cf7aa514ca76a0c5ea31fe7705eb545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 203ce859ccc140f93f982b8207ad850ea2f1b7c6033e461a5aba469c71e5822d
MD5 6d216a2423fe8ed6185abc66643970a5
BLAKE2b-256 5239d86178bb7cf1eb33cb4d5edc762f8dbd0883b1fa8de1327b8a89e2e71d8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d86489a9138723b7ae44f856070e3a5af6f56a9e0d43348170dc9d269f3da500
MD5 f3a63e6e421e7d34620c87421c911f5e
BLAKE2b-256 0b777bc89dbf7c1f7883950c63535cb8ec0f1770307671f29f947009ba2cd01f

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