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.7.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.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (609.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

powerlawrs-0.0.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl (638.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

powerlawrs-0.0.7-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.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (458.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.7-cp314-cp314t-musllinux_1_2_x86_64.whl (606.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.7-cp314-cp314t-musllinux_1_2_i686.whl (634.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

powerlawrs-0.0.7-cp314-cp314t-musllinux_1_2_armv7l.whl (693.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.7-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.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (426.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.7-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.7-cp314-cp314-win_amd64.whl (258.3 kB view details)

Uploaded CPython 3.14Windows x86-64

powerlawrs-0.0.7-cp314-cp314-win32.whl (239.7 kB view details)

Uploaded CPython 3.14Windows x86

powerlawrs-0.0.7-cp314-cp314-musllinux_1_2_x86_64.whl (607.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

powerlawrs-0.0.7-cp314-cp314-musllinux_1_2_i686.whl (635.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

powerlawrs-0.0.7-cp314-cp314-musllinux_1_2_armv7l.whl (695.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

powerlawrs-0.0.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (457.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

powerlawrs-0.0.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (559.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (461.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

powerlawrs-0.0.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (428.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.7-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.7-cp314-cp314-macosx_11_0_arm64.whl (377.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

powerlawrs-0.0.7-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.7-cp313-cp313t-musllinux_1_2_i686.whl (634.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.7-cp313-cp313t-musllinux_1_2_aarch64.whl (607.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.7-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.7-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.7-cp313-cp313-win_amd64.whl (258.2 kB view details)

Uploaded CPython 3.13Windows x86-64

powerlawrs-0.0.7-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.7-cp313-cp313-musllinux_1_2_i686.whl (634.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

powerlawrs-0.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.7-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.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (460.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

powerlawrs-0.0.7-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.7-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.7-cp313-cp313-macosx_11_0_arm64.whl (377.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

powerlawrs-0.0.7-cp313-cp313-macosx_10_12_x86_64.whl (387.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

powerlawrs-0.0.7-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.7-cp312-cp312-musllinux_1_2_i686.whl (634.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

powerlawrs-0.0.7-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.7-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.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (460.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

powerlawrs-0.0.7-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.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

powerlawrs-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl (609.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

powerlawrs-0.0.7-cp311-cp311-musllinux_1_2_i686.whl (638.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

powerlawrs-0.0.7-cp311-cp311-musllinux_1_2_armv7l.whl (696.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl (611.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

powerlawrs-0.0.7-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.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (457.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

powerlawrs-0.0.7-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.7-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.7-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.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (429.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

powerlawrs-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl (609.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

powerlawrs-0.0.7-cp310-cp310-musllinux_1_2_i686.whl (638.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

powerlawrs-0.0.7-cp310-cp310-musllinux_1_2_armv7l.whl (696.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl (611.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

powerlawrs-0.0.7-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.7-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.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (559.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (463.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

powerlawrs-0.0.7-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.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (429.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9Windows x86-64

powerlawrs-0.0.7-cp39-cp39-musllinux_1_2_x86_64.whl (611.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.7-cp39-cp39-musllinux_1_2_aarch64.whl (613.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

powerlawrs-0.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (440.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.7-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.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (562.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.7-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.7-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.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.7-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.7-cp38-cp38-musllinux_1_2_i686.whl (641.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.7-cp38-cp38-musllinux_1_2_aarch64.whl (613.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

powerlawrs-0.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (440.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (459.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

powerlawrs-0.0.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (561.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (466.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

powerlawrs-0.0.7-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.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: powerlawrs-0.0.7.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.7.tar.gz
Algorithm Hash digest
SHA256 bfcd6339bc8d5dcea61e3cd9675cd182b7b816c1f8eab382ff27172086391b3d
MD5 3e8ba1dfe4b179bda0a2389edfde6ad7
BLAKE2b-256 ec42fe2d7213d15e47007675a6d4a465878bd46e2b3f2b0c527c96fff4bd518a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e4c02f45d81c88d2654c7ccaa68e1ab81a3c4a6fc46b5e9c631c813f5b720cf
MD5 69d11a98c7ce693ef2112e436fa7e28d
BLAKE2b-256 67e839dac087dec58a45b26677a5b37fe5fe48a27bb7ec6a4705c616fdfff212

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d1969c164824f1e7a6bfe7e6c19451a73b1eddbb0f3f41e91e233328390f9c0
MD5 1d18711cd3a222652c6e4d71c613ebbc
BLAKE2b-256 4cb4193b379ea55b5b0c09381d1085026221842d4622b781b3c83a615dde3373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ff17cfba4ae185a68aaf17419849bf9bd9a116adf4fd86d6e014779270efa13
MD5 1844410865640334c46b709d8e3eb66a
BLAKE2b-256 c5e2761c4464c63587883e89429c11c6c0862cdab2134dc267b0b7721bea7a0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 900239093d4c163e3f33fd2f4193c93b34cdbc7535757518f9b89f8198462897
MD5 272577d597dfaff9e484d1681dfcd5d2
BLAKE2b-256 8d22256ea8a40e7e3f824f01fa255500f1a5eed32d27ee0af2d130fffc014b39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3562940380a2c67617c85eab5c0469bfa648bd0049d6679709836bb3457034cc
MD5 5e79b288f6a69282f73234c515905af8
BLAKE2b-256 fea71942f8c3d2eab3bc88cc99ea73a5320ae6103d87a764c733153cd78b805f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2464eb98b09c5aba587b0ca7df801232939e6a792c1c1173065ed0838b16b332
MD5 0f55b0ce31c55c9c346154e1bf26a7fd
BLAKE2b-256 8fe0255128577641e634b927f8bb3c99dbaf60d4c43c799ba0673fa70d964f8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f334a52b0e49dbacf5914f5043c3e7cd7f1b3fa87d60b024d7796db345cda90f
MD5 134c29b2b7f0c1b7d8fe5d7215239bdf
BLAKE2b-256 65a74357d22894a7b67c2ad8344e68ebe471eea4bb46d03faac57127b5ac8f66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2dedd16c8b06571b42fb67240ec777c894cad5ff9debfb3ff71129c3e032aa7
MD5 6458c49def43c1d10fa800abb4ff62ad
BLAKE2b-256 aedc7c719cc1ff1958442d679dd2021ae5dfe8941af7b795ab3947c48d150f51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d93eb9d7616a0f11ec909b7a45010a7a57233151605db0d48f6be34202879aa2
MD5 15551ee6a3537aea5a715b95a47a9d10
BLAKE2b-256 3b9dc7a0c200c90650b01a1dbf6ef5b04848883aaa5b07387b0998ad68d50d62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e48b23f5f20a53b7064ca3896e753181a01b86b34ca555dd4518aa2801b0af2
MD5 b7b9c0d289617422d40ee2bff004b28a
BLAKE2b-256 e4cbc1994675112e2d879e7f919ccbe7276914bac88b2d2b6ba486cc9b216ec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fac234d686b594a323ae52fb43b26061d2f4031c27043739858bb4f742adf8e8
MD5 34e4b897b4194245d1840eccb18ba087
BLAKE2b-256 cd8f7f3eb7e20ca4487a82879db8dd521a5634a7dc130ab121b68dda1c585952

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 75226417c190f517092bf19eb295f95de2eb42f8409ea6ad52a472341407aa4c
MD5 1b95a98d364e1b9bca8cd9279a7250db
BLAKE2b-256 13740e447e9de4a0f5ae8d9049f3bc4835defb28fa8a6c5c5ead321b2f08dd3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be407d9e5685db54d75a71f5b9b5f10bbb87310d8fd92e8221056e2c3f3c2c30
MD5 eb3d2d20ead48dfb5f9f7ae36b0fa664
BLAKE2b-256 7fcf2c48e299b16cb0c1c83f69b0604de3948cbbdecd9faadd323639f26da053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b961bba3c80b1a972d73b8d7c2fd875ef82f1efc2888cb6fc2d102454e64239
MD5 250ae6e8ea97d0264915125d8bb64dc6
BLAKE2b-256 194be787780ff60396418d5b4abd1a83995245b972f18de97b4ccae386cf0b00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6424513c386c6ba95e6794c04d859cba407a3dfa5287116d15e9e4e558b09ff1
MD5 8340d119f491de9a4ebb43a35ca9f582
BLAKE2b-256 84ad31e2ca94d5e16ac144f1a9d50270a7270beee9356db439b5664da04a2ff5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f4ace9ab1da711d7391467add4d603d8d0913cd5fcfa34939c0be0929bbf049
MD5 6d6b5423130cce6d1cbf4080db1198ec
BLAKE2b-256 c03de97933c5239ab8da884890349d9d8633b1c105471b6f366797c71079eb0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a44a304a16da4258ad1ba55d20db7fa8d2c70e560acf92145950b89077bc689
MD5 d2601282d66dd77d2d95dcf413e46b03
BLAKE2b-256 93d604450ede3f293e2839cb80ed36fbd0e3f4675f7032c3e243e67284f556a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79aa9787c74b8ec40abe92a1b4e353f999110615e0ca4c7755c436906428c11c
MD5 1376cdd57a93b1901dd012af044ce1e6
BLAKE2b-256 e6dadbda7b7810d6643ad784d1ab4fe2cf7d092f410308ee75096ea9abd95808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b3dae19ee9b071695a03560cc3e1f4b159c77106b42ec871db8ac307ee7b9f1d
MD5 63e5b4c0f1966832e8c390e89f4651e3
BLAKE2b-256 bd703d82a39f2e0429c589291828be5740c8a717f45a1ea6b821bc37eca590e6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 302f8cabdb7159c37be1c18f017046d4d84e2c7d3437524e8d8b23111be2d485
MD5 65397bde923bd4cf96aec43b03324e7c
BLAKE2b-256 d9e778a0c8469205c5d00aa1801b75812d70dc1aa18824f9abd14cac9e81dc89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9da47d673aa6379f6cf581605747404bfa4bd228c2f058097c89360020b80b10
MD5 5ba0f3469289bd5ef14374fc575833c5
BLAKE2b-256 cb0a913c35400146b08879db3228abdcd470cc1224360cbdb8a3e3f0a44dd242

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e0c065903e85c8f6ba7993fc6a9b302dc43cb6626842d26d8769bce3ff997fdf
MD5 07d9a10a7fd6d9ae8dee0fd879a3ed47
BLAKE2b-256 8a1b6488bce4e648b29ec6c976e0197945f0ec99b6da7097c26e6d01e9d5f891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa4febacf6a193760c290119128a3a61176f8f01a1948346b9d3339e416337b7
MD5 1ba44d157462419639bddb14024c241a
BLAKE2b-256 af936cee5a65042e061372b93e7acf85c6255bc8437cada683d312dd366848e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f3575e1a27f68ddc39c5d0e4f9278cb121551ce299587d995572cd7ea315fc5
MD5 0bccde87ae891d0eeca34492d9710a5d
BLAKE2b-256 37d140c33bb08bd5e6901f6924cd07bbbee1a2c92fc8e3ca43df5bda5f155274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10c56ddb3f9911bc50d4ad7e2b294cbc30038e26519564ba0f9e57df92776c6b
MD5 4fc0f08c28b613f02de86dd506546144
BLAKE2b-256 1b2c189b7dd2bf5266dd8efe1465bcd95491a2f2577734b3a640bbac7be2451f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce711fb78b0cbcf46ab2a93316fc3c56960ccb14e215ba92186dab93ffc5382d
MD5 2712de0303aeae514566ec53c8d4d059
BLAKE2b-256 e85c7deb5ad69efe7f00156acfcac59d4d0569857a8b5955566816360600d61e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2a3a9e825d4225a15ed0865749481f51ce4a272b097f09d9cbb9b532222f7c8
MD5 15815a71995e24d4b1c8bbc83a07cab1
BLAKE2b-256 9255498484ea001d92ee6f2e0e02ab7c5752d43a720e7aa2124edee15c3c520b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c99379c7efa0c325fe0b175853c0787eb86c0e9103296e3478dbb33aa8654db
MD5 c7eb31246a4139aa2151036090273be2
BLAKE2b-256 1ad752558d7e2d2429dc69e35a34e60b5e883eb1eaf0ed9a44372b5c525adbfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4594959004abc073977e121d03c5772a270d70d6734f2afdbb2f6c6e1d366a41
MD5 8aa9b6371405c1f0821bb1976b8aa474
BLAKE2b-256 3ad51c5f9b82815b37ed9ae1affbbc7a9a60b8fbc77601e9ff7c74bcaa85215e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a56b0626ac56bd534a3e7e2c0fb17ee2f0dde7cd547f1ae15938162f0b5b02cc
MD5 ede14680dffa2fa9b074d3f70505f53e
BLAKE2b-256 6bc5e9b9aa2a2617ff64f36a458221e1314ddc93a71be925481b118428051851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e19dc4c7b614f37a983d88d30bde6c5fbb5c0303c78b1747abdf6604c6af5fd
MD5 dfd3187558f78f46c90110ca86f817e0
BLAKE2b-256 a224a5e223d3e1979fcb334a8a5acc17dbb1acae121fde7111738c38d97cbb2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3242cb77202c86bd8f899200320f5cee895ef42e4305b56d00cd6fdd9cc90230
MD5 1482d18933eaebeb3fc1f9990d3c0386
BLAKE2b-256 7eeac78a19883d422bf4b3a731b3508a48bfb2f657991df58fc3559421b51ac6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 594a30000003d1af176d872a8aef7e8ca823a7955ffbf42558ea09ed0c9a20e5
MD5 49fd478b693c3afebdd8ff1e414b9f65
BLAKE2b-256 23243d8ee72d14ddd921e307eb3d86eb7dfd204a8e2b191c334af6ff289d96c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 398b8cad5396921954709f0307f6329d303b9ee9c59324eb8a09d6fd1ee31d75
MD5 926ab9efc9877fae92d8a05b3e4ee2cf
BLAKE2b-256 8643d6c881d3da3ee57213dd88453b517ad912e8137b5c8dc8e055804652e1f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f55aa5964bc4a4e531c54df5875cd5be6e6b49badeb0a376dfbba17e75241a39
MD5 e1a782f76e19c9cd279aee235064cdf8
BLAKE2b-256 236ffac991334f88cc86a3ed2869a7622d918098e319116ca7f566d7a3d665cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a5a4ba90542461849e5c01a0f1f609bece9eb1e20fc37c0bebc632fb21d8a24a
MD5 e733cbe4ef3250a87ba1cd7c93afc1d2
BLAKE2b-256 6f6e910b6f8138cd780eccd16923c06bb32869b64f19dcc430bea5d288b27409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bfcd1cc3f96c9c080bbb0a6198335788281124c42b900653e58745a712f8701e
MD5 4371bd1d82aede35f8011e0ff7a1e9d6
BLAKE2b-256 ca1c9c8f63f487387c4b98ba41fc6bb22eec33044a2b729b14a782eb90c9873f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d278e8b1b6f70c376bc338e961100df71dd3636a4f17e4717f003c7d1e53ace0
MD5 47edf6b3b8dc59a055d0da622a6fbe72
BLAKE2b-256 4ec01add35102283154741cfe674b9e3a14ab5f3f9388d6e28165c3f28039d02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d79ceccca7e110e26ae17af1729b0f5408c423d680575b2d2661270cc20e5c2
MD5 541af960dcc1820f110983b20676a519
BLAKE2b-256 7cfff967989b0c1a14916f14b5e1b36fb43de03becd115f7484dfef622ef9fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eb01e14282324440a64342eee623743ccb2bf74a121bed5f055214a8de727689
MD5 741bf39ef21a6caa5199975b58f35c6b
BLAKE2b-256 458e3bcfb00705f2ba2668f63fbca9e02703e2399f9f5aa66f1c05b84ef1de1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1188e30be89df7904574e5b2e428d8214e615d6b2f6acdefd1c4413fe1651524
MD5 d07a19fab9d9ab029b568a18c4178e5b
BLAKE2b-256 5a2db1f92c957fcdca6a373d54e96e71bd63dc09147e02233ec52ea166540422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61b3c113a1a6c8a9780cb9ea642214b69ef7c47af474d61097b9c9f87a40f47b
MD5 30a950cd49a2212bc4fe28bf4043f463
BLAKE2b-256 0760871e152b4cc2509d3c982fbc032579e8fb3751bb8b83b78289e9a5fd39e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0dffacab124668cdde599c6fc5be8cd3302a3e44afd868c0d5ea3f386c80c6db
MD5 eb5e6ebbf60b1c9a429974ca6042d6b7
BLAKE2b-256 934f6ae55f70ed2a782e2205ea9d62968fd824fba7cfc294b3ddb7baa2d85ba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d6aca739f20ce64574e56acb78c82b6961b0200f2dd770bca708efeccd9e05d
MD5 0b94d315a677768712e9c6628fc157cf
BLAKE2b-256 feae902f35dcbeaeb8ef4706eabb0907bdcb9d70ddc37a53310eb1ddbc545a77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c44c2a2754ae65df699b64fe3343c5f864067431ea51e2cc8a24126d194d08ec
MD5 09ac27562fa5122d3e5e7e91384900e5
BLAKE2b-256 554c0c653cc80e9e6edd60956cc0615a7fa7e6f34b6ced513d2489a9579bc817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83a141eff44658631e208367a4770b50c80051038e906f23b3c90c977b3bb3e7
MD5 cecf28e3a2073ab00fe02c47b9ca1818
BLAKE2b-256 d603a8863fa0e9ce4f0f92f58b9ac995e943f4d7a3adeea99a395197db70cfdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 86a4822c38936332f859aa1f0b3db9852daeb5329011ce4a26b0df8b42114474
MD5 b33bf04eb04021c1ca8b5a1b1390267f
BLAKE2b-256 a479239753757ffc477e8b4ae2426720ebe13ba4715e914171b13bfdaca7d843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 81bdd42ecb7a27bc4d6459072da7e23618e0b2d189d169170898cd387f24c2d5
MD5 016dc5d1b515e241e4e7d394b5cacd89
BLAKE2b-256 b783a32d0e509c821297d8c66caeb804e321847b368d878bcd5abaf64a570503

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 88e435835f47b11cac1b43c752689706e454cba1244afa860beab4fd1ada653d
MD5 6c4c2bf0a47eaa5c830d16e71329ab1f
BLAKE2b-256 4ab5d1aa3ecb6ba32b8bdbae6be447566f250a3f663b0728b166dfadf37c7ed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b999d543e0dc49e13c08233b71ebae2b479cef26f6255014a1aabded7a026646
MD5 d7551f6012ac896faa1fcee32d604569
BLAKE2b-256 bb8a8f2455859ac57702a8f0e1338f80f54ed82300d39ed210ef9b7fa81da736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e31ce31352559d9b055ba89dfa74f3cebbcb21d0e57d7fbb357ed8ff1572ec09
MD5 5e6ee4b3e4ee6cf47e6d710da22c909a
BLAKE2b-256 e1158a7cc7dc211575f679ea66d2e735434d942a1445f0ed33f072902376eca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6387ea252bbaece7d6411dbbbba430e8831af2028da1136bb42ba40c590a5b14
MD5 71d4494f9da1426b7b3bd91015983c59
BLAKE2b-256 e96358fb106643bb2bd9fedc5fc792380f4d619ce71eaf6d88061f0727cc935b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7d2ff92a4066753e57d7c5c02a182398cdef7486a3ea186e742ec36b5408d31e
MD5 97d1e7fc36c4c838a55817c9a10d4387
BLAKE2b-256 a54c9414b55618a7b1615d798dbdcd35b18ebc9022593dba850ef8d67a536ce5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ee4937bc6559e6fcd59d88b1da0d5fc3f97ea236538aed77b7275d2461bd137
MD5 6eea30dcc3c4b078e21d8311ac7c1c2f
BLAKE2b-256 e7bc348b010e0bc7ff805bc96ab01f440e6077ef2b85b1a0786a390436376237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50f780c5e9c2d40a05f9d4bc333279b744224a5c0a4d5e05350f79c10e8323c9
MD5 78a56a63fd80b362b8f848efdf8eac06
BLAKE2b-256 5dc6affea7bb6333b39bdeba3ab96829059d8fdbe399d6f61737a0665335480f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27925132de77018d8010136666c243f10eb944b78250baada5d583d5c0209608
MD5 3bbbc84398a1fe828ce747fcc262a8a7
BLAKE2b-256 1c9422251fe569c9ad230f451823db411bb2ee5714fede890e81ba3673f8b87d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6deb98c0b1058af14d742d5fe66afb7f2a48f12d225d949d6ed22a02f0139e37
MD5 2d055c21f48797948654e8ee98b2af40
BLAKE2b-256 c7149d0c949cbd48d1f14c88640d654e99edb1d9804dbb29abc09693c3b0ddfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32379c92472649c943640408cf377a5e37db84c40a14cffa03a865f944113bf1
MD5 09ef78785af43f57857173c083b07417
BLAKE2b-256 ace497c0a6ce1f03f3be5ddac33c98b766e65ec20dafaec94466e0cc709ef4d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5533d426734cd7d161a96cfc0c95bbd280f87ce4292eda8830babc0a9e95d2f2
MD5 a3001537c1360cb39727032bf3491df1
BLAKE2b-256 3e08855ccf6be38b2f28b0e521f90ad58c45e455476aa477fb307054677943d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b9f58c37d527e3ad879093040db40c024116c1159473e56d64541d746dbce69
MD5 a2c6a465c0055f5b2af7dd04dca626a5
BLAKE2b-256 ee2e70e1d9a6a4e268659b20f87b1023cc2c6be9edb6b79b6efac3df2e9c622f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 67b0a7b90f2d68fa2d52e4c8da29e956cda3bb7960049caecf964cd3be48b9b1
MD5 a490a0cdf828e9f2969ce2a7e86e09cb
BLAKE2b-256 d92d61bf075e7344e04b9574e3f74826f59886ad5612ca50d37e38f335191912

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af4367cf4aa5d650f2e80f0708a1e424371183cd4f5f419769403af1aff66aaf
MD5 25dd9eeefb839bef47aff6cd1dbec168
BLAKE2b-256 0f58094a92c708c204c917bdafa4aac54d3383391c72de44f849914bdac25189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd39e6d2b9a58826743931606783117b6d6d12e512f98aa401ff065fb61074ba
MD5 c63d21bbba58ff28cafaea0e2d39d54f
BLAKE2b-256 24b2496af60fffae1bdd36e5cc46ddb66651d1110f42dedde2e7b9ccebd60267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f61b74d4938e29b12a45326930367ffcefcbdb0ba5c634869cfb02b17c8aafc0
MD5 8df2f36d579ab4e3e1e8ecb7a714ec80
BLAKE2b-256 ef210593686161da0749de1fa598bb2303f7efa782db0026396d31b26dca9693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b5c29b8d1c2e2e997f491777c725e4fafe8aca8fe94cb803dce6cb70bfe14ec3
MD5 5bf7ed26a6480e3188518770fcc37242
BLAKE2b-256 96c37a023dfc693df362888520badb12503318493226bd055130eae7ccc95243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 38189a0bb30a5d3f8f87aea03e30e093094b4c80dde36336137d7738070e11be
MD5 fcd1c3778c42c76a840468c8e83934d1
BLAKE2b-256 bb8a528b1b4faa508dac638181bdea4f9d6af20f03452a2c2ca222901ab3782e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6e0bf5ec440fc94d354c0c998539ee10581aa5aeb0445c74d06ca506ccebfc0
MD5 bb6b185ba24c1c57bf82997ab1bbf1c2
BLAKE2b-256 f28637b969f57e63e97d72f9f081a974feba00fd75180bbdd7d987bfb9eb03dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dca7fb0cfc63ce3436298bcb1028806f235034581dafdcf4dc45b9720f0548b5
MD5 0ed7c47f444774cb0aaa75aae9e50f85
BLAKE2b-256 68acda2c901a3ecbbe40c33dfd843c7a9f456de531b87710480bf2b28bd6fc9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d4103e1ba4e520d200395afa67b49a0a7ff2fd928a97bf3aa150a9e14bb29f7
MD5 2abd790446c87aa9f75c67322a502fcb
BLAKE2b-256 381fa22e2c788b183be51304e0829c7a815017e879ccc53c910a1cba8ce00819

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab182df81ad4166d4993d1018f1aa48832aa4c4bd8c573092ea3bcf818f7b645
MD5 4323a1cc761716de11f65187f7d64c4a
BLAKE2b-256 82d1749a378bbe51e8c2aa22dfeaff7ff04d29e93b5cd953044dd2fcdd7237c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73f5bf8efab66fd0fbd29e59501d5b5ec7e3fe7889cec13145b469664ca1eaf8
MD5 4a52c34512d6c6a02952c5cc126cc8a4
BLAKE2b-256 88512d67e16a5ee97ad8af9021f5b4a254226a8dcb507e6693d178ffcc00923b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b37588c2a53ab44e3436f18c6ba2d55b1ac4c54cf66907e27955788a7a58351c
MD5 c07b00cdf5109fe7b185e4df4b838f24
BLAKE2b-256 019ab04c73586e36bdfc60a53afe26bcd96af7d5644593886e2bc4f6217d3d5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a10f4fd41c62720d8f1ddc11684eab5bdf3c2cc9a3e9cd8f0e5ba5e19fda1e34
MD5 58ebdc53dc0f62c7786c0479f0975b1b
BLAKE2b-256 9b94583e3f4988741210a6b78f48a28312bd91c23b651e9976ae88951b70f08d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 611157dead5aeb0a4078255af33a37a05ef80e316616380ffc67b18a86768ef9
MD5 6ec2b866682850b01e6315636ba7a50a
BLAKE2b-256 b3b5e184d8fbe24273c3229abf37237f137422a0e9bc4d230d126c298eae171d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d83826e381b142e2842bfc002c0137423219144a50713a0c71c5326570b1aacc
MD5 3312a251f5bc4a310774a73831d62760
BLAKE2b-256 a2416b2a45167f1d4daf644a998968a21eb476d19380ffc2e08035c115ff2a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 998a550cc979e9f210569e700a41cb7343d89c43a5478ac9acbe31ed41656edd
MD5 37729883e83aae521126cf85b15e6ec1
BLAKE2b-256 fd5c5af1f883d8a6ecb57f452ec339095768d4151b9cc120995fc6ea5984bd24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66a9be37adcfefa9eefae62ae40cc887b963885ebca75f0e3f4220585b80dc23
MD5 aa5d98e4e488d99111031e65c001ed9a
BLAKE2b-256 e8d75235edb18e803aec7217ac040ae2ff718f6c71d1c6292619c222237922a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d34b27ebe1c8e4ddb75f6f0bc46a364fedd308f0d3d3ec7f959adb31611cfb1
MD5 4a35166d1e2f809ed3f53e5fb8ea4d1f
BLAKE2b-256 50a65645e548d4f3989a10c9afb616a5a906bffc6ff734562b0a96aab1a47f45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f7f3110543309e9cdc60ccaaa31512a149089047cffb2e1e3ca3bac3e5ad6aa
MD5 17c3ffa9f4080185f703a9e15676ec76
BLAKE2b-256 085cb50ecd4c6d105fad661454845e62a4a4774b5f148e0e4c3b36be02e1629f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c212f99ad8a2df7dcb96be3e8397d66d816624ab14f6ee8dc679e68a7df9b596
MD5 697eaeb6371e64af3ce41e1674badb4f
BLAKE2b-256 44f1c8cfa2ab5d56d0fac9f0ff28f0e4bdf7dae8935cf71a6a2fb158972ce419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e37ddc2593d0d3d7fa04f8351e3aa346148286262cf139f2f4ba28b6af4fd124
MD5 251b797f9334548d32b39df7e08c93ef
BLAKE2b-256 1f4503c3382c574fda945d2a1f7e0f8e736f3e101b5fc8d0351f8caf2178e3ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f0dce282b047c1923e73137b1902232e1d092647575d8db4fd8c4052aadbae5e
MD5 6aca61553f43394a3c7920b8d29a700a
BLAKE2b-256 0ac52ea39bdd5b9771f68400c9b4b358c147e0807fd383cbb1af033289a55a8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 793e2065d27a4981437cd1a9126830ec599e38b02818a58270ea97d7754e5cf6
MD5 cd31c91a691bd5841de0692bd4d6cb33
BLAKE2b-256 630c5802b1c022c0bf9d556b25091abf3d75873196fc20e0e84179ed571d8385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c79430fa0efe852cb415e94adea161d9f4864713bd6c860819eda0c6b4a6770f
MD5 3c199decb73413ab8c6be0f59fc2d1ab
BLAKE2b-256 d02848a7665931f4943dafe04d342c6527eafae78728b096452e4fb1b8ba4171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1717e12e1168bc6eb7cdfede5023d17b208473a3de5b6ec781b11e1f646e3165
MD5 7beb730e45f06374df91bfed7d772e0e
BLAKE2b-256 cd14b67f5118d4f66feca3d2710c4dbad603d883fa9b2e4b59a2efbf6085cb63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 31c661ac5bead298719da4449395396f02acbd442612c25d224ea2644f0071a5
MD5 2e3fb5fe1ce680826db244b15a0ac792
BLAKE2b-256 b8dd9db071ad3a27178cd8ead7ca0f1bc2ba69a174360f8198eafca95b1df47c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dd21669973f8e12b3ec7b20bf615fc3c839bd74f11c2a898ef085b91e695ce56
MD5 87de5194319729b62bf94c01d5d7389a
BLAKE2b-256 f7d2b9d4558bad46f5345ab18340e902c74679bf8a37fbae09780786a9903ff8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f152d81c26d12833bf01efca46688057c19e6e20228e0bc70b499a1d47a4761c
MD5 8009ad6041fa92902d167c4519ca9c63
BLAKE2b-256 20b0751f64897f2707f40629ba280d29302a3810f8ba06832638077d461765a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36143c17c9f2f32f07ee7081450a6ec2e4e79592b544b1d9463755938dda2809
MD5 d86910b0e0550c7701ae40f07852f35a
BLAKE2b-256 1c5c3bd619576e8f659c33cf8e2a8151bb9900fe8ce6c3531126fdc05d44abef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a047f67da4d69c9ee5296ad8f9fab95e5f2495e1e0f21bad4d040f9f7ed42a83
MD5 71e9953237c0ec6d24c71c3c8b815c3e
BLAKE2b-256 c548e9b0b311ac3c227324e8f25d4d537c80115838cdd544dc5c2073e67615c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5328aee05d9d480bd9e5550c45d133aff0d8a442fef0a89c3b9d03ff3722f3cb
MD5 1fb384e1255aa871ef22c8633689e5da
BLAKE2b-256 fa4f3436f38f2b9c6dd75a8cc580c0aeeaf4405c66ce945e5e0ce804ffbab168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 008729b810704808bf07f5a54e4c50b65695e81e5cb7afa2805f9a1aa3f7ed19
MD5 5a55390d58a3e77c35b08d29a7f3d848
BLAKE2b-256 ddaeeed8fcb00878cdbd8499927d71d9a1912809c355d5dace9fcfc3a5461074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85a0878d7c19c2b5c745dfb25fd07897315bad559a0d346964b08b5bfdaa4bb2
MD5 0e133e5d73f99d6e2c3e6d4e9431c134
BLAKE2b-256 1b33d115b86edd5c3258681569957d7c954eb60b2351fce75ec109837da2803f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a417b3976fd647e1dfe51cc67bb957d26c7ef8cd2f7efcc5d0faf550f2cf423
MD5 ac53f44b7759dd0390fc647f333b581a
BLAKE2b-256 b0ee1440f957cdd3c55eeeac4d685e3199e9fe9b88d58d2c28459aef06906a0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9beefc903d1bff69d927661705c36eaa50ce36859beb5b07dfb960b032402c3
MD5 952cbd0999160ec1e7e0fd114e328926
BLAKE2b-256 38588cfd50b88aeaa87af687b571ddec6afa650393ab1d34c9643b896e1fd1f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32c5a5a697f9c27c7820ca4b4f1e502c4820507ea768d52e1278497771c57b3e
MD5 73a1357f444fb6ceed26cb850a7f379f
BLAKE2b-256 5694a219c4181c315a06b092978cc57d53e00b2fff3e03eba3a3b8c2568f4452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68b85f18b788521d9bf6f78e8e93b099baad5950e5f47ad9a0de52e2f5459c64
MD5 dcd567a9beee290d943dfaf303f44ee0
BLAKE2b-256 aec97fb513dfd88aafbcabb1a9c3950734debe8af96108d62e8767fb6a97a4cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fcf9927cccb23d7fc9dd60531e1d3c3ec4516f7f8977479acfb61c59643ec8b8
MD5 bf59d5d9c2d41a2ce587df0372c16b1d
BLAKE2b-256 20e982dd5ccfe264327ae8d45aac0bbf91355460c1b0cc2209af6af756f69bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b2a6a3d4152bd47388b6fda83901b9221b25d6992b88cb1ac96ab4b51400447
MD5 99e2c2d5924a786d1190bff0dd807aa4
BLAKE2b-256 f41cb101b168701f62542c4a3a2a9eee4f6a18f985c419b5bb55bd9bd072cc7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34321377cc3d8221c095a781ffb88e74c647acd349126ad142245cabc0fb56b6
MD5 24b604b22ea451efb5b1f95c9f64c07c
BLAKE2b-256 cb04650a9429f2127ca5386490d44a55c8e61004d3b284ac230f0f22fee36393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b26da271b58c6433b1a7763412f5fc29f9bc60a1fd067c3050c0243ef4c23d8
MD5 8543e806b6c38a809ab2e6f8bff455c4
BLAKE2b-256 1f50e1039ee2fe0dde6fed72b1c096dbc9e042d47d2deb2ea566e10582131f22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd4a188499576f6c4eea5e53dddb75cfb4b1b263d221f68211824e1b3b5a9615
MD5 5336508893362eee9367e81b5ab9441e
BLAKE2b-256 13ff61ad787a7e11f578e33c889418b421b734710b5af879bca11e1e9df74ec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7cabea9d7d9353f4e4f1806df40630709d3b7862410d1232bf252becd87f7618
MD5 1aa4870a61e2677b2839adb75e9a1105
BLAKE2b-256 562a75f6189f6efb4d85e862d232aa0ca4a5df8d72dbcc4d1c0beec31fd6e739

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43bb6cf8d36671f845ad2d24fb3be94136f9fb027693a5ab91814bea893c7f04
MD5 af261410feb7397e42dcef5aeb3062be
BLAKE2b-256 edaad9ac356ca1d6605b3d1cf57fd2b558bf9cd8371b01753623a67328478a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c7367b455441ab801780108dbbf0a5e4099377c4a82ba29c0f025831df615cf
MD5 7937230156149010f615ddfb7aa837c2
BLAKE2b-256 0697b5b3dab2010b3577b441e895405e0addf2fc480594789569b82487be7160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dac28e886afa6b9c1ef7b85feada4cf1834a868be20eae81f00ed823c4ace877
MD5 7134c146650fd044e1d001551f4a238d
BLAKE2b-256 43dbef729f0f415b00f3eea71652d47ce10665a55abb53ef2210d9278441d146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 edb018fc48922abb586e2b376d34edce668f22d9fc05aa2d2d84b4deb90076d5
MD5 445debf67563d98b2eef32946235666e
BLAKE2b-256 cac295955dde70f6e17d7c43e36ff24ecef16fc7f6191ead17ecbe1f244358f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 521ea8503b612f9f1aa3507e4ca538388435ac3d7de652621ce173bbde4f4dd7
MD5 81d11efba56189391b18cf0ade661de8
BLAKE2b-256 a38ff9205382a7727754d36787f904ac5a7139ac21cd7c114afbd75bc8698f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef7769b5fdc662ac356454a09089656e869bd117f026903435c8c569798cab38
MD5 76b90d4bd3dfa1cf200bae0ba9c34e04
BLAKE2b-256 4f90b493a24b34ed711596c35d6a8364da05591bf4d3ec014b5e386f10871bc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dabd2cf1b91a0a4480d19a6f13c059679f153824e49858bda35e193d63d95edd
MD5 f3fca7f650cfab3ff79d915f9d84ea9e
BLAKE2b-256 a915347c8f9069ca1969f2a6eb1315d63dae46fdcf2d5e9317a7fddc5c0480ec

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