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 notebooks) are listed in requirements.txt and include:
    • jupyterlab: For running the example notebooks.
    • numpy: Used in the example notebooks.
    • polars: Used for data loading in the example notebooks.
    • matplotlib: Used for data-via in the Quickstart notebook.

Usage

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

Functional API (Recommended)

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

import powerlawrs
import polars as pl

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

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

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

Class-based API

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

Jupyter Notebook Examples

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

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

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

powerlawrs-0.0.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl (639.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

powerlawrs-0.0.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (697.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (612.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

powerlawrs-0.0.9-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (561.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.9-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (464.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

powerlawrs-0.0.9-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (430.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (430.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.9-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.9-cp314-cp314t-musllinux_1_2_i686.whl (634.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

powerlawrs-0.0.9-cp314-cp314t-musllinux_1_2_armv7l.whl (694.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.9-cp314-cp314t-musllinux_1_2_aarch64.whl (607.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (457.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (558.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (426.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.9-cp314-cp314-win_amd64.whl (257.3 kB view details)

Uploaded CPython 3.14Windows x86-64

powerlawrs-0.0.9-cp314-cp314-win32.whl (239.9 kB view details)

Uploaded CPython 3.14Windows x86

powerlawrs-0.0.9-cp314-cp314-musllinux_1_2_x86_64.whl (607.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

powerlawrs-0.0.9-cp314-cp314-musllinux_1_2_i686.whl (635.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

powerlawrs-0.0.9-cp314-cp314-musllinux_1_2_armv7l.whl (696.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.9-cp314-cp314-musllinux_1_2_aarch64.whl (609.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (459.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

powerlawrs-0.0.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (559.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.9-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (461.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

powerlawrs-0.0.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (429.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

powerlawrs-0.0.9-cp313-cp313t-musllinux_1_2_x86_64.whl (606.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.9-cp313-cp313t-musllinux_1_2_i686.whl (634.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

powerlawrs-0.0.9-cp313-cp313t-musllinux_1_2_armv7l.whl (694.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.9-cp313-cp313t-musllinux_1_2_aarch64.whl (607.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (457.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (558.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (427.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (426.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.9-cp313-cp313-win_amd64.whl (257.2 kB view details)

Uploaded CPython 3.13Windows x86-64

powerlawrs-0.0.9-cp313-cp313-musllinux_1_2_x86_64.whl (606.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

powerlawrs-0.0.9-cp313-cp313-musllinux_1_2_i686.whl (635.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

powerlawrs-0.0.9-cp313-cp313-musllinux_1_2_armv7l.whl (695.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.9-cp313-cp313-musllinux_1_2_aarch64.whl (608.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

powerlawrs-0.0.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (458.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

powerlawrs-0.0.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (558.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (460.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

powerlawrs-0.0.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (428.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (426.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.9-cp313-cp313-macosx_11_0_arm64.whl (377.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

powerlawrs-0.0.9-cp313-cp313-macosx_10_12_x86_64.whl (388.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

powerlawrs-0.0.9-cp312-cp312-win_amd64.whl (257.2 kB view details)

Uploaded CPython 3.12Windows x86-64

powerlawrs-0.0.9-cp312-cp312-musllinux_1_2_x86_64.whl (606.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

powerlawrs-0.0.9-cp312-cp312-musllinux_1_2_i686.whl (635.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

powerlawrs-0.0.9-cp312-cp312-musllinux_1_2_armv7l.whl (695.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.9-cp312-cp312-musllinux_1_2_aarch64.whl (609.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

powerlawrs-0.0.9-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.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (458.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

powerlawrs-0.0.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (460.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

powerlawrs-0.0.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (429.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

powerlawrs-0.0.9-cp312-cp312-macosx_10_12_x86_64.whl (387.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

powerlawrs-0.0.9-cp311-cp311-win_amd64.whl (259.0 kB view details)

Uploaded CPython 3.11Windows x86-64

powerlawrs-0.0.9-cp311-cp311-musllinux_1_2_x86_64.whl (609.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

powerlawrs-0.0.9-cp311-cp311-musllinux_1_2_i686.whl (639.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

powerlawrs-0.0.9-cp311-cp311-musllinux_1_2_armv7l.whl (697.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.9-cp311-cp311-musllinux_1_2_aarch64.whl (611.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

powerlawrs-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (438.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (460.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

powerlawrs-0.0.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (558.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (464.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

powerlawrs-0.0.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (430.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (429.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.9-cp311-cp311-macosx_11_0_arm64.whl (378.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

powerlawrs-0.0.9-cp310-cp310-win_amd64.whl (258.9 kB view details)

Uploaded CPython 3.10Windows x86-64

powerlawrs-0.0.9-cp310-cp310-musllinux_1_2_x86_64.whl (610.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

powerlawrs-0.0.9-cp310-cp310-musllinux_1_2_i686.whl (639.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

powerlawrs-0.0.9-cp310-cp310-musllinux_1_2_armv7l.whl (697.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.9-cp310-cp310-musllinux_1_2_aarch64.whl (611.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (460.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

powerlawrs-0.0.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (559.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (464.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

powerlawrs-0.0.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (430.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (429.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.9-cp39-cp39-win_amd64.whl (260.7 kB view details)

Uploaded CPython 3.9Windows x86-64

powerlawrs-0.0.9-cp39-cp39-musllinux_1_2_x86_64.whl (611.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

powerlawrs-0.0.9-cp39-cp39-musllinux_1_2_i686.whl (642.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

powerlawrs-0.0.9-cp39-cp39-musllinux_1_2_armv7l.whl (700.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.9-cp39-cp39-musllinux_1_2_aarch64.whl (614.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (461.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

powerlawrs-0.0.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (562.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (467.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

powerlawrs-0.0.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.9-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.9-cp38-cp38-musllinux_1_2_i686.whl (642.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

powerlawrs-0.0.9-cp38-cp38-musllinux_1_2_armv7l.whl (699.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.9-cp38-cp38-musllinux_1_2_aarch64.whl (613.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

powerlawrs-0.0.9-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.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (461.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

powerlawrs-0.0.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (562.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (467.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

powerlawrs-0.0.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (432.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for powerlawrs-0.0.9.tar.gz
Algorithm Hash digest
SHA256 e5e8b756e3a39dcb45759ee9f19e579b05adb011bc748868a1772daa15d4caba
MD5 9b0d9b0e646d2dbb933f9cdd412fe8a1
BLAKE2b-256 a7f5f53508ec4dcac58469d6354262aef6b72b87848d6934a6b10058431ef5de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcdd4e2c430d797275205c02eb25caef5be7cb78392d040bc98dbb710e1c6135
MD5 b0a3bff2cd0434541e84c4814bcd6092
BLAKE2b-256 f7d9948cea20a033a6180eedaff22885f02b7e75b793e331472e641b6dbf1c7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1eaaefa8e5a373f5a977f46a195b6053af2cbb0fbdfe27b7e55f4c58ddc8f651
MD5 3216e85be5ed1b334d140489404ec87a
BLAKE2b-256 bb3463c49bac1e216159f6a228b964b7d1dd9ae9fba093c97010e9eb88e1fa11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b640a2bcdc103ac1eb5a9444da6dc13db85f7fe6478977b84545f96d4c2526b2
MD5 8e0e422861552c801bd06a61ef8e94d4
BLAKE2b-256 420821a22a1dd65d9bbd5f106239adc1abad6331f22da5ce6b5c52979b16557b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf170024d04329aeeb69510695aee12ade5211740943664cd2f8ff776503b196
MD5 648f195ca92e27e03c97af9e962f3c13
BLAKE2b-256 17c5ec8755cc596e071df72cde13f9a5d1f014f088cbe0ea7acb10bb4e0800e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abc6e51eff7512be96cb7a49cda8709abd2833d5c6aef8cca1ea4998ebfec168
MD5 8d394fceab438528cebcce683cbe8aa1
BLAKE2b-256 348ad80f7da759df650361ad0ea439a946e6215744e75fddb91794c83ea394dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f6318f8cb96805150802047051de64fe6237c7e0ccaacb66b1c729d910947f5
MD5 1922886f815f8bd5c6a7fa31e6092f3a
BLAKE2b-256 d084a4486cf992609e8113b7bc49683c4262c2ce5e63ffea80d2096c03dee9b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b5e6bc642ca7699fd362e1efdc5a7849bddf61332db9bee31766d10b345c3d31
MD5 69ba80e5f0d7b353272ee458bca2be17
BLAKE2b-256 3613274841c26d4adbdfe6837150cbc448f2b8436bae508f67bd702886b007e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8bffa0dcc6514eaaacc1cea54bee240b100c91869d2b943938ce1825e99a448
MD5 5e499a58ae5ad7cd22e7b48de40c08af
BLAKE2b-256 fce069ce428339e80364a45b240fc5a6de0258a0fd873e54ba030b161cd1649c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9fad7374175884b6010f92e49afebed8da445860e4075dc0b99481dc5893f463
MD5 3e5a00626d13fc885f055befb0d4fe84
BLAKE2b-256 7cdcb1a5445a494927a92ef01d0d22dbaa003cbca887c10295b29956e5263790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfdf29e5b4a4bec22199fc33e03f9272eb694e93ac6aedd9d3bb7653b5097363
MD5 f06bdf40fc3e95e96658be2b73c7b2c5
BLAKE2b-256 f23e04c4fb3720d011dff3741a8f17175916cc621c316212b7ab1b1e16bfe933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc8b417ebe33dbbdb8b9005fbfb9761ebe010307d25ee0bfbcb8a07f3e856dff
MD5 b0c145c085471981543d2107c62e97f4
BLAKE2b-256 53014c263f7ba77fa3c7af7267824a98f842f9877ec9e805186cc409f27faee8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3793cd54e6ea1888d7d93a6e6f49e1fc25b5ca7e6ffc387edb17521e3b43edc5
MD5 51f4c6fb9b20cec5d8d5bb2fc8f5d667
BLAKE2b-256 11ddab48a958a67c7cb19ef8b1ea1f8088e89e377565fd4f6dee4bbd5ec255eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f158caa7c4c3439720964bd2391cf816c1df548d8e3b6a03d99023d00505e1b
MD5 bca49a6b96f0c9cdb7789216eb5fc774
BLAKE2b-256 98398fbb2814b930f6f30ae086f1cd11b540f82ca701fd1f4695841d726acad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f60be7121f6e09ba9ed26cbc53473a5b20802d72c664453b87e53b847356fbaf
MD5 cebc15254cd3061513468139f5785a8c
BLAKE2b-256 829bd83472010f93696ecce0702710a6c309070a96de6e2d88fcb4e8bdcc774a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34c09ce3fa94795f6c855eca38a2b8ed71c49cfbd2387e146365990d736ebdbb
MD5 aef64d6af6e8379530dac5947c8307e4
BLAKE2b-256 3fb02d3efc0776b7347613032de964974de0eca85507e089a18da3e3974831e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eeecc6f3bc427eaa80db076b6ab74d851929b9cbf51f5f96c93b11973bc027d7
MD5 e4708a92cea53a907b3daa5db6741ff6
BLAKE2b-256 f7e9b6095fe08a265bc969a3ce0682db0f971a9716f324b3da743734bc2af4ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e4aafd9eb9a4e3dc762bba9d62c1242881ceb211ee28dabaa0cea1ebe67de10
MD5 b643228f5a2fc6e1ab8761f45bb37e49
BLAKE2b-256 19ca5a8e27d243f3c01d85f55b6d157c5fa944f142f4f8eee46757351e9ce16c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab1ce89c109dadd781b53af4546e6f672d89ae374a5d75996682a134d1db0f6f
MD5 fcad21844da6d3b9a24b72a97079ce8a
BLAKE2b-256 96b362031d78b9ad04e7cb583c1349c5a9232210eb80b50f0ab0d71a6820bffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5ea8f8c2e52b0c51ffe23ad07266f9f2111384d7e5ef8ec5dcf3a9e4090f221e
MD5 ba3ef113c4f54b2c9b3736ae6f62721d
BLAKE2b-256 897d3904eaaae31265258ff1cb37eee317d276956a6d049844102fc3289e8061

See more details on using hashes here.

File details

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

File metadata

  • Download URL: powerlawrs-0.0.9-cp314-cp314-win32.whl
  • Upload date:
  • Size: 239.9 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.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 225a7907887e2b907de968518ce1303211f56570248964ce603e961ffc580ae2
MD5 974449b3aa05de18f4d3c105cc3974c3
BLAKE2b-256 513e664c00cdc010927348d9bdccc64911046911082e89c5a35141b64b7bda92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf7afa2fd4c74f6709bf2224affaae2e374571f32f689c36e285f2410315d076
MD5 0d5bd2da804d1e9418f675322d5bdb67
BLAKE2b-256 12524c50da3d378162f96592e24cd2fe44b09543ad18c39150b24a5bda7374e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d10accdf4e6a0dce045e2a8c8c228185f23f7ab6793d30b36a4af1c741c089f
MD5 6b75ee9795aa83ae97489d5fad42f48c
BLAKE2b-256 ab507fa9c8552b7558b2a9e6e061fb165ceef60f4e39a90005bd472b464cc882

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0da3ddd785aaf44fd880ba1b1f28bb133d8c4eb5a3acc03d9f0016338ca67a93
MD5 abbf78554991b5da57884bf45ee8f256
BLAKE2b-256 7e4f044ce7a2acdf14eb89e3306c99c1e3480c4e1b1a4e81f48de7787f3bad1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8834d2e77cfd4b9b33da29ee64a21781e0507c775b6f28aaeb6faecfe8bd43e
MD5 91eadea03a2da4a5ebc5b1d0ec1fd4c5
BLAKE2b-256 946166aa4221d481d0cc9a3bb7fbe240a62553269ac958fc9cbc6836a40c67e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7c9eb775be852e7f8947c0768fdbee236d3b36c3fe5930788eeae2cf9e1b248
MD5 94e00a9fcaaabcbe226df707fa691ae3
BLAKE2b-256 bd6ec77f4c604b812cefa38fe0f9e41c2d0b58e624111b23c30490bb7c26cb8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bbf745be7109938e7583f3f4332835816d6132945b9bf37fd01730f8024a8715
MD5 84b28fe54bf79c31a28386c2be1d0f75
BLAKE2b-256 c553bac52b20eeed368ed4ccada7316f7c1b859e4bc020bc7db19eac4bb3ea7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54ef21e255824f5e37a058af3f44a512f260fa4e329205cc81e1c5c3bb73bb0b
MD5 582611b843a3a1f965fca232e8904c47
BLAKE2b-256 4f94ac536d308bd6d2e91afe9e6d55d41a2f8bb48c6b5b99af5d9e2c65b69f12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8c4b84587fedb30b3f98d2e932b60943eef49e226b40b608f5454152b5e21a6
MD5 a22972d2e7cb776e6e654b37ab560338
BLAKE2b-256 b50ecad3204a3d919c86348eb7ad8db1f269b3e7b5f0b8f9b1bd770bcc56a40f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc3abde1b1203a3f193b5d0c7da1e51e09bb1b9fadc4a89562712d3929651f81
MD5 e45d95d9c0dcad594806605ffacaac01
BLAKE2b-256 9199c1eeff41f849b3d04665dacc4fa67dd65de6e15eb13b9ce873e01a765540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4c5b3a6813433b6d86f0cd09844bbf94a071022fc248c03ebb36a353a0d6d68
MD5 2c1bc71aa449ca7201fbcb75a912f0d2
BLAKE2b-256 2179344cd0320ac33930a73fc17df08370dd9fff061fbf292528be1066be74a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5aefb927566a2ff0aa5785b6c4653352e9673589cc485731ce6b423dbb55ba35
MD5 01c55913649b8020ac8c2f79771d899e
BLAKE2b-256 8a1044daf2246c917dcdf8bf944469579fe4faaf8fa188588769dfc642351a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5e2e323983976551c407809eb1b4131751309ffeb300e1091a93300d37ff7cf
MD5 4139db49206f6c856acfca224c85835d
BLAKE2b-256 34f50fcf4511cb2b10bde482a3b75e555739191274a6447496795ca9b31d225a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 765ab622396165ac6db05d587fbdfe6d0ed52e78cb72288188f7197e9d396d45
MD5 6832d78ba0d57b0888867c8c28180c45
BLAKE2b-256 6dab9b9863eeaee4ccd88fb7e407273bbdc4d51d5c54e363f4ae7fe16fd1e716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d145964a3d7b8c82df2198c3082ce7ee8e4ae622bbec1031bc9780260de32a14
MD5 eb9c55a3e18d12368ad10221a8e6b507
BLAKE2b-256 2f33492900520cf76de04df3a6e8f90c4c07a18fb7d3b77c2df8ac584720e7dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17ee1782ddc1fd5dfe00a12a32d349f4cbb2ddfae521f12568bb91d1ac523334
MD5 d1ce4aaddbdc3e78e51936c3a5cc0482
BLAKE2b-256 deb0b211ab609d932c84d6f0509edc09aaeef347ba3ddaf09e5e9cdb1d221425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c431f3608ee5d87e9062950cbd492d9b66532d3026288d5d444cb56565181dd
MD5 f074b047911da447e02a2dcf5ace500b
BLAKE2b-256 b7b6aae8d3f9e9fc255709daa8bf13ab26a350e41315a7b1e8d2049628384c5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63aff7032d035fb7901a2f446597fac9a53ffd2ce2b334103134b6a41fbc6f57
MD5 6f088d54a21ac19e9c8d3911bb7e892a
BLAKE2b-256 1859ff8f4422c146e04931f95865cdbd935258d147237d2d484f9eb3b2ea2b9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 73d316fbd68fa9ca6f3e862c568269f5a168f91dfa6d909d963e38e7cbc35250
MD5 0446e86878c9689f614fb87de1fa5723
BLAKE2b-256 685a5da596f2623b84aa0fa9d6e171e9bb8e112dabfe0b2a9e3fab52867ca5d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5972b2b7149b00599898ef7b2e24364f6c02f59339a51eb7dfcbd0d8b0a354a
MD5 1c86c9a6ec8ea193913bf34ee6476d03
BLAKE2b-256 d36d2a7a3519b500d57041407a2ef39bb9b051918a23947ea60f5ee3ef7df3e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 92551472261d8cedc5723bd244ad9473001cfe12cdc0dc61cb5ee3b350639c9e
MD5 f0c22287d36f3c361755fea582a03814
BLAKE2b-256 32edf1953fd4b323a0650a308160837098ef4eb121220873a9dde555e4f8e086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 415a1cb5ab711c842a2b92567050724d5f31c1b412f46ec375bd8090d13cc7da
MD5 e850d7c7b90fffafb4ec084b7bd0c45b
BLAKE2b-256 bd13e4574b3ebd95bc05a5dbea72a4ce293bf6bac96a62fa7d04c28a5194f77a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 91babffd9c7c165427511dd9dd55d47e4e9a36b5a307907cced7478de5e805af
MD5 7648c84539000380cc0ed28afb5661f6
BLAKE2b-256 cb11e3edf1f0f568375973547bee2e567fa2c11f0376f0bd22df05d374a1505c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 826d1e04baa1c275a9cf0a2e20a94b58d20a989f34acfc390974765b1fef9ac4
MD5 3b48a54d946862abd0971af2fed676e2
BLAKE2b-256 9ce791feae20cc6adb06f9ae9e38e2ef6e0fa799df168868e1dbd659d68fd453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e7e9053651426ff692145ed145a2e1e5259915cfaea9762cf9f72bd0eba6227
MD5 c9d791d5a34ed9064d55b3ca94ffaded
BLAKE2b-256 fe1d035556532bcac919416b30bf6819501e4ea7399f914d3fd3afaf9b0d8236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffdcdf161b1c848aaa5c31e285f85fbf211df1fe1b2254ba6d9f48ce3ed96cd5
MD5 dc1950f55f628acd7e0e8354b4203e55
BLAKE2b-256 3be282cb2acb9d4e34b55bca4520e36a58b9d365594feeca0ccc64f048957bde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b812ef954273584dd0bbfd1802a39b0600eb19e068ce9e755ff7ca55c53bf9d
MD5 4a670baa106dbd284cbe12cbbdfda03a
BLAKE2b-256 0b3f574d7911169777566e470c7b8fabaf9d87e301758835ed840620f663d9cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7391adbc2ceeade8fe4a0beb24a67345bc65514f7902f0f2229e498543fa69d2
MD5 878052f057e620d72014ac179685245e
BLAKE2b-256 10ba883366fd64467120c677a89a9a023bf63c9aedf443d4229070090d645a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eb3b4461a28bd009622d8a52872198badfe62a12c91911a549227153abd2a650
MD5 2b41c3decb89fafcfbed06531f319407
BLAKE2b-256 763b712f65d46846afc52aec4f19c32302a13c1e17476dff34eb8053048fb2af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 028f7e13bb1c722d92f37b6bf899d4ca941e35fb040963bda23197dafe9d1f53
MD5 6247023c51326ee035b5a27ddef9d71f
BLAKE2b-256 877df1ec45af129265b80dfbb3e2ec3be1291a70728c44afc7726feec07a3b2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b895f9899c2d12e950af3fff034ae09e935c8ed72fd0ad3d6cb739dedadeb98
MD5 cc2ff24f471c63f2fa665260b7cfd1a2
BLAKE2b-256 ccaf82a8fff06f53a1170c74f4f21afd4713afac24b61e4743e4de01442b9a4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10c3b56ebe8951b41d0ea5b13430108b6f8bdf407b972801163564e1a20b005b
MD5 ff9154818a3b2d3403c92b8ba011c8fe
BLAKE2b-256 1e8f6c03234aad1f74be79c0ca94fa60c3e496958f315a821e823ae4b625b7dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e70448ff1c4dd448ff14da78bc4aac7f58ba302ed4694ba7024c6382bfe04644
MD5 c23236c2a12610f49f462481771b6562
BLAKE2b-256 0757c629508e5655104952444d809e7754a6d764d6e1f8df3159dea6e9867dce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e8f82062972b353551c3b139d58768c0ddf00a2d6bcfd96903d07888a7dbd4fa
MD5 c6e6ecba10b8a80599fca09fdaed8cfb
BLAKE2b-256 2fa60cdcd0df33dc1a8ff9652f3a59d9d03ea8edba383b2c144566c68bdbf34d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f1f58f77ef6830bd7808551d1ced611c90ebb014fc66f89aec132b9a2c99181
MD5 9d5f35c349507c1c152ba6d54f389172
BLAKE2b-256 662c266c7d88be39efb7c35166f8bd4d87b956f91bc3b6ddf3c33077cac12a60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ffa36ac9ed4fcefaf2d62f37ac74312a421c590675539c5b8a073058361938ea
MD5 e6c4807fbfc957a7044f3156b5cb4d3a
BLAKE2b-256 3002bd30474f3b74d5e4d567eeeeabf7747817159eb5673ff8c9edec1607663f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb7b8a06a2d590807f2890ae20ee1669fafff7d88e5de8562566f1f30716af0a
MD5 40311c622fc68c832c1827c6c01a22c3
BLAKE2b-256 e5fce9e6689b3a7945dff49f065d27367ce908fb106d3550f21f8907fb99d513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8043c555dd9732976207e34ce979f1b9189124fdb69a6c49ecc084147fbd2c0b
MD5 7ad78dd1bcae2647a813f682e6ebb8f5
BLAKE2b-256 75c3002a5beb23c795f301cf100789b4bee93723bb4654492a2cb2accd73bc53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cd0a3c9b752984b8240c77fde95a84b0c13050f900f7804535c4388ff3786e1
MD5 9a4932001ff5c57df16a94c509ac5caa
BLAKE2b-256 7b407c6829f5f636c1176a2d2beb0a2fea3644dda30a3f9ea52529b2726732fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a5f42881fd1456a66ab28aff06bf463fb86176990d68ca15cc7d0e3432f3055
MD5 45380ebb0e4fe7810aec6a6c799f378c
BLAKE2b-256 9169244f13dff56138c3a40cb7a47a89d2c9722a72bbda34f987e22bfb2d1c0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14ed51fd1ef3c850ccd81905859485d3d391574a6089ffcba156f2e6bf0e2805
MD5 a8b71dd390d5a045cfaaaeb1d36cb4e3
BLAKE2b-256 c6aa6d332a27b330e2aba609e0de7b6720c41bab6c3e05620574fefdf37a2aa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e21d16a6b492a5b8b4e4545957e16f8740ea96b725216e51cf0cf62dd2ad3f87
MD5 cc0101c5b43d94251f1fe34b3bea1aab
BLAKE2b-256 cd8b933a6e7b4e7371f24531f8a43245a21b8451f130e069aae5d69c15b3b1a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f239f5e87396c59c9632c168e69cfc81c2a8a42f49127829b5ff5c9775e690c
MD5 eb71556b638e8e7b8882446e2f9f6925
BLAKE2b-256 880c3a7d0c3008b395816e1b6320aa0da8925a79ccc41b3aeddaf5265e98e079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77298043e13cf49f4260056b7f16bde36ef39e96fb49f29148dffed68f2ed422
MD5 68349d211d0b7368bd4e883a2cfa6890
BLAKE2b-256 a0d3da01d0ab324ad6063f49ec500646a672543c216564f9baf8f34406169747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb099e080e54cfb9865aab32601b98e1094e179a5dae70882820c8f88c34b6a4
MD5 14a31f838ac41133741e164b59fd89a9
BLAKE2b-256 c92bc34b3d5a913bfcd5b419a37a4fe2f09171e30a44c174d8a3dd354ce627c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac4534cccc877f560a5dbbe6d0ec3f1e8983c8c5b68cb7885b5e8ad3f4901f29
MD5 16ba34a9727268708d6f354331235e85
BLAKE2b-256 feb5ad6474efa7344ff980aa6fcb9987e7eddf057c5189b8a629160459a6355d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b81c6ee60ea2ecad2f3dde9a1a2e6340599a2bdf582f68847957ed00eedd5e38
MD5 24d9690b0f973fba6c8052ec2d715f34
BLAKE2b-256 f23f3c293fdfccc64c16ffe4f444cd129b3d4ddc3cca4c7823b0c1bd7387eac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b0dd9da203e49bc8f8841d508921700b1d613e491a873bdac054648b0e9f025
MD5 1b78a46eac956c3d2bc683f000638e33
BLAKE2b-256 6df739042795f1460c0873b6cc2f2b79f4df8decb3fcd6af480eb5c97526f448

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ffa271572cc188440c14315ed55e7be92c8bc2fe99f9bd85a40a667dcf6df0b
MD5 9b15dc67d4b8201e02388a7c06680e60
BLAKE2b-256 0ca91f8a1644968663d53558a8e7bc82c492c7b09c0aad4ce3628b32a589e209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f80701f45d4ea6d1b2279dc401dc8082518062b9185f15ea741093d1478df93
MD5 9296596093147d980810785d13701c1e
BLAKE2b-256 242c69dd5a0b7592a4c1b1f8d1ebb02da8b4814d621351fd906ebde3828ed30c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9004db3c93f15a26a34280236885f918d79d4df572f0f0ce809f23e27c801796
MD5 3488e06512fd4f8aabf101466c0de7c9
BLAKE2b-256 52d231fb914b5f429e852f21f0e0cc85b18eb94d18e1f9bf8b0e46c6468cf872

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d6146b0763136cbe1b1f64bedc33bde0413218a286b90578ef8989d397acaa9
MD5 0a575f24d66eacb9e6f054d235158b70
BLAKE2b-256 a518cd0b498b43182ae67f544b71b2a73ccafc93ba7c801a030d254f1e114dd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35a4f4c4916a66685d7d858e55b2a35f8a28a310fd8c34ffad2488fcf5a8acf7
MD5 13d3d83f4bea34c778f6b9532d6e2abe
BLAKE2b-256 cbcef27ca07e4dc2ea1a9d61e4c057b2935dd95bfdc96afe402142945e911c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f18a37b3f9ad3347371b0eddef7a3de972cbff3cb3f921bc029b535b6c88feb9
MD5 b90e1fb6e36e45f745b91b5bf94b42dc
BLAKE2b-256 cdb23db8b185907c005dc62702b59cc1202d86ad62f30b0a8db37d2b418429ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0401e0ba308ae2d1d6bfc179cbbca1b40d6b4fc0a4eddb9623fc533cae11f632
MD5 565cfb97b35b3050e890c696b1f4a18b
BLAKE2b-256 daa45d1cf1164278435df0aa1aca538d9ae0047ada6db8b001a494c1d83faf04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b0345e66de1e60ae904100c280aa6f87b5cbb937f7c5069eb1aaf7885d13f282
MD5 2850b9abfde1502a1682e11d3dd743b9
BLAKE2b-256 ee66824bd49c9870566b7cca6156518bab841f7583c0d3351375b33ef47643c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 010ae1008e9784c7296c6c5402a1aea63a31b1e48441f0666dc0543cf78abc5f
MD5 997f889ddd5bf8474cf8d21810a0e333
BLAKE2b-256 aca76ce6b52d42fad3c7a72bb9c9ad57ce91274a20ec954359ea289a5cd23d3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23602a6831683840be6833508c44cd835613f792f752d4b2499411734de1c5a2
MD5 7de9b2a4d735e6c805bafb59dc99704d
BLAKE2b-256 8872262ff18d19e844d382aee53c218b7897e7aed2632bec7488644471f719b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b5e901b620739914d7ada3d91937e74bf67dac4fc3e47cf9dd3937a9e952492
MD5 6d119afa632b1b7649d405c9610469f9
BLAKE2b-256 1c720f24e2889685ab9e5452a0cd552e396dc20d93955e78a9054b4048a85e35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 182930ed76eea3d1aa7a5d09ed747bee9935be9cab413ba8752a6f6971adfc84
MD5 a1bef0d3876a424fe61176f4d21a72b6
BLAKE2b-256 df489e625abc856b130710a84b773fc41a666eef21b846672f974f38ecca37ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 653f3d1c91d866dc9533f2a6142a08b6e3e0b8d94ff76b78c4d0a91bf5ec2f45
MD5 e96e8add88645004b5fdc83dc5417285
BLAKE2b-256 6503feda5e6d5d7031aa810633a810af8412dc30a8a571c5e1b51920723b1418

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 47ffc5a4163d4d8cb9d55e7be07d8926cc1c828835fc40e80c13c1be1588202f
MD5 151c0f1ca7393106c4a2c3d32bb48462
BLAKE2b-256 832f61dad268c97c74482c1ed5d2f3e324e8a5435890e373545eb317cbf5aefe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3f4140d1c22332f162d2a3f3610bb8ab9f1fd95dbb11968e81975a9a4750762a
MD5 6180dc5d132ab353eb3fd24133993334
BLAKE2b-256 fd23329bbc10ff3be5d2e4d7935634a95d58817807c6a7f8644144371630181b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d5be83db5b7dd67223b48a5bfdbb275bd17ed21eb8810c50bf3b6c246df4578
MD5 d1a1ac842be0b6702636a9a1779a9cff
BLAKE2b-256 a7bf10753239aeee2c2316eb85376e556b296f70950236c0ae9f737b4bdba6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9248d33ea7c6c93549b06f6ba9aabed5f40c183b231cfcb8c405ff306941e7e
MD5 d3488f23473641a3dd35a75bba1642d0
BLAKE2b-256 ec110c130d8047cafcd69b8920a4f8e461749b49c4e75a7b9ad2a9af5d39baca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf1dbe6be3c1fc9e33d26bcb4c1264146edce4792635ad3731c2e9c98ec8197e
MD5 95aa05851b2dc1a1ad9f18c70861bc99
BLAKE2b-256 3c766cc3b76413b136b22c5a4138994d86ecddef94db90a43f8840093423ce82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fdfa34b5158b9ece30c2b93ca7eeb0046f51a9d41614f6d7a2f9814927ccd2a2
MD5 da42b1b6b918845b8e2c6fe382f1c228
BLAKE2b-256 c6632ccd1b16ed8e9b374055f2f9f23d741b1308c54160a0496f001c9210512a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6261a810689bb4a4dfd910f3cb992d739760fa9711b4580396fd1e156b940fd7
MD5 6cacdb1fe76e39f465b70e352d353485
BLAKE2b-256 93f1b9eab9e22d36ed29f5bf79bd2f33a808fae8a56c880e8d6d027752ccc9c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cbea105351c6b20c01f1fd71aa880f29a28234d4d2d500bf821c03ceb52caf59
MD5 1290fccf77b422a623155d8228b7948f
BLAKE2b-256 207c0426c657f060ec8587a4cbbb2aafc4cf69f5e373bbb7f62a0b0a6792612f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcad3c474f62464fba3b75af2b2f1b55d7db371fd51e4776532352fbd93af2d5
MD5 12749b523ea2a48a1ad4b5c63879f259
BLAKE2b-256 4a5b0c09b0369e85bdb4686398529da079369f2f8f29b35a5b7966359c27fa04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ae1d83d412cd9e5ab2c3a76474f7a84e6adbc6e9ef14511df4d9d0859b2b84e5
MD5 3bef928164acc4577d7c408b6c3dfc0d
BLAKE2b-256 dded120b66cd41387a2091643e697c331dbc065bca3a12f2efb3aea9a3991d60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79918c3f10849292e78e6f19e00febc1da0c7aae0456571d88b16413ffeaa8d8
MD5 3cf5a410999972eff00747c18b773f1f
BLAKE2b-256 16f270cabde1c63be4cdcbdc1e4bda1fa51c545e0f7961eda0ec04b3aac5add0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d01db3319bfbfb36ee2d7159617572e352a33d244419a6536269b1fdef9b891
MD5 78128ef602b82e4a6ab39fa3a312563a
BLAKE2b-256 899f977be65558f77a126c85df4def3e71d98878f3c98ca4b52184061e7ebd87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ab147dd2083e12132d84d776d6e7df0151bdf22605ba4e7093d78122a4e93de
MD5 0201e97c42e1f049f2ce68e13d2a3d5c
BLAKE2b-256 35568fb39923dec9b6ee53d3246e532b52157a37ac1d15d36232ee25a6607a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15548706e6b7113f1e204ec1cc8766bf52b32d2227e77190ba6918bde3f5a051
MD5 eee56286acb5cecaeceea97853c08d1b
BLAKE2b-256 d2be7cf3f02fffd818706d756be8c6851a29b5730202125696bc2bdcade16250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69d0e4d46b7fbe107c20fe3b3768e5cb8209c4c6d0beb6abf76c4117c295fa70
MD5 eeb5df45223f53f81c1c07b2780295bb
BLAKE2b-256 87a8d0bba608da1799d4105e6f59c8852805d3785dd6065f1628329f0aa7b147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49e912b785ad6ee1c0fc4c8f6e1b6e1564e44280041aa127ed2114d85628f5df
MD5 33ed493ac684dac6bf4427306094d599
BLAKE2b-256 0df5d83e7bdaf8c37fd154c593d29c01dab0557487cd6ffc4e91dc92c9c5c20b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ddbb3b3d1d9468295d5710cd8605326102e71d0a0a019194ecf67dbc97833e88
MD5 87911e8b7d27664a792f6910bddc0c7d
BLAKE2b-256 f2c0ea300b23dde8c298c313ac633a4dc2c4191c14a075d5687a16bc9d633bef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7efb4557022903ea5155e1970943e94ad78e809e6e1a5dc4b90003c2391d9ae4
MD5 07803f8b964a71f2f450fd1753d032ff
BLAKE2b-256 b588d9c65e3bcedbc13af6997e63d533ff45b187618667fc1559cbf2f9979d73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54aca092833d0cced81d412e34b11da299f0bd0e4ab9e3e164e148e5c8ae9ca8
MD5 8348c19489febdcdfcceef859e8733fa
BLAKE2b-256 ecd82fdd2b0db07100a7e3ca9ae43875c51af3cd89b9264f752b62e836c82997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1804b5ccfecb5c59ffe25d50550675a361bb88c5720b3f19202140a0ee25a3a9
MD5 6159b85ed525436dbcf070a5da92b55f
BLAKE2b-256 3249ac387767973bd07f1d7c96b5725edaa68312d6d6becc22dacd66498d2b8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce4a122c9caac677c9271c782459a5b49ba9cf50f0dfb17c32cc98410a3c24dd
MD5 81b97eb2aef40e7b18f3a0fee1a03064
BLAKE2b-256 d8b399e9af18145bd1c9a8ce4e3e4260459d72a70440d9e11497cf5554723be7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b45b9a104784a25e5e3a406981e6cc801196fe18f6fbbc3820b77f01453fd17
MD5 f5a286e1d2510aaf896ca66383a69762
BLAKE2b-256 31e0bf26b15ce1dd1db0ae0759cbb0bfb7e0e27d2109f8a6d7c43891c33e0bb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf21f6ad7a6d22ff04ce873109a9190eb32969d5c8491b484edfaaae1edc2605
MD5 2c1425cd496de3d44733d47b08f94e75
BLAKE2b-256 95cf8f58d2556eb24fbf41b1ce0dc3fc4b24651f6d4919ec600cbd77a68e4d61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a86df0cac5f0354ca07214ee16cf9603ce47c120ae8bfd473fadb256616185d0
MD5 88165affdcb1778590f8731d52ad195c
BLAKE2b-256 b65d080c225bd0da8879477478fd125dfda6a117d5cf4e7bce6ad47f032bf9cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 655353c2d8acf9baa6945c93121b5352b66500ea433f71c0ed92821042b43b00
MD5 6ca954371128e3c9e9ea507644f38d11
BLAKE2b-256 e80b5fc65b45ee76c8e302a54a240821bf8036b353a1399e4a5aadf0ce94d3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d3bd845bf7786326ca23b792ffe67018d5a511cb96b9f6d0d1926de35adea5ad
MD5 b895476e8ce62e56c4b50ff12ddb4e1a
BLAKE2b-256 e98dcd935ffe7a9d4ff3e9758feebb22a974aaaa04614d9d63fb38ab98274e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e6781d4e5e4153ab24939f3bc48a32bf534fc9f2c2481afa51e825ad33beb13
MD5 7f95684b763675c5e8b33d39f0fc05e7
BLAKE2b-256 1efbf535b059c8eff5974465e24bc1e3222d0c8908ae709242469a81c719eff8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6164e426991a35da733d8bef3bb7ee223db7c26969c1cd4a617d68f5db274bcb
MD5 1284ff34239072f993371fbfcdfa539f
BLAKE2b-256 aaf9a5332eb7a743677d0671862481b5c1e9e34ddc5bf17c65a1072fa2773a85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 36b817c1fce80301bc853a66231d043a672be07ac02bbb89685e3cb5c966b637
MD5 9487de78485c93c028763b9282c0f793
BLAKE2b-256 effed9a5019785e80e0e9162013fc3894045fd9e482798128805350e78e7cf33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 570151d10a7ab2a4710483e4454aab0ce2be69dbaa08753e0499f2e25caf34fd
MD5 df19aa5ede44be614d6719ce6549810a
BLAKE2b-256 63fa883a6011ee9e6ef3d1a5424d7ede58c54b02ad0669e86e7765ebca647292

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