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 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 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 powerlaw/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.6.tar.gz (314.6 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.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (609.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

powerlawrs-0.0.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl (638.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

powerlawrs-0.0.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (696.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (611.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

powerlawrs-0.0.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (438.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

powerlawrs-0.0.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (561.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (463.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (429.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.6-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.6-cp314-cp314t-musllinux_1_2_i686.whl (633.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

powerlawrs-0.0.6-cp314-cp314t-musllinux_1_2_armv7l.whl (693.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.6-cp314-cp314t-musllinux_1_2_aarch64.whl (607.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (558.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (426.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.6-cp314-cp314-win_amd64.whl (258.3 kB view details)

Uploaded CPython 3.14Windows x86-64

powerlawrs-0.0.6-cp314-cp314-win32.whl (239.8 kB view details)

Uploaded CPython 3.14Windows x86

powerlawrs-0.0.6-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.6-cp314-cp314-musllinux_1_2_i686.whl (635.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

powerlawrs-0.0.6-cp314-cp314-musllinux_1_2_armv7l.whl (695.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.6-cp314-cp314-musllinux_1_2_aarch64.whl (609.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

powerlawrs-0.0.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (457.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

powerlawrs-0.0.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (558.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (461.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

powerlawrs-0.0.6-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.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.6-cp314-cp314-macosx_11_0_arm64.whl (377.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

powerlawrs-0.0.6-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.6-cp313-cp313t-musllinux_1_2_i686.whl (634.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

powerlawrs-0.0.6-cp313-cp313t-musllinux_1_2_armv7l.whl (693.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.6-cp313-cp313t-musllinux_1_2_aarch64.whl (607.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (426.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.6-cp313-cp313-win_amd64.whl (258.2 kB view details)

Uploaded CPython 3.13Windows x86-64

powerlawrs-0.0.6-cp313-cp313-musllinux_1_2_x86_64.whl (606.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

powerlawrs-0.0.6-cp313-cp313-musllinux_1_2_i686.whl (634.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

powerlawrs-0.0.6-cp313-cp313-musllinux_1_2_armv7l.whl (694.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

powerlawrs-0.0.6-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.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

powerlawrs-0.0.6-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.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (460.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

powerlawrs-0.0.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (427.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (426.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

powerlawrs-0.0.6-cp312-cp312-win_amd64.whl (258.1 kB view details)

Uploaded CPython 3.12Windows x86-64

powerlawrs-0.0.6-cp312-cp312-musllinux_1_2_x86_64.whl (606.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

powerlawrs-0.0.6-cp312-cp312-musllinux_1_2_i686.whl (634.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

powerlawrs-0.0.6-cp312-cp312-musllinux_1_2_armv7l.whl (694.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.6-cp312-cp312-musllinux_1_2_aarch64.whl (609.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

powerlawrs-0.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

powerlawrs-0.0.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (460.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

powerlawrs-0.0.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (428.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.6-cp312-cp312-macosx_11_0_arm64.whl (377.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

powerlawrs-0.0.6-cp312-cp312-macosx_10_12_x86_64.whl (387.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

powerlawrs-0.0.6-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.6-cp311-cp311-musllinux_1_2_i686.whl (638.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

powerlawrs-0.0.6-cp311-cp311-musllinux_1_2_armv7l.whl (696.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

powerlawrs-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (438.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (457.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

powerlawrs-0.0.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (463.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

powerlawrs-0.0.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (429.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (429.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.6-cp311-cp311-macosx_11_0_arm64.whl (379.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

powerlawrs-0.0.6-cp311-cp311-macosx_10_12_x86_64.whl (389.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

powerlawrs-0.0.6-cp310-cp310-musllinux_1_2_x86_64.whl (609.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

powerlawrs-0.0.6-cp310-cp310-musllinux_1_2_armv7l.whl (696.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.6-cp310-cp310-musllinux_1_2_aarch64.whl (611.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

powerlawrs-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (438.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.6-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.6-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.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (463.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

powerlawrs-0.0.6-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.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (429.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.6-cp39-cp39-win_amd64.whl (261.7 kB view details)

Uploaded CPython 3.9Windows x86-64

powerlawrs-0.0.6-cp39-cp39-musllinux_1_2_x86_64.whl (611.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

powerlawrs-0.0.6-cp39-cp39-musllinux_1_2_i686.whl (640.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

powerlawrs-0.0.6-cp39-cp39-musllinux_1_2_armv7l.whl (699.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.6-cp39-cp39-musllinux_1_2_aarch64.whl (613.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

powerlawrs-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (440.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (459.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

powerlawrs-0.0.6-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.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (466.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

powerlawrs-0.0.6-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.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.6-cp38-cp38-musllinux_1_2_x86_64.whl (611.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

powerlawrs-0.0.6-cp38-cp38-musllinux_1_2_i686.whl (640.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

powerlawrs-0.0.6-cp38-cp38-musllinux_1_2_armv7l.whl (698.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.6-cp38-cp38-musllinux_1_2_aarch64.whl (613.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

powerlawrs-0.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (440.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (460.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

powerlawrs-0.0.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (561.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (466.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

powerlawrs-0.0.6-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.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for powerlawrs-0.0.6.tar.gz
Algorithm Hash digest
SHA256 2db3f6c01f55db93b54925cb56c93c202de66fa52562832de4f0032bf66fdafd
MD5 277861648a36af69d702db48e34fa064
BLAKE2b-256 47cf9380ae5b89a289393d75a518d307f3d3a2a532da77703cfe2ecc08d4d715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efd2521a7271dfafbde8aeed4f29e346a795ffb6fb9e6ab65f44a631ddc20a13
MD5 886140ad53ef6dc36fdca4f25ed473b4
BLAKE2b-256 8304333823b3b9e3e25646c2c17e839952ce3e45b9c5d188ea35bc02d9c207b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e21ca7bc6b078d1c0c53698f4c98cd29bf036d2ab719f57808d0a9e2b659342
MD5 67978ff3f3a3d85dfaeaa8d959dfac16
BLAKE2b-256 18b82b0b2c6ae569f7b12d6bd8d729dff4377f63a50b1bd9b0a934f46c585da3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48f73927d8f9234189118224a3bf6880f2915060b5f72c981dadf237e8635391
MD5 1febbb0e53b9af65216486ced5e7c095
BLAKE2b-256 5dd50eacebb7ddd9c423b820826393361644e75b21fa559c311b03b948531c3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e18c412610a25c348e5229b255117e3347376d1ebb146bc5a7be83d226f4a8ee
MD5 477916d85d056a9d8c282f237c824a05
BLAKE2b-256 93babc5b88c0c1b086db45159dc6cb925e07c21265ea73942d77e15df9b64a32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57049a6833f76bcee0e293ab70324b177d6bd1c9771691ceb368f5edc680e814
MD5 b4deaa5e6c60dcd895123eb3793c76fd
BLAKE2b-256 14bc25d1ec9843416dc57eeefc66c315150877e1aeae39063c654e32321d8e53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57edc23762c4fffaca8a0cccd8f0ff42fb71791ac3d557bedf0b17bcd690847b
MD5 c35b361d73df576415bfcff7f9dfe583
BLAKE2b-256 ac23c961068cb9c2a8535cb72c07d682138e64f7c38c28fb08c7361df2bec9a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f3400854c505769a7f854a7459ba4752b86d277f89d693bc9bf75e733bee61f8
MD5 64f5f242de2dc7639bc7e5a5a43b3377
BLAKE2b-256 7fc2b1ff31671deb8200fd0399d01db1812ca3d98c96ab833f9664d0892b4c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e97f9f2f6bb8db6a357b430dbaac7f4d1a5157d23e001185e1f6d4ffb7a6514
MD5 8063224e7b6e63cfe8b9ba47f6685a2d
BLAKE2b-256 67e1eaee25895d61247502b24f8e718783a251fe8203f7297383edb6575314b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da29974b0930e16915c0f0b606e08d1164f75a0cda0290a32e6b74d932790665
MD5 7904a2c5ff6a2ccd493a9ea2be510399
BLAKE2b-256 eadfd4f37c13977cf87f33cdeeee10fcd719ae9406824df2dae8629e4d4cebc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4d8fc11238351393e32c6dc2f233f70973c95d7339908111bcf5e02d9edb79b
MD5 ce33eebfc80a694e7b9e01497b6d911a
BLAKE2b-256 77ea9821a09843eec4c426812556349be330a794a5d527d22a62e87be4cbd142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bf528f4eea9d7168e6e544259cd74b5392241cffffc760de1380c4ab10f8c12
MD5 331fa901464987b6206cd50f393948c4
BLAKE2b-256 13d49827cbf8e0ee532af9e13d0baf83f491483e28f40105e74e58fa27042a27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 554a776e80b5a714bead6719776a26930ec6f7ad07da4bf0d9bfb509c130599a
MD5 c89787c977a98be18bf9a66c3583538d
BLAKE2b-256 df5e882e0952aa386c3a329492a67e2e8b92e106983041365ef09738f0259da7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e6d7d037db9d367c4509c71ec5d65938f54fa2a5bdccb2c853a70786b6895fa7
MD5 ffe3c8d005d70bf7f728154d2c45b4a2
BLAKE2b-256 7ea41103ec31288c5ede9e171fa3d44d062ed909f70235898492eecc59bf0124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e71a7bc869921a9d7e47c7074b88bc4854476261f6a50169d595bd10881014fb
MD5 02e04d90ba4e10febcc6ee05bb82caa9
BLAKE2b-256 fe9b009ecea03247730225c12a86e3baf7c463f88b2611b4585cb6b251491383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b5b387b436fd35fd9cb3852d66bfb471ae63b370203fd9bda7f0fba8196e0f5
MD5 add67955831791204c607aac84ebb97e
BLAKE2b-256 dd2aeb2fa825444f61ae0e2b92ddedb31ad0185269cc6d6098e062d309d89312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 839486023a0778a7e9dafa394d173d1f69a386b85b7eef5ae98dafae52a227dc
MD5 330af1cea3d61b2f857f599040b787a2
BLAKE2b-256 92ae2803fa3337ed5ce475d863264ec94475cfda60ee1ca0892fcdfb0cc8b067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9d9d23fbfdd0a0d781ab4427a89e4f3d09322276411201f3b831cecd88e4f8e0
MD5 8fddf1b7f498ee892dc8ac10cd09146e
BLAKE2b-256 30c50cbb8d322d91b1689c89f328d8e5324baa43f4a71a6d3842f0b793b3e36c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1acb46f35660a0d637d3dee26a132d197cbc7790d52673861c1d2603e3293ccb
MD5 259090e00c7bde86cf46ca0ae4d4ad97
BLAKE2b-256 56dd76a69bc796733b880d2bb00d4382d3f9f8c124fe6a9b2dc441a0fa699f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 84eaae667352ee3805c4cdfddc61380fb7970f842e94d9905a21d1deea2f20a3
MD5 fd9f3e5976a8e649251d135c1448bb63
BLAKE2b-256 f2ca5395f4b4c382586c5f889b2c9453378f37fec2683551d6290b0eca55f5fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: powerlawrs-0.0.6-cp314-cp314-win32.whl
  • Upload date:
  • Size: 239.8 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.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7bff31951411117ab35e5425080f612fbc26ae5ad7d468e696aced3f8594dade
MD5 4663cc16da46bfed1186c91c7394aa49
BLAKE2b-256 671a742bcc7552bf815f9bfe89f963b7f58d7b3a946f509db39bb94bbb3914a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04ac1cd1889190d9e8d06c0620f59b5f05db409e41160ed4d7baf4420cec7d16
MD5 cfbbfaf3f63b5fe3dee9df7cd713e2e1
BLAKE2b-256 264e955f03fc2d79cd832e9ce547486983028d9d76f9af6c354a3e9a64dfdc84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39153b66e45fd1bd40199a993bade7ee62b609023b5e6fd89986f23126864c2f
MD5 4b18c7aa76d85d734dcd1ad73aedbeb7
BLAKE2b-256 bb190aec39bf6692a56182e1cfaba36c2886d5422e055b86d9342b66b26baf50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d911f3ee021aeadc067283c7e4dcffd86651259633483e8fb2defd7da581e2cd
MD5 62272dc4cd22fc40c3b1561ec1782d15
BLAKE2b-256 4d813f4ab3482ab158fd265f35483e567ade91c9a86ac9801ded124330960406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af094fde9e7daad0cb984f98ceb8ab13bbec12821e9788b647b3452f75b7f94e
MD5 5d9e978b59df7f5a6a5c6d6d9295f02f
BLAKE2b-256 01afd6cb152eb8868f67942abe644c7337c36b432d860cb58b6168adc8046bf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2eb48f6d653325462c96208485a4b91490bef64882d74403eb9b1ffea99675a
MD5 b93df061097742750f49e6dc1331aa7d
BLAKE2b-256 b9ff823d8ba499a98abf493de57bb2cc945d09977a7e68b37ca8757e63d64693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37ade323db927bccd3cfa971c6c40ce08450499baa28866994fb13d6857f39c3
MD5 891815a2281fb7fbf18ea0db9403d7d4
BLAKE2b-256 73cee26170d61d2bca7da8f97bfd3a6d8f1d6dbe1b5688ead7dd000b1050bbc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be5c6cdad4b0ab1824f9d41ddd00b2d22f662736da82fc595924c2c76e34a8f0
MD5 850aa15eeb7cd606f7a65d609881e201
BLAKE2b-256 464e388d27724e55d34662990c9e0d6d7df72b5df056cc9216ab4a1c49c25e81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1eba7d1cfb06516b0ea8e6ca165c59f8f07fc6c75ca495770b05f5b60f18da0e
MD5 dde1481bf24af3e616bb9bbf439d0a55
BLAKE2b-256 3a5f2f8821bb8342bb7010873fb17776d9fbc9d095e28526bc8674faaa21d378

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 996688db1b608a17bc5dd1978bc447fbebedcfaaed299309ebfe632eaeabc847
MD5 40e08f23cf0a54f2e508a1bec147536a
BLAKE2b-256 56f9cd525bb6ec5d5bd4340ca0f531c815a8e64ed21048509c4bcdf3d684ce81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3bcfcc0fa8acc66b4de5d0dd9506b1f401bf8d94906aab48ccb8f5a060cabf4
MD5 463f659623af997d32145be621b89004
BLAKE2b-256 b8df12098622c1f5d297cc347860af237a1082debd7862d0b69403ddb577eb09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf7b30c13a7d777968d332216a64b2d767c2426d5a7466ccba693a3ad2f0dedb
MD5 b8a7a8b449290f62535145c4e34c05ec
BLAKE2b-256 458873f4ab8c19168b4a496681cc1502199d6c6b1cf35575f5ef405db143a7b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96e4e83ca34884d3cf3ab6c44d414faf53bb5c90aeafc444c52acebc2d9ddcaa
MD5 644717284a491b8ea2e5df732e1259de
BLAKE2b-256 845d6daae0e55b95dcc638055aea65226f253559ed7d595aaf3f2b93fed9ed28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 325104104aa8fc0540088b4adee259733736df388a681e55319bcc7d19efc426
MD5 ef303d439d8f6a6ac72e9ddc34db916d
BLAKE2b-256 4886dd121424017e9cdc2405fcdd8b70673335f4676545d2da59b931c05a2a71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 549cd23f667bbc0423e0bb85afda8b40ffd887a561699bedb2a723b483e12b46
MD5 d72bf699bdcacae53226193ed77b5829
BLAKE2b-256 6cb86d28b53ec8dd67bc69b4d2607e4c49b34dc1c9f76e4ab7c0322d60220d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0339419dea48d94618f798a0f634df9e948aa1c91e635bd7364388f80bafc85
MD5 6a74045069d263080d6f77506f4cb771
BLAKE2b-256 c08bf93974eca178ed3c4002c08a86abb078f3edd10fa19177013a49dc796190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d192f5966cacbe92d180551573d23fa08a5da9d524d5560e317d699ef7bbdd66
MD5 d095b7a2685825a701a53374c0c510c9
BLAKE2b-256 677dcc38e0798da184aa3ca03e5e69d93ff28a52c3517b165909a25cd84b256a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3a08f15b6de51bca02a53b8c080f4318c41ddb41e6dd7dc8d56c5c469f5a8e35
MD5 bd0e9219f3118d38757e030442ff68c3
BLAKE2b-256 7696db48b885cb9abb159d7f24e0297041e428b8d48acd16debcb7867c2169be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9eee670b5fdbebfdcaf16ee537b8078e5949d251fa1b03bcab57de3d45b6d6d7
MD5 aa5157af59cd103122b130149ff20adb
BLAKE2b-256 709534b7aff5c2f127c9d08a3c4f2e642742ae28659c2835cb2c9659d86d56ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cba2cc176862bd1d436d9ee727d541b0eca1e9a4848f57a49dae0bae8c275e31
MD5 dfe760f5675be423d3054ce65b9b7a52
BLAKE2b-256 8d0ad47f7173e11063ab025fb4ccc66a262bea557dba6504e289c87fcad2bdf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d2c65dbe94035c1ac62c981633c9078f66b2c1f6ea8518e236e8b39513700dc0
MD5 7947631c2097e8b6e1b89b032d2b3818
BLAKE2b-256 6a4612069ec6945145177b40a663717a5fff74c2b2bc2e201cffa9b4293f5f1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d72ec236166b3ac164c98a6830e0088b7cbc66bec4adf437b3593763b34d3c44
MD5 ba13ea298e810f7866f4341d29b520aa
BLAKE2b-256 ffc290ee46c4c1cb70eae935c1c0bba1aa60902b4f19078869b0cd97fd193ccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1d3e4baa99de7548066a5fa4153dc50b471ccfb3bd10308bd9ddf6fa65893e1
MD5 68a12afc21d41a3f8500571be90a16b8
BLAKE2b-256 53552b7cb9bc0d85f537da1ecb01c335fa02e6c23910c3c88be78b3409ce5595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3205a593996b9aadf473602bd4db511c04e219758a9aa512707d1c41359a696f
MD5 493284237d737ff36e10ca1d2cf2bebb
BLAKE2b-256 823e7675f45a7c1a2e9148c585c618c2c42d211b63eae9abc6ac971717bec425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b438ae7f41c24ae7889a829fbb4cd91398569a5e6dcd24648d6db14f78ffbd36
MD5 c601e7be4e454811462156f7ea016ca6
BLAKE2b-256 e6afe99aeb68217935e0a5338b29e2b1a54faeb5193bbd988907fd22759434cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23fb2b8c18ddab5754d1b8737add8e5324cc199a5ec90a089da67a9d7a926cf8
MD5 ce27e0c245e20572ee91f154daac7176
BLAKE2b-256 76f6c3a90691a6f410ac085cee17bdad2dfde2da081f48a7bdc9e810ed59980c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 564714e5281ed7f58cb8d46bae125e1736c0608f5f95548a5f3d60dcef7be3e2
MD5 c4f1cef29ee274d540fa8ecac8c612de
BLAKE2b-256 e3462680e55039de209bddb6c2df103a50b2487edd6e8635e251f720274d41dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a3d523a3a46c42e8d0f0d007f9c83b7f0728b3ec8bc9ba35ed91567198f3b25
MD5 c5856c859d871c6bab97cc9e585a6bdd
BLAKE2b-256 cb36361465678ba9145b5f077e0d09dbaacb014763561558d6842a56728069cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cfdd90974a45c31627055f7645faf75f9308e07005bcf9067f655960d55a0dfa
MD5 6dd1ada2a1a3357c5d08ea27a43bce6a
BLAKE2b-256 d85ceac8fc1c98cf5bdbcbdc419ce36691b3802a3484cae88563dc208d149a0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 789d1d1fe6fb9720c8e00e508f2d133c4f5859578e07aaf90fef7d6ac1246575
MD5 d4acc5b6e0ce0d690dffcea9140d8e6e
BLAKE2b-256 117ee5f8451e4ffe749351032e45752ad2f48732075773189d6be0ad5a66e18f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af7ae55ffef0c2555ac9aba0a035b5abde2ca388cb4a1df1aebfcf618fca749c
MD5 0dbe56e05719baa875df2e27b9e36de7
BLAKE2b-256 867e4ba434aee59f40d1c902fa5202a45fb51ed8a3d7a564392889c34ab0eeb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 584aa782722caa976a378c5bfbbb245b8d918030132d5682d23258b9f13dbbf1
MD5 a577a59c52f9d364cf8ba5daa7249fa0
BLAKE2b-256 41cac4723c409f1b0d0973dc411b7d70beac8efb0e8df0c2c547068b296e6a2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff2cd497faa0c4b0f0a7b6d127ae36fbda893f862e2f1449d24ea4b7110623a7
MD5 16307d5409e987391f15edbe377fb7ff
BLAKE2b-256 6f94bee6ed3712871d9de1cc80a680b20d68cf26936cac78c52f0b5c2f8ec78d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b007cfbb1feeca2f2fb1f9238abf4e519e432b5d994d59eb25b4dbe15e93c58d
MD5 0ab69645b12478f5e21c8b23f7325f18
BLAKE2b-256 ef2c8dddcf8485bfd7fdb0ae0b8cbb8af5f6317c27393b489855d5e84c066e71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ec1193dfbeda82327b5f41a1d50956d72ac0008d23022983b9572eec7a2e5be
MD5 c0b187f34f691ee4f63399d4a522dc5d
BLAKE2b-256 d8e80252103dec3a03e82290fad1065f0e1da5e7a8f0addf3f20b30175f02f68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d453737b1183540728cf0df779a0467b5054380f2bcb586c40603e85767400aa
MD5 56ab17133669cab99713fc5d8643bae9
BLAKE2b-256 215266a56f97bb02d193c5bce3c31324a53d5e256d631f72de3706e0bda495f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d0ed4968b98da486d8fd346a35015cdbf98cd0b73795a99fe58a7e92556ca65
MD5 6819809a5f3257273d7b33106ec00020
BLAKE2b-256 bd413c3518497ae9b35334e43d529576561599b07c5d48f1ad28c53f47358d33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d51478d2aba865eea59c05b73abadc0390f980c8b205c0f43ceacb26b0662268
MD5 6898af7d843c3a0cc7c76d7a2a840014
BLAKE2b-256 a912e1046120382f38cc8f31d6c76c6ad1f6cf941e38382eb379aed398031506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 451274228fb5b343db90716a7be827a0d28306bb3c17f90b29cc3a16d41eb3ae
MD5 7184191d61830e7f290e1ab6f57e70b8
BLAKE2b-256 b8ffa55ddfbecaecad588aac46ab1dd03f5d1d90d12ef3893aef637ab8680862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 473ed53223bd67bb60ad1b8f87ef7fb4cfe839faeee4baeefd6dbbe7ef73b526
MD5 c6c785043867203dbb7a531ef1e9348e
BLAKE2b-256 62f3832c1c008dcf7d0b2065a8bc5527da65f5f6fa1064d09fac33235102bf3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aac5c374a83877ee980014d8b578e2c73807bff7925c07f3671a13b42a3b7628
MD5 53d6e10660356aa43dc39585c167ad03
BLAKE2b-256 bca5c752ca87da50172292c41138cc77edb23be090bb02ebc5176aca1295920e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b43750a7f721ea439b6ac5b6814dd6cb9d5b5dba9346589add8374d10de314fb
MD5 4fb2af5b5a4b3e9ffd44639212e8b172
BLAKE2b-256 11edf9b3ef44c923cda3c7b84f81dfecd59f77e0770c84b50bb2cc1d31f3d4c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 28ef10142785df3c534e4d960327a48a98605ebf022cba969fd4d4cbb911caa5
MD5 106d7835b746ac2ebe94555dfc3536ad
BLAKE2b-256 13300ff340e32e928db3dbe469929dd7e71c3658d7a32af714a0a28824d22108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62cbfb6b175cb88f96c508b678f917666c12c544acb3215974a9550989ddc2e5
MD5 d1fac423393a2ea798614a927436d9cf
BLAKE2b-256 d7709bbcb3a1265e216b3398e12bbbe8ee4dafa06f28152b158fea05aecb9f0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9b8b3cef69fda13be3a9faf47da1fd1c05da4ef3087613270453678010b050c
MD5 91b1d5e7c25bf675443dc91abf533e0a
BLAKE2b-256 e44f7a3fe9f80b17aa294f442f4698d174559ad9041d46def98ad30ed987a592

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0b7a85909c4a735ee05d204288a07c1767c794c0ac5e77da5827c1e5e6b7603
MD5 f365a055b70955e806d3807cb23baabb
BLAKE2b-256 2386b88f63fbf6b927d524e2d9dbcb9b251ebb449c6e1768609206fbbd475798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1424b827642c7c5140b256226beddaab1d6ec43ba714c5b6cfa1cf1679827021
MD5 ce78cd1bbd2bcdb3984f6cf4fd3c5b9a
BLAKE2b-256 76d916ba4fa8f6fdb6a7859db252a41448b3de42d4773e3b8ec35ed581304cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9d4ea97caeda1b9ac79905cf3cdf6570969889e4d04053fee9955249b47ca44
MD5 5c7797d6cc88826e9e9f73c23b754766
BLAKE2b-256 f8397d8ebfc2ea8f099ef5bed36f047c131638c804121038ca8a8a3948649a13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9d1d63a455d62f110610724ce2b0b8721b7a69f84bc6e956c70347db477ba62
MD5 1bea88742fbd48b956b9c105fdef1126
BLAKE2b-256 5bf1036be41c3e5319a276413658bb54af28a28d873d2837e6f23756bd9962aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 86590c1a1531f0164c0ea866527bc708301663d1600b7fade92b16bd04a1f341
MD5 15711449120621953172b7dc583710d1
BLAKE2b-256 9ad6c26533d6eb95878bd5bd57399d4bbef308730f9458765b5cb732cad668ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70bb3fd257dd3debfa2c53ee8c0188c6b220b7beaf848740f6d11f937ab0b3e7
MD5 3c0ff9d345a030896ac43984c11886a8
BLAKE2b-256 eb6f2076cf75edba7ee9b0bd9eb2f4522beee2a2fa4c362c877bdbc7f8ce5a76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4e151f257c6e0d8e506f466c1d330bb303daf63e2da4b04fa40a7ec6bce90c2
MD5 5b4e7105cf56d5404582ffcf160bebf8
BLAKE2b-256 acdc097f7440ee324d1e8c9f864ca09001e435781bacc1f961ea6848a7d3f72b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b16427f5013877089b09424c74355bd81871c724eaaa91883a2455f84c03e7dd
MD5 e71b471689f29c67bb363bc0cb6fe545
BLAKE2b-256 8d40c826030b4a3405ba67153be4387e988e57e73959fbec3f13faef39bd00a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9478ff4e941e9cd255f340198aa8632cd802c17d1239359697762e91e498137
MD5 0d02c3142e8d046a6c86b27088df4cd6
BLAKE2b-256 020d2e14cbf254037247ac9bdf60541af45a2237d87e4919f919ea72502b0a4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 811ee22eb4c7c9f6004cd63c860cdb18338fe7efe500169a235cdd700f46c84d
MD5 50fc2927d81b634f1f624b64f9b149f7
BLAKE2b-256 6d8568acd2c73c6d2633b2bf17dee835bbe585f568e78c77322ef6e48f083f9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc7c3faa6ed368fb72c195d647314610f86fd059ddc75a2d524cb53b07678c1e
MD5 a899cd629b683e814b63a897c50ea93b
BLAKE2b-256 683780a6eb5c107c722240105f528abb10d6979006e22cd7c707a7ea5c101ab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89c4a254d89ceac1c62a98b1abc73c958a4b6f920e27a44647289e4a90f03ce1
MD5 96ea852dc3f0b537bfbcf0c613de6c90
BLAKE2b-256 8ddf3381cd46bb6ecb8e3e4011e251f4d3a1ed33a6539d000136b01b6ae692b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa8f6b1c84999ae9c1e1f832e58222c3e4133d0537422245f474b76bb63f9d87
MD5 3858f42b0ac58ecf9ff6e05acbbe9311
BLAKE2b-256 215b393c959d6f1a377ee1e180adc0e5ca002475a42ad915db66bd65d308943f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c32e40af9eada69bbe2fa13e6f100e64e142a6e316e3ea175f124e7e404e84f2
MD5 98f28c99da018b79fc53585513cd1d3e
BLAKE2b-256 3cdfa03cc062a530fdf5f3424dab585f41aab06846b0cf62b2b22c53171e8310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 07b6399714b5f3c4fa008ad4bd1e464d9a1629da62b0199f3942f4d9b40b14ab
MD5 755c4ed3e23bc6f89eb66918e5dd6099
BLAKE2b-256 c061e50f9b04edf815e4a36ab6f8313d6edca51d8a785321842585f9344beaa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4dae0bc434e750476d29474e1c7b5a6f2e8a305d795da1aaddf5fa46df67bd76
MD5 ab087b13ac3e008085c3f0fd5b43d66c
BLAKE2b-256 6c522c1de55c95b10c5817ff7ca5751218bf26682085f779d20cb2291a816cff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b595a6415fbe8197c985e7acf001d5d79d631f51894a025d536c16c169d3a882
MD5 2e2fa49d3bb9bb34a09beb1b3944688a
BLAKE2b-256 83c3afa2abaf53d0867da9524314f6fe695427af941be53794d17c66db35189f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8708a5f1c16814ac1511ddc4e1394e4e8beaf9630379a70478ec3ef3a0e5bead
MD5 167a1adc7f20f9142a1a9ccc07efba6f
BLAKE2b-256 6f7cde843f681ae11849948271dc083f73ac56ab3bb814d25e7e7fe1c0f6603f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8eff231bd40704166f80d5d4eb4c5cf77d825c2702fce1ca91f76a7e10cfbddc
MD5 e2be39a9f4ee1367aa6dc7c6d5c1cf8a
BLAKE2b-256 06567f99dda97a19762c579c9028fdab4621c38a76fe4747f47cd69099065599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aeac43eeeb9ef808f28258b7d75ccba8e8da192505d860747ae122a78a4435b1
MD5 6bdeceaeb3b78f928340a5fcabab088c
BLAKE2b-256 09fd5cc98a2c461d962261bf43757c34ad4fff08845f9b2efb5a9fdb21c52ae6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58cdeafcc41bd5f15277e179e3877603f86c7ab498676d335112e521d7a17a77
MD5 c6683c5758268c0c9313dfbd6593e560
BLAKE2b-256 bf20bceb8133bad1e95cf6f31860ff1cc45dac7f6c07f3b7640cdb6508e63a1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d31d28588df9bcb3e80015cbb246962d72c01de6f862a8c3ee6f6c1ff90c9f0c
MD5 2c3261a747f45fd5919eeed2dabefacf
BLAKE2b-256 0f45e171391cef681d8de6f307d16bb4bf37f45f3f0ba56e84c082f16a9e452e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e46eca7851b79b68709c3f0fce2b1b4498425d0123616b3b0aa9f69f25a75af
MD5 97596fc865a52eda0bb506672f46a9ad
BLAKE2b-256 6ff177f9db3f9456de339a7e802ad0def754f6fe16d942e1155aa4458fcca196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e1a0c42f5f39f728d6e2438dbc26edcfad94b0a246fb7ee30eb02b2418ee3d8
MD5 53f235a3486c78c1834ddc270de86840
BLAKE2b-256 ee2c4919c3d931b824143d2cf189fbcbd8306792a319d99caa018eb4fa00afc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9adb0ba407744e7c65410a8aa985b2cdf9308decf2c874afd3736447fad3c933
MD5 91af1d438e6e24e243eaf42826be1a40
BLAKE2b-256 8510f98ffa2b3776116bbb6ab9076800d048045a14927a338f4a728c2209edb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 77aa3cdfc44ead60ad1f0891a0686b28532bd89c6ec23e80204c70ae88f4fc72
MD5 0a37915f9d120bb60118c35c0818076a
BLAKE2b-256 8d4fae9c6881b0e68116b3ce5f6696dd068b656835d1217d4685b6cb71d9b75c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e5b343f15122ae2ee2363c3d8ff8eaaf8047aa0fcd582fffd094fb4fea8575d
MD5 30ce9ed9305bc0afb7d73131143c51ee
BLAKE2b-256 3e0a3b1d54a6eec8afa6cae2b052e5f03649b03b18383285eca645172c7a45ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a2170723e95bdff0a42ec9f3a4a9bf493fb96dcd1ff17186ff9b0d63ffe4490
MD5 baef24e8d3321f6040a150a6aee4513d
BLAKE2b-256 b327f823f8a46d2dc5f219ad394115dc0d71247899c367f2aab9abc84bec785b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a136035fb91c20ec9e3c260fa0f50123090879bb3b28cac6c4613d66eb192570
MD5 df47b4890dbbebdcf6e755f13bbcd1bf
BLAKE2b-256 5a03333cb5af61296deed103ee977f5b7ceef4d4b13fb83bf2c2b1b676186f1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4de819b459b084107fc0b8e74ea8ac9796584c058d35e0c3ef418ee3e6fcc030
MD5 35122ae40950cf4f6a2f7390811b7e56
BLAKE2b-256 30508e40d5710c17dcef0fec9c3bce269a9f414368e682597fb691bafceda95c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 733c0a3e5159575a1891e9fa4c476e3d2bb0e5003d176ff869225fe0c9013342
MD5 ee7ec0fb2ad2c713e67f800bae05209a
BLAKE2b-256 3b591746a0d9d947840e3d8909cf51658d03c4679d5ae51d57fec7c55a9237ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d280c4a2d5e4eb6a0d4c6a6db5eb99c38cda5e716dc6874ded1fc89c0b152e6e
MD5 a73a82b1c0791431e13b39cc5070bc8a
BLAKE2b-256 50f6e5b056beef490d42841ab79ca60982c4c316861829ae1ca454426668a05d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a4d313bb80d7fb792d8676a99ee2d5bece10a54c0f9f84f2e9c54429776c4cf8
MD5 42c62058e7ee88f7d4b620fbacbb142a
BLAKE2b-256 a7d6038397829f9e9a96fb892be4eaf947ca2aff0a4791496688e52880070047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b07c8eb709f444fc46edce9ddca53db4b2962c347f7a79a010ae08f87b808019
MD5 c141bbf3b06c0e01c68a165afed3682b
BLAKE2b-256 5265fe313cbf213b802e199391d9bb861b184993d2ed80ae31d10538129118f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8b8bc8b700b3d3b439dc08e5562cbd52afbba9313e297722abe74a3c12cae54
MD5 a62fd9c196b2633f6faadc3b18822eb2
BLAKE2b-256 9b465650f705d6500e0f941de7af2a6e77515a392aa6709dee86466cf29f76a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da3270ce112e1ca00a9ff54e6b7edb83668364c7f1f651c0335fffa862e2b515
MD5 dcb1beb29103407f8facd43b6ec5b964
BLAKE2b-256 cc5ad6f47a1bab545e9f3fc9e4bf5c3bf175267042d762f32d5738b2732ae16f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10e1b725e66e7e63b45f5b783e71c128811b6ee17767b9771fed1a719e4fa9ca
MD5 ed9930e6b5f45fe19fd684cbbf4ec158
BLAKE2b-256 1bf779e3182ed7d4611f9447592209ba869171dcbf86e7cf72382976a0cf5ae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e4b948c1e640aa45f833dcbe47056d82ca9d05ead5ab928b61efc3ff2f94b4a0
MD5 d5259ff6efd93a82506ae6bbf227e003
BLAKE2b-256 4899bb41900151b0ed0f7f3f42b688862b514e9174a927d07b61bda3fa63c5d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd258372f8a674d4e881af905b94f68fa2ba6b285d64f52dc576df657b719bad
MD5 e91295c3c803c7807bf9f16f005ea4d0
BLAKE2b-256 6bc4ddc0e41620fa4786a32b1268152182ee69924142606ede7cdea73a80452f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91e7786a49ca3fe51f8b28eed44196103a5b3de34d2afe06b22b8ca4f2489d64
MD5 de07ae08251b90429ab6f5124ee4177a
BLAKE2b-256 74f916bd8a88ba657019ef65d30be47ae98a5d81ce75c47e265631df86d6c1d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d872ce39d6df958574b661091f04f941758533aafeeefb9ffd0838141e1eb003
MD5 0c0c99a5a480db604060827f2831b3f8
BLAKE2b-256 1a31e55861b53c41a7389ae3e62045574b19018d77df35d1c7bacc71a6845429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 371f34cb0ad925aa8059083e21c7765d3b5895393eb22acc1d464e77395caa10
MD5 bf53cad7c4019ed691fafee191cf3f9c
BLAKE2b-256 141dd4e243245806f00b31cc101a76548dd2c8532e837fa5cdc044961acdf31e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c5321b1a7a163cd20027ecbea13f14db784857af00093c38aa96e11b2dce60b
MD5 44492bb9383998e9783e0322b935e43e
BLAKE2b-256 c62810a4e77e9727aae964a39a9c1548ac69b6b9648749b5c41a39d9f8bf854c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d746b3b0344c9abb8b90611fdea0aaf89b51c4e9f703873db7bf090129174ebf
MD5 86ae3ba07a5292e1c0b92b0e004690ac
BLAKE2b-256 bb6200904e5233b34f7a4e48fa0c770b6e02cf50fcb9c8a53b68e9e1af61e0bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6cc0b520cff352d2fc89fd6c0663154c697bfe86a05301302667a2099f35b1d3
MD5 7e22111828f234e34cf862123f6237e4
BLAKE2b-256 89012a5e38ce66b455b5150f4305208afd2c80fd331938fbfac429dd99a75c7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b5a0a92701a776908be626def0bd67adfc5361d7c9c5f634690d9fa25aa9e5e
MD5 b3a951e600bfdfccde90662bef632a87
BLAKE2b-256 617725dc7e18e599ff9b598098b515330f556ecfe31618042a76f47cfd2bdede

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