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

Uploaded PyPymusllinux: musl 1.2+ x86-64

powerlawrs-0.0.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (638.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

powerlawrs-0.0.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (697.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (611.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (463.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (429.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl (606.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl (607.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.4-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.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

powerlawrs-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl (607.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl (609.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (460.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

powerlawrs-0.0.4-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.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.4-cp314-cp314-macosx_11_0_arm64.whl (377.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

powerlawrs-0.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl (605.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.4-cp313-cp313t-musllinux_1_2_i686.whl (634.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

powerlawrs-0.0.4-cp313-cp313t-musllinux_1_2_armv7l.whl (693.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl (607.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.4-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.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

powerlawrs-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (606.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

powerlawrs-0.0.4-cp313-cp313-musllinux_1_2_armv7l.whl (694.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.4-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.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (459.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.4-cp313-cp313-macosx_11_0_arm64.whl (377.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

powerlawrs-0.0.4-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.4-cp312-cp312-musllinux_1_2_i686.whl (634.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

powerlawrs-0.0.4-cp312-cp312-musllinux_1_2_armv7l.whl (694.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl (609.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

powerlawrs-0.0.4-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.4-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.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (556.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (460.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

powerlawrs-0.0.4-cp312-cp312-macosx_10_12_x86_64.whl (387.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

powerlawrs-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (609.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

powerlawrs-0.0.4-cp311-cp311-musllinux_1_2_i686.whl (638.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl (611.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

powerlawrs-0.0.4-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.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (457.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

powerlawrs-0.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

powerlawrs-0.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (429.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.4-cp311-cp311-macosx_11_0_arm64.whl (378.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

powerlawrs-0.0.4-cp311-cp311-macosx_10_12_x86_64.whl (390.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

powerlawrs-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (609.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

powerlawrs-0.0.4-cp310-cp310-musllinux_1_2_i686.whl (638.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

powerlawrs-0.0.4-cp310-cp310-musllinux_1_2_armv7l.whl (696.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

powerlawrs-0.0.4-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.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (458.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

powerlawrs-0.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (558.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (463.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

powerlawrs-0.0.4-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.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (428.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9Windows x86-64

powerlawrs-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl (611.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

powerlawrs-0.0.4-cp39-cp39-musllinux_1_2_armv7l.whl (699.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (460.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (466.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

powerlawrs-0.0.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (431.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.4-cp38-cp38-musllinux_1_2_x86_64.whl (611.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

powerlawrs-0.0.4-cp38-cp38-musllinux_1_2_i686.whl (641.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (459.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (466.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

powerlawrs-0.0.4-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.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: powerlawrs-0.0.4.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.4.tar.gz
Algorithm Hash digest
SHA256 18978717a7d165178d32e00fd4fa6721119c62175b3f0deec514717c1152d2e4
MD5 b181549f394a4289fbf8160a1adc81ca
BLAKE2b-256 05c144cc4cafeddbbe1c07c6622966a9b250c99a1653ad2d6305a0ceeb8c7881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49869848ae50c35d3d6686214494f8a7dfe0abcbe19eaf1eb9a6cdd1ed81ce98
MD5 2e7f4baf688f1fe280c9fc7337edfe8d
BLAKE2b-256 43e3ce0e87c848f6a0a77cc08cc4475014ddfe4ccec1a916954d5ec697739ba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8869c252cd1be2b8921a61ee5d24a1fe698b4ef0424e39e42877be0a506b85ce
MD5 f25630c35a71b2ab9fca8cc814b9de79
BLAKE2b-256 5c25bbad605b0eb0e1b2da8e2f62709701c45875ed9dca30e93dc2718518c621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb0a018a2ebdf5cb504e5047b7db7bc22566311d5f73e2b9e51d6f4ad7397040
MD5 09725489f07ef274409ac427cf4a1a3c
BLAKE2b-256 4e20b2257365c6958234c7603866adf4958969bbe4514245043d0dd78634ce99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9fbdfe62f57b990ca64ecf13799e5b675405f1ebd9ee3fcc913423081c5ffeb2
MD5 e20f28ed1b27642bd60be71c9b7c9931
BLAKE2b-256 e2ad87ca30a1f9539e876ab1c203e11434f2635c4ef1ede4ae6dddc2b66393d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0732ad13f7ad14077b5f386536edcded4a3a48b5f5fb3c9c633968b94825425b
MD5 760537dc4dc14a525ccb511f8f3f17af
BLAKE2b-256 81199e9fd96a295ac7cb2c832b40937880c83933aa2edca2f0ab217fdfb190c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cdb5cf873b932fe41d22f520a61506a3acbbf0e83076626945b5b16282df6a6b
MD5 4f70755aec4ac5e525543ab81fd3ae19
BLAKE2b-256 c9b0506b5b0fcd5a6d599226a511fb8e4bc3e55575009d0518c1b9c62579afe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ace46f7a0b0492b9bae88165dc87569ca87088159c712f704992fa69b2732184
MD5 18ace1808c25288afce9a7869bfcad6f
BLAKE2b-256 a8381104310af663e20b7006a931cbe2e84866776c52ffce37e19ce5ce99ad9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c81fdcdac4238517e7bbfbfde950554fe1022d81a6e1cfe6b3016f444c7b89e1
MD5 fa9ff66899541c132c971473783b62bd
BLAKE2b-256 8088c9e6b330adf4e97ce268969b2e4238e33955940eae6eebedbc7f631e03a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ca81965a48ae75b9c2ab876ab3e942ed9aca173c056d3362c6020137f6448602
MD5 dd7542114e8b8803e5b09a4c2496d374
BLAKE2b-256 4d9182ee7e8a1b45da96e7b2f3f6aa4dbaa903e3158ac180b25f1baabe02456e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 498b569c6b53428d53c473bf5dc5bc379425ef23212141c9a78c2ce08c8a4a8a
MD5 71fc8547cc91be6011adf76bb18d1b25
BLAKE2b-256 9c99769c5345796cb4fbe7f70013ba3e6fbb61b541969029916901ac67df35da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bf9f47889db947261ff2ae1441ab8818885c34d87aa7e3774720ac57a5ca33a
MD5 a9b35c2f92d0a39831bef4f8fcb136cc
BLAKE2b-256 31bccf32a9c3715fbaf5bc8ab52497a51e7a90eff7bb79d456649e5dc68164b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c6ce40d33580f02e733e214e36cef89df87e3a3cf105d891e25048b5901be87e
MD5 18cbf4c262ab6ad8bc914e5f5b020bd4
BLAKE2b-256 2c613ab8e19fab669d2df9597c9f7c75c74cbc8c7401128fef60bb8bad6c28a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c6d40f16020247f54b64889b314f990155b3b486db48c24e36700ad99b126e8d
MD5 d0da8ee2d31abea0621957fa3e4a76e3
BLAKE2b-256 3568dd792542ef2a766bc5e21c399ac0b0e987d80a46eb32b7d8e945f6b6f1dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1dc110c8ca15afa0c621c55a68ff48c984202dd7629f7584561cfb490ef4161e
MD5 0afbac791c8f13d946aa93e404b8fe8f
BLAKE2b-256 988dba1080f81699294a7bed968665d3670a8ba53d12e174747b3580534923be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cb61e10e229552b701cd5d87e3aa66d5040c916b555ef51b2095d61d39c06d7f
MD5 034596ba3386bca97fab0dcc95948d31
BLAKE2b-256 06df60251aa2682edc39ab56099d798eff382706a10f30cef27a7fb5ff23e343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bcc45e31147e69db0aa44737522c1df9adcafdd584bdcb90f58f4b4da23bf2ea
MD5 b558bfc645da2a022ae04776966f015b
BLAKE2b-256 fdad44b477d0e4db9745faaa08ff1be85b969b116e30260d683a94606ecaee16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e8025bc5a3399fcbdab931f03afda859878011b6de470218d177dcf0afc26ec2
MD5 d3c59822b55d1447bac6989132bf44dc
BLAKE2b-256 cb6249862f9b5c663ed8571f7829af729214aed91d640d46859caf5b5da675d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee8ffe92e39148e2af379e7b4ca613fd08517390ec69ac87bcbbfb1c7bc215f9
MD5 74736f74e9d09ac02a77cc82166ef85f
BLAKE2b-256 64480e7b1d2129188bdf4d79dffd4f96cfda31cba04bebfd0aece5b81375173a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fb4ba9629f842a39de605b35d92bda5c2bfeb0c2c865a8d9e540e7345e2ddc40
MD5 b3b5b3315bc9390901a19267684947a3
BLAKE2b-256 53646102ce2e91c33487d8815693146bd05a977f8e1cd76182258dfeb077748e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9a4b43a8e017e359dea6ed50b36b4805b660c766a44caea880fdc810e43f74ea
MD5 ecdc2730de056a6071173b715cda0943
BLAKE2b-256 41f5986c6a55b87b0b83914e6443c42f57456dfe7ce66aa54850a17d17a17cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05c3fb4e4172c58ba2d6c34864c24d07cf6df7d481cb446f21ff5b7f9c41a700
MD5 8089256d672c19c74bb0586f8058c10a
BLAKE2b-256 f72ac80478992d640b261a9b7b1fe27fc29543ccf07686b38036b7552c81de80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba65a4dc7ef1f2ede216ac78e73d6857b2a30f77fef3c944049acb8cacac47f4
MD5 1ed9c005088e1de2413d8912455ac590
BLAKE2b-256 af6642b5f4a421154ab67de3488193a2699af271aba856c2baa9c156ea8130ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 561c8041dfdc839ec8a9df99443ecb9f663398af0375336849e63275b918fbdd
MD5 68bb2fbbe44dc920703ef03ce904def1
BLAKE2b-256 3b3f915583d0c31fdd4eb672b0f2a78e325e440eb0da5663f54a4d23f249cdf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7bf79c4ea314e35602966e08efb00823e60138e83c2a7cc5e49c76830c39deb
MD5 7d3dfba1fcce43217427ca68742a4f9c
BLAKE2b-256 9dbf6227f2f036c1ea323e227342f4e18890a90c9509b8a94a77657bd6ba16ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a70113bc82faae2649a17baeed29aebefc6a2fd10a850b686c55ebd9e2af5ee2
MD5 3717b35c17ddf312d371d5ede2a70797
BLAKE2b-256 b2829777c57df29a0709439c725e8081e1ddeea4fde9f6363f8d5837165ac73b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c6a5ded896fe96da8194d662aee41e00d099bcd6d9b637db872401b280a8c4c
MD5 8d098a3c50dd64cdbeb7ed575975f15f
BLAKE2b-256 e590a01033e3c7529dffeadc2900366fbb81f163479482a54ac9b7d89258c1e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ed386152cdb21a257d208cd64a709e5788369f911174ca912561cfd1cdbbce6
MD5 3ed91552935cce3e49758eac83e500f3
BLAKE2b-256 297e87a29b12691efcd1efc5804a54f46945a607cf6ed12ef9ea851013352f82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ee4bd4503e17c5d8ffaa294b39a435cb78ae6c7339891b0112eb6d115f88fed
MD5 b45e76ed299c2413ba4987cbfc3c4b09
BLAKE2b-256 a34aab79fbe2f7d7526dc952bcac1e60b5a54f294d0fa3d3571fe29ac31158ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e89f2b348b282f1df232c624c4f7ff7c2af9281e6defb2eb13eb1b013f8e7e8
MD5 cfdfa1c8747f3104bd53749ad3b4c6a5
BLAKE2b-256 232b131fc3da1ab9d90504b91d770fc0dd7465dce49ecd6b12b1ffe1fa5bbbe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5b21df8676f9f6cd0d1f7cc6a50e351a9b3e3cf7fa4a2d604595fbd586bdf56
MD5 2351c9d323c2d345c3e44fdc4f75c411
BLAKE2b-256 2d1b3b42b04ce997aaafa066b390b0e5a549f3b9e67dcbc167c9b64e51e4fc53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d91d18ea081f1fdbb74d7f5cffd0e4e8fbc528e95fb0d73c84d6bbcf88a14d43
MD5 9e488b3127f3a5d2acef50b9915205b2
BLAKE2b-256 269fc2dc68e4115c400e28f25495c8caf85b593894325f4c49340803215b4f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e29c9c9f382c0200d7bd394fd15f5f039ce7e7e1382eddf47a7cea90bb6b1867
MD5 5baa2ed2489cc0388bc81f2397bfed4e
BLAKE2b-256 97798d45baa7c78fca0f2a55a0d980e703a533390d9376233a27ccb4ad6d69cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 834c85a572e2d4d53dbb7076f7614cc004ceadcc81e0c433a80ec75420c363ce
MD5 272d71295d4664abe7348b2b0bcef3e1
BLAKE2b-256 7c336ed6e73d9d068416b55c0db271135b7570be02936a07442b1a1ca4c77c45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 220fa10042ffbe772b9f78d292f2320693a8a6a052f060f937214a0ae7ce4b2d
MD5 425a0431336677d153b102be0b3ccaa3
BLAKE2b-256 59d5a6e4a51cbf52726638d2dbfb5c61c6ff544822c41cafcea5d58e60a1495a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbfafe96b0e5a98432c602ff773b5b105041e2c66960b9091da1d253241022c9
MD5 89a9d8f6ac929156288230489d6ffbfd
BLAKE2b-256 5d98a50ac95d62b2fdae89c29ee2f6e640c3c226dcb3dbc6e7108b521edacbf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d9994464246da25f45c44a93247a3c5ba70bdc04672d574f7699d4a3b34f02c
MD5 a9919cb3f5826f559a141559bd7d3781
BLAKE2b-256 5e869af933b3c967385916de47336e1a6da18a9734aee6a713fa2d6c4bd002f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93af857d48dead13224eebc8881df49800cfdcdd54e12d66dffff7484ff60143
MD5 229bcb14efb61c2fcc9095700cc0e3eb
BLAKE2b-256 125149e86cd199d0cc43994e0add01206af4a27e4da071e1439e76a3e926f043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 136df8c1c3f3855899cb627c2b3597544b57c4d8657c96cbe09174c7bdcc73ab
MD5 62d12d4c8062c72720de181c877783e9
BLAKE2b-256 c35f77367bc151e3871c3cba28630a911cc70ef0de803ec946910fda14b04dde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3915fcc6950e30823a774ffc9ad5cc287f1be3adf4ed41e46d90756bf1b210ee
MD5 4529c52694d2afa8efcc05a8792bf474
BLAKE2b-256 b1235d777004d3136c7d01449527bb55ac0bf98f1462e9cf8dcdcdaa9dae6421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9a4f0b9eab0862acf797f211255b6e5fc6074d6813ab56fa03f056543d9ea242
MD5 54e75e472a1b39cb1a3b771bb57118af
BLAKE2b-256 44f02e14a9ac840f33f2c2515597fb3822c43e1fa56734620ef2a9327177fad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe9027589ee79dd794f6331da075208b41cecdfe1b80fe1b8ae17f6d8f20ce50
MD5 5355bf4a69203bfa4d958f1cbb185ab5
BLAKE2b-256 492584823a9335f56891215c2d3d6ccf8866ee29d5b224b9c45d2b24b6cd72de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 697fa0ff2deb0d3892274789370aa43f0c05cc7201bfcd7f0d9a2e4541666d29
MD5 b36c0043aa8cad1f4b01c9007bf5761a
BLAKE2b-256 3e3ddcf98f0431a0188971f482b6179dec6ca67125c5792db41e196b079a1624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e66ee0d39d36b2b041d82bfeb791386219a6735951762b915d0a090c6a3b4377
MD5 5e25522bde07d7d1e0fe30838e4d2a3b
BLAKE2b-256 d8da6273f56eae64f3cda8a6567ec03ec48b51709bbb2fe5b1423f51731db6b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7201fe26691df2c5243fe2d6fb4c51ebb222f6cd5e580ad6704d354e506af931
MD5 85056893bffad783b9b2a6f55c051368
BLAKE2b-256 b51a31894bfac64c1781a488bad224038e5f59f2a8c85a0afbce6e9ec67efd1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8d6cd49906347ffa2f8febc854af937686c5665d403ec4393bbef8f6426d7d1
MD5 ce982ed9ce991220c3df2529064a719f
BLAKE2b-256 326b4d88d9739549991aafbce13fc801ad956de26430a641e490465811adedce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e44be2925c15ecbb1fa03c9102d12c8f17b0af057d42216af16b6508244be31
MD5 de8af4090f991a3f7559dede4cde11f6
BLAKE2b-256 18ade9718babc2c4e8c442d606cdf3ce7f6d498ad8b5e2c99eefb1adea5553e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf1ca50d2d379574642e685da2dfdab177ccdc441b40e324667194d5b42d74ca
MD5 8b6ac644db7f362d5d5a527ff6dccfa1
BLAKE2b-256 d3f37d7421cbe769a25c98a89e682efeff914c968a8dbc1c2a589d7cf66c6fbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4f2dc353050ad7c98b0f461b0fe5142b638b3c7d117c6bdb1926c810aac8119a
MD5 8cc7b562de7f7aa6f1620857060ab00b
BLAKE2b-256 a2c37c31a259b254a322823af69549f1e24530829673f761f3e9612e14d7f70e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f822b9d56ea78950934910b4109460abe3676a860953177259244c911e54084d
MD5 c071aca0f99d713944bb1b85956f45cd
BLAKE2b-256 873cb38779e1a0a4f6ac92b3bce7849a91cd53c0518af604c3c511127ffceb6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8ee81a764011230574ccdc1cd2b6bc1b236d4f79f65f6751682dae4efa6c5a1
MD5 2de0fa3f9b3509d82792972541cafc76
BLAKE2b-256 ad6298a7932f98c0eab2d147155572d086032184558dac1f70ac778dabeb8ff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f83e3011040b84d2fe0afc2fdefafa833147cd9dcd14615356d4e9be9e007367
MD5 627e26d02578f1496ebe62a4c872cc07
BLAKE2b-256 0d24b6d33e55d764d00e3469677b0ed3a6d4c32d2f41a3a47acafe84012cd475

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ed03a644207eb7118cea6294383d7a6a367640d51b072edcc40196832537f1a8
MD5 6b14e1e62f9d93fc015c2fec6ada7c86
BLAKE2b-256 2700258b100739bac00493d89b632e039a6bab316d9b9d189e73d79ac1c84c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 13fec451db50e5c9808e3d5f7e6c07a22acc50c77f835378037d96dc87dfb84b
MD5 adb18500f5c9c1c8fb757cc0c8ea4ca5
BLAKE2b-256 6247362bda30dc1e9211c7821a66c0f62022c37b8547b6a19a7541ad8376da08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf4340a05756f098d1e3af65f0d802b66bf0cee790981ef66199d6f75f8f881b
MD5 55c5fa7d1a745f05ff16d6cbd9711bee
BLAKE2b-256 e8350831b4b21bf0ede23f83dcc28f7915d46a4ad2d2b52834f73533c6399b58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 80d0c14406c5d8e2fa5f767aeafc60c5b4092981233de3894bddfe04402755e4
MD5 c997491d3fff4efbb38e3b8fef870193
BLAKE2b-256 763d87237dff93efbf52ca2529c8034984b056bc488e973074b7aa38443fd4c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 28e4ca85320b4fdc990cae3ce1407114217f8fd8daebc1e47e3daad58c91eba0
MD5 f732cdd980301067a226c4a70518561b
BLAKE2b-256 cf8712268b984d626dc6e97100b73c5d9c5fee522cb6f5c6d1a2850144c8d7d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18b97e870096edff6e8fd7c8a80f72f47c5a9c4888954bb4be1c84bcdb1b01c4
MD5 ce128ecbeeb9fdeae72b9a4817428ef4
BLAKE2b-256 4a93788ca96bb163a598fbac88551b7b4cf84b92385b6ac9629a50bb1aea4900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8b1161b064ecd259a729f2a5f10fdb7178913a9070d3355d3f5ea1866d2c94d
MD5 a1cdfce438f07a4049f224c38a4da767
BLAKE2b-256 b40b40a73cc848da8951bf22d07686e97b13da6d1572274e557b4767fa5717fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1f1681119caa76e2fb6fd9f684ba88de65375cc064df27708e1c53f387dc0649
MD5 f707e9869807521b866c31fd315a6ed6
BLAKE2b-256 8d1ac35c659fc5b1f62012169aef2a1f5e326335c72d0f5206e172384c3c37b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1115f443ea829f7ed822e64555db9621f993299f0cf8c230a63262751f22a258
MD5 b08d95f018983f7b6e842015f6a53b00
BLAKE2b-256 d1281833edd4395243d4963074ce4b38e44ab4bad6580f060083e52b3cd9c42d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9d8563c8fa09198ffaadf424eee96c5b7205abaa080bbe3ffb7739382974cab
MD5 5611e7935b6cc90fad3fcbc1db0032f6
BLAKE2b-256 ed91b2042085e6d1462a2833757a60a2ca9e17d87a37bd9318b4151d9a66e97e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 329c2a3f72d0a759fc6ed6ed768899f35b317a7d0f4466148dbc3477fe1a9a3c
MD5 056181ca4fc5cac6b71b61ac155b80d4
BLAKE2b-256 5f4d2823fe641c32f2f72b93b7040ec373f7e6c61343694e9a96bd8ae7a5fbca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1a191720e60648c601983e820201297dad0face63da50c9ea83f5142df6581e
MD5 ecbe20430dbdc07d39cdf8aa5ed9bb13
BLAKE2b-256 10f20f5a0bb3a70cdf551481bf2699cd523d2074c9d3450795132828c0223d0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96a09c2534015d783614a317cfbf60365a3fb64aceb8be23aafc23b5118f5b38
MD5 d234c5867959e028b38fdfbc482e0393
BLAKE2b-256 095be659a716515d1f0a646a26c473a35ed2b18307f27159055b2697f1c7c596

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06117e23d3ab870132c73fc3bbb9993419a79da14132641ff907489fc96c7319
MD5 7b67c84a88fe10989e017b69e134045c
BLAKE2b-256 37c2891abcc67c400936e91bb970f3486e04e2b7899f7c7b412d5e9871d402d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9aa142f15bae6554328ea58296d15fe4cc38f2a1a8f086172d0430832c8fb9be
MD5 132c5649ba33edd986abe981046065e3
BLAKE2b-256 549ddea8f28de3bfd333e440797cef5bb82da3cc96fa294f2daf2c28eef3de0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a8b6d776210c26241939f25d5aea541c5a22a13dadf1dd07f22bbe27046ea5a
MD5 27ea1aece32a5c2129c272ec4cc97c7f
BLAKE2b-256 25aafde495400e97bae036f876094e94d23240cc25e8806b0a064a1cf4790a59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d646656ea9b7a043c1504f1d77f87e797862380b5b04cb6f04e68faf60bffbca
MD5 1d05426a55d432fd41352694928fa90c
BLAKE2b-256 2ac2cfc6ee7e296b9a9cd3a1c6f9a7cd002629fbe57e6aa25f4b5161371d529f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 49a35acf1b328772c4dc285581492d06157ddcd6c38274e9ecf7133083bc36a5
MD5 ce7a0dfae09ee63b52ad5bf20d42b531
BLAKE2b-256 ce3e851c5a8dc0cf7ac2794c5266b41063bbd74702fc7b9abdaef7fa0d88d538

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2c5de07585a669c9fc380fa83900028001dfaf79e9dc23dc38bb4e49c3f2998
MD5 1679daf874929f62188f886ed78b85f9
BLAKE2b-256 44fb1df9413689499fbdb06ec9e7f377b1062d23a806424f152cff41f5b32710

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e68b29c9beea37d1553a471ed1834e8dea8186d683c3dbb861053b5df1b40d8b
MD5 f1c4f4baf22181612344ad039699580c
BLAKE2b-256 26e2a801c90ea1fecfb6bd817ddc5af30c467e96c3ba72e9311ba3ed3cc7404f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 955ee47fd6d1d0135c1ca1f751b1b678e150355769f2691d17450187278a25b5
MD5 0790770f93777002e83b3ef26a0f4a9f
BLAKE2b-256 4d8b14b8dd3697b2c2f1842e76048f7e1eb3a2412c05dff7b922d3b67b6d7bf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 032182c3f3aa13a5eeaeac39293901b4ac6a7fed91493c3f7c6919e1459ee18f
MD5 3400b901837cd384520d9ac2fc91d467
BLAKE2b-256 249f6d85f387832d6f464a6259dbf621f416c1f8e2046f9756de28e9766d6969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 063642a79c2883ba5ed5d1603a7b1f423f9b038b53c54705115c970dce7ec798
MD5 710ac0d510bee6c6b5881efb0e7b2017
BLAKE2b-256 a5fde84d46d6e0f155a07d7e712ee517cb55f985dcf58c02378de1de307f1214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2e4c2def85c9740eb7266b909dd281cedde743fe09f19734200b50635d98ca3e
MD5 dc656174b5d99d808a2f22d4bd9609bd
BLAKE2b-256 52d43f889dae35ce8530c8e6f0a7d860caa02377fb3f1e309980181537c19b25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee4a3186fe6ff3ab3fb6b3b04adc7be20555cb02760105bcd8f9ee86fc1acf54
MD5 2c8e916fed597ae6dd0f6c243c772d1d
BLAKE2b-256 9d6ffcf496970e39701568099a5fad021b8feb9da79651e41fb3edaeefbace78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e96be184958ffc7b74e6b72722da7dcabe3dfa763a84a5c8f2c3832cb7816903
MD5 85c2508974df01fe911a0eaa73031c38
BLAKE2b-256 310aeaf6511edf213a156c813a03f4ee9798e3841d35a10d71f71bc9febe7553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 962625a223c81de3d187e89f7ece4229ccb7f1e0c3a01bd34ca5da8f7e0a9f89
MD5 5093fe1542f05478c09cac8030f40582
BLAKE2b-256 ae9a6a62d9fee9787efee096091d463123b6b525cc7b332f45ec60e65d215ff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2d39330e007857e55112cf006a672a1d61953654b7301f4a4e86478d052dbd3e
MD5 be1fc0f37aa7389be5719db2f32d9a37
BLAKE2b-256 0a8be99df5367af8b1378e1039aa1e0bed5347f238f0f224a698f6a6634460fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a236c31f827ba76fb66b8977181a7bb5707e58911ecfa0311495c4dd5289f2e2
MD5 db0c40c18f997f5f49f8c176339c7e13
BLAKE2b-256 d52f264a12bd683060bccc7bc172f8135565fadfdff25a228281d01fb612f607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b84d4b488437ef0bce7315e31e004f21386fd5bb14282c1def64a0ab3269da2
MD5 ff42829a87f1ca548a765926f2b845d5
BLAKE2b-256 14d727f9dea609b55eed3e8fef0d9ec513a49694f926f04b46b607678ca180c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7170a25cd98b5b81d3354ee4dbcaaa8f8ce40a616ec56839baab2951bfa40836
MD5 8cbc591424725dbdc3af3bc1e4fc5ea5
BLAKE2b-256 cb5d223c4ad73e35d1ab6f4e338dc78c306202e9d42cade9773eb97868aefb51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0fb8bb2054de9f548864e64c5dad80edd89a0898ec4c0051ff33d1144e3494e5
MD5 5e8f98d95014c08bfe465d07029a8975
BLAKE2b-256 d10c0c4dda6e0653885ec31a09f5b4ef8a01f4df1239afd998ed982c8330ca71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d25364b41c75766a80ae1b2f47f2b57776a9db1c791e581c6d4280356e6dd491
MD5 3e9741710241a155d10e799624d1ac23
BLAKE2b-256 48db232b42f72840202736e8066f1c0a3991378076b6a2a9d8ba9aaf5bc3ffc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4df9e4116b1c04eb380b1ddef9ead64fd50123697f49d9bb0b8d949287f57344
MD5 5cee7e29810e9334cc5dcb4ba126fcc7
BLAKE2b-256 dc76c5d412bd732a0f2bf40bcb43b8d1079b0dd7182de2c0b61fddd0d04c9971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 103d2e814b2ffdd10d1c57bbc4c18b486c94bde19168fa698257cb4ab7c69837
MD5 2ae306ad7e88e6c4729667d5c388950e
BLAKE2b-256 f316ee918a98b3581ccd1df76eb0c1f374676cd0457e0d19efdd81b4a6ad67eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa007d256ebb463f17ce3701aa7fd8be35bb0e3592a3d83393f6347e2c55bc43
MD5 b128654ffd212a6f13d1e103e8a373fe
BLAKE2b-256 901e64a0348eda191cc5c994701dc34c46dbf3581c6f84779afd2d8b7875af50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25053a52fca3fe16bca9f9200f8c06f95ed855037f6f18b829b09b7714347a69
MD5 bd08359b299d776c4b2d2028fa5dc2f2
BLAKE2b-256 271043d754f6fe1d2802621a5223fa2cf1a11d13552a527db9a11f9f8c21d8e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f742d4da63c370bf33b7e3ce78db2646c0914af7260cef4c5149300ddd080b4
MD5 e78d642a0508177cc9ff2b7e607255e3
BLAKE2b-256 9539cdec59cf3aac73ac52be450c8ee0f6e87b1223367351d89b1ec17db869fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e00dfd747c116adce7caeea64b0d46013af0f436b39746c9950b005445b0a492
MD5 0b0a55984b3a85eb0e61e3dc7975daf5
BLAKE2b-256 bda03807c9f34e078166fa2cc5d85800645cf0a84565e5d8eb3cc98f8cb3fa28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a489ec58f0d106e31bcd353cb355d890c002aef35b99dd0a106b280cc8f11ba5
MD5 05fb982dea814ab0d98b6616d0f9a2e3
BLAKE2b-256 a2afb4efb7505fcd4c2114228b3655154845c63ea454276bdfb9a4c9ee9d2fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32f83b9311140e5218bc083a85f78dc172cde8298bb2fd985f3c81e9271db560
MD5 220662778d764052c2510f45ed8d226a
BLAKE2b-256 0aad96d92c89950eb4caf7566cad613a7c7e14768f40757e0aa8165827110722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 abe6638b82c24e84633242ba263e68313497f0e311597bcd503c72d570dd5d18
MD5 7efead42a3d686f62ae2cd5bf2b010e9
BLAKE2b-256 169940fee59297b7fad0760fe17890648a52194dda2ec261c71e5435d0469786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82b0145f17a769579598c12340470d6f4b6eb06d142eb438ba203ce77736d77a
MD5 97fbb611c27cf3ded4798a216d84ef5d
BLAKE2b-256 3dbed0c591cbcb860d4e932171a7e7096db9007b5e804c68720fd8c12235245a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8d3e99e48dd42ec9164de4b8f0c4678a368c657f30aa826d2f22efec3874f66
MD5 482699bb063ebbf37e9942a34b821777
BLAKE2b-256 dbc5023e9c09f6c1d85f14555c5fa358f46b5c7feb58005cb80eb706f9b5a8cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96a79c368a72124434d9048798d664801380b5e16ddff24fd0ca222a15d050c0
MD5 3bfae8cc5fb47adae22d23d40bad7006
BLAKE2b-256 92db06affc454e06705861ac92a0bac086665a2717d1b4ac3bff90e18e36fdb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 39d8be47a044c8734b0b2327b66c64b734334770a4190c33756cd9bef7d65906
MD5 9a00e711a6a4f9a9de99235d5cfde02b
BLAKE2b-256 aec3a188a5a714e631e6de3abd6c360f8a32fd898aea38ebc5fbb8ef4098d0f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 acae5f6c506723dfc42dab0d0ed3ddad821abf83c599ce8f8240d927957bba35
MD5 4efab35ff4c98720fb4f0bdd0ceb9b1d
BLAKE2b-256 f605bb5cbd92c3a7a5e9da73b926b341a44f026f5dc4f584067898020d749efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0fd3395c601b0fc803cb07a3df166d90e5b61bfd4990b3ddeccc18f9eea8788e
MD5 4558eb217d13e12a4398aa648b9a7756
BLAKE2b-256 0722f9ed25f5da10a8007f20e98725ae9eb1cfe7b0328558e4ae3295d3cb85eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3832aa003bb89d3553255f8504c8c1856848d15644e363f382d28157701ff346
MD5 da7085a35ae155ce5ebd2eb128b836d4
BLAKE2b-256 55eb6266f8be77329055eb6d8a492b6e11bd4de9a8dcd3d89e42e62720238e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f67e65b77f77061b22791fc26a495b76f1fe4174a4b36577d6fc6770f6bf605
MD5 4f55a4a39bc8b447b0dcfde6317224a5
BLAKE2b-256 f5b7fed81822b60542a6b8a691c27f01927090e75c7fe5ac2251e2048c837116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f6787b01d78936e0933f125240cac5b5c5f4bed2eda554d252ef1a335a3b0ed
MD5 8c52434305870a566d6fdadd63a59b82
BLAKE2b-256 f5d42d5c0e6b53d82c5665ad1be384b8be53cdd2f282f4f3adf24a5f4ae525fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0278d2c4be49d3169f78ff961ab10a3149caf13e34333aa46e296326e0d0cbdd
MD5 8c321c6752ddf8cb938bb1061c6cc44f
BLAKE2b-256 ed250567bd5d21809484088a58922a9c268c5abb9cd3ed168eff8b30dfafa342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c77909e9aca85c4dfdef29280d8afcd575869395f033e7f371f506c63fbaddf5
MD5 8ec287cc7257f85c43f91395aefb1aae
BLAKE2b-256 48116e6eea07284f8f5c5ba1b734adb95f82f36f01da15a9f4c964964cea06fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44b299f51a983c1238d326269a609ff2a2dca5f331e36e29b53d3425720bfcc6
MD5 9eb4bbd28c43c34da0fa7d571136451e
BLAKE2b-256 dac8b943f9bc3123d5bea16deff9702bad4445b4de8121468c4ed96150c3a353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8149234b6ce3db557170ba49ce355c5507f16f4569d3958913008026cede1663
MD5 7ac08917e9cc25faf8b886800ff8864e
BLAKE2b-256 1c5251c2899b571d1c396951467c7c75ac9ef8d7ed3afd3acb6329e0e22b7916

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3dc9adecff4e5d11b7afa1092dae26a9338bf27185639787b728cd14da32a3db
MD5 bdc7d641a41f6dac7a97fe11d63d05e7
BLAKE2b-256 330befb716070c46a9832d700e7894dea9e6f00c9da43a815cd190dd1c9e3e91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eb3abc476b9414ad2a6f70a686182b57a5fe002a8cd07deeca8c965c3584299a
MD5 5c06b3551860cba42d1b8c82eac55110
BLAKE2b-256 6a2fc128a544af27ddb92f194e54a8709f81a11062f38f32ed28db2f99888007

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b6eb0bd4d6e7632f881cd3ffbee93e38c3def410a4349df1d860317ea427a67
MD5 2762454a83568dbf3f7eaf396925f27e
BLAKE2b-256 ba1b958effd84a7a09ca0a92e5ad0eaa81b7a4829bdc56085961b2bfd476dc41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29cff1d3461703dc6e0cfab3eca0fac6adaab120a058129582121b75773911df
MD5 b03cd2ebcdfbe5e5550a7c443fd765d6
BLAKE2b-256 4d7998c988144ac9619a3b96595cb430aa89a12cdc0a91e90310db8c67de17d5

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