Skip to main content

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

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.
  • Data Visualization: Includes a plot() method to visually inspect the data and the fitted model on a log-log scale.
  • Additional Distributions: Provides functionality for other distributions, such as the exponential distribution.
  • 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 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 maturin
    uv tool install maturin
    
    # Install the package using maturin
    uv tool run maturin develop --uv
    
    # 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

  • numpy
  • matplotlib

Development dependencies (for running the example notebooks) are listed in [project.optional-dependencies].dev in pyproject.toml.

Usage

The powerlawrs package 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.

Python demo gif

import powerlawrs
import polars as pl

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

# 2. Fit the data:
p = powerlawrs.fit(data)

# 3. Print the Fitment object results:
print(p.Fitment)

Visualizing the Fit

After fitting the data, you can use the plot() method to visually inspect the fit.

# Assuming 'data' is loaded and fitted as above
p.plot()

This will generate two plots: one showing the CCDF of the full data with the scaled model, and another showing just the tail of the distribution.

plot demo png

Working with Other Distributions

powerlawrs also provides tools for other common distributions.

import powerlawrs

# Analyze a shifted exponential distribution
data = [1.2, 1.5, 1.9, 2.3, 2.8, 3.1, 3.5]
x_min = 1.0

# Estimate the lambda parameter
lambda_hat = powerlawrs.exponential.estimation.lambda_hat(data, x_min)
print(f"Estimated Lambda: {lambda_hat}")

# Create an exponential distribution object
exp_dist = powerlawrs.exponential.Exponential(lambda_hat, x_min)
print(f"PDF at x=2.0: {exp_dist.pdf(2.0)}")

Class-based API

Module Hierarchy

The powerlawrs package is structured hierarchically to organize its functionality logically and provide a clean API. The main submodules, accessible directly from import powerlawrs, are:

  • powerlawrs.dist: Contains implementations of various probability distributions (e.g., Pareto, Lognormal, Exponential) for fitting and analysis.
  • powerlawrs.stats: Provides statistical functions, including descriptive statistics, random number generation tools, and goodness-of-fit tests like the Kolmogorov-Smirnov (KS) test.
  • powerlawrs.util: Offers utility functions, such as data loading, parameter calculation for simulations, and synthetic data generation.

This structure allows for clear separation of concerns and easier navigation of the library's features. For example, to access the KS test functions, you would typically import from powerlawrs.stats.ks.

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 --active 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.12.tar.gz (711.3 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.12-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (624.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

powerlawrs-0.0.12-pp311-pypy311_pp73-musllinux_1_2_i686.whl (653.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

powerlawrs-0.0.12-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (710.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.12-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (627.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

powerlawrs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (452.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

powerlawrs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (473.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

powerlawrs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (570.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (478.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

powerlawrs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (443.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl (620.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.12-cp314-cp314t-musllinux_1_2_i686.whl (649.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

powerlawrs-0.0.12-cp314-cp314t-musllinux_1_2_armv7l.whl (706.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.12-cp314-cp314t-musllinux_1_2_aarch64.whl (623.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.12-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (471.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.12-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (567.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.12-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (440.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.12-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.12-cp314-cp314-win_amd64.whl (270.5 kB view details)

Uploaded CPython 3.14Windows x86-64

powerlawrs-0.0.12-cp314-cp314-win32.whl (249.2 kB view details)

Uploaded CPython 3.14Windows x86

powerlawrs-0.0.12-cp314-cp314-musllinux_1_2_x86_64.whl (621.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

powerlawrs-0.0.12-cp314-cp314-musllinux_1_2_i686.whl (650.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

powerlawrs-0.0.12-cp314-cp314-musllinux_1_2_armv7l.whl (708.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.12-cp314-cp314-musllinux_1_2_aarch64.whl (624.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

powerlawrs-0.0.12-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (449.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.12-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (472.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

powerlawrs-0.0.12-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (568.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.12-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (474.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

powerlawrs-0.0.12-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (441.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.12-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.12-cp314-cp314-macosx_11_0_arm64.whl (389.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

powerlawrs-0.0.12-cp313-cp313t-musllinux_1_2_x86_64.whl (620.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.12-cp313-cp313t-musllinux_1_2_i686.whl (649.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

powerlawrs-0.0.12-cp313-cp313t-musllinux_1_2_armv7l.whl (706.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.12-cp313-cp313t-musllinux_1_2_aarch64.whl (623.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.12-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (470.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.12-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (567.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.12-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (439.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.12-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.12-cp313-cp313-win_amd64.whl (270.3 kB view details)

Uploaded CPython 3.13Windows x86-64

powerlawrs-0.0.12-cp313-cp313-musllinux_1_2_x86_64.whl (621.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

powerlawrs-0.0.12-cp313-cp313-musllinux_1_2_i686.whl (649.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

powerlawrs-0.0.12-cp313-cp313-musllinux_1_2_armv7l.whl (707.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.12-cp313-cp313-musllinux_1_2_aarch64.whl (624.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

powerlawrs-0.0.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.12-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (472.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

powerlawrs-0.0.12-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (567.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.12-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (474.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

powerlawrs-0.0.12-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (440.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.12-cp313-cp313-macosx_11_0_arm64.whl (390.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

powerlawrs-0.0.12-cp313-cp313-macosx_10_12_x86_64.whl (401.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

powerlawrs-0.0.12-cp312-cp312-win_amd64.whl (270.4 kB view details)

Uploaded CPython 3.12Windows x86-64

powerlawrs-0.0.12-cp312-cp312-musllinux_1_2_x86_64.whl (621.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

powerlawrs-0.0.12-cp312-cp312-musllinux_1_2_i686.whl (650.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

powerlawrs-0.0.12-cp312-cp312-musllinux_1_2_armv7l.whl (707.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.12-cp312-cp312-musllinux_1_2_aarch64.whl (625.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

powerlawrs-0.0.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (472.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

powerlawrs-0.0.12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (566.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.12-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (474.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

powerlawrs-0.0.12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (441.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (444.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.12-cp312-cp312-macosx_11_0_arm64.whl (389.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

powerlawrs-0.0.12-cp312-cp312-macosx_10_12_x86_64.whl (400.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

powerlawrs-0.0.12-cp311-cp311-win_amd64.whl (271.9 kB view details)

Uploaded CPython 3.11Windows x86-64

powerlawrs-0.0.12-cp311-cp311-musllinux_1_2_x86_64.whl (624.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

powerlawrs-0.0.12-cp311-cp311-musllinux_1_2_i686.whl (653.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

powerlawrs-0.0.12-cp311-cp311-musllinux_1_2_armv7l.whl (709.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.12-cp311-cp311-musllinux_1_2_aarch64.whl (627.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

powerlawrs-0.0.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (452.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (473.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

powerlawrs-0.0.12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (567.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.12-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (478.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

powerlawrs-0.0.12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (443.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.12-cp311-cp311-macosx_11_0_arm64.whl (392.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

powerlawrs-0.0.12-cp311-cp311-macosx_10_12_x86_64.whl (404.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

powerlawrs-0.0.12-cp310-cp310-win_amd64.whl (271.9 kB view details)

Uploaded CPython 3.10Windows x86-64

powerlawrs-0.0.12-cp310-cp310-musllinux_1_2_x86_64.whl (624.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

powerlawrs-0.0.12-cp310-cp310-musllinux_1_2_i686.whl (653.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

powerlawrs-0.0.12-cp310-cp310-musllinux_1_2_armv7l.whl (710.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.12-cp310-cp310-musllinux_1_2_aarch64.whl (627.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

powerlawrs-0.0.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (453.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (473.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

powerlawrs-0.0.12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (568.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.12-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (478.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

powerlawrs-0.0.12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (443.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.12-cp39-cp39-win_amd64.whl (273.5 kB view details)

Uploaded CPython 3.9Windows x86-64

powerlawrs-0.0.12-cp39-cp39-musllinux_1_2_x86_64.whl (626.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

powerlawrs-0.0.12-cp39-cp39-musllinux_1_2_i686.whl (656.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

powerlawrs-0.0.12-cp39-cp39-musllinux_1_2_armv7l.whl (712.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.12-cp39-cp39-musllinux_1_2_aarch64.whl (629.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

powerlawrs-0.0.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.12-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (475.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

powerlawrs-0.0.12-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (573.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.12-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (481.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

powerlawrs-0.0.12-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (445.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.12-cp38-cp38-musllinux_1_2_x86_64.whl (625.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

powerlawrs-0.0.12-cp38-cp38-musllinux_1_2_i686.whl (656.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

powerlawrs-0.0.12-cp38-cp38-musllinux_1_2_armv7l.whl (712.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.12-cp38-cp38-musllinux_1_2_aarch64.whl (629.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

powerlawrs-0.0.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.12-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (476.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

powerlawrs-0.0.12-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.12-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (481.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

powerlawrs-0.0.12-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (445.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for powerlawrs-0.0.12.tar.gz
Algorithm Hash digest
SHA256 5d97193ce864fcf9019876d5dfafefe66617e5da7b1fc3fd72e67d47c9e33491
MD5 c78d329669d3203bec74bfc473beadf7
BLAKE2b-256 e048c5bcddace921658123351aa7711b87ff54cce4545f0c6bde8d9aafbdff84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f77491c4a6ead6ac079779de9b4afc850543c809646621fb601d959b0991f141
MD5 cd507f972182301ff9ac2c31088a3567
BLAKE2b-256 8d1f1c6cbf974c3aaf6d54db3b234d0cafe493c52195198e91b811c266677f04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 167f64bb02f2108c2625dff352a8f7642d7c26291f24699f9d5cf98adeeb8b2e
MD5 2338f23c2dd1504208eb620c1678cc47
BLAKE2b-256 8728fe34b454db6e9ecb5b4f885737315912c0505bd2079c7e52737a7ea77f00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b23807534cb51f6bef9a0bf3935926935e4dacccc004233b770333abdb4f78a3
MD5 2c88e863005935dd09f835fc7fd5669f
BLAKE2b-256 2041b3f3fed55519fe2bde5ac92756056160f1d5abd5071e9cbab839eb426c60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4fdcecbcf0a35e712ad716724f5e1ed726ac4bfd1ff322a0f32de137a331f88
MD5 1ed6d22cd15175926051249fb0e2f883
BLAKE2b-256 addd8a86479948357f2f8ae2d8b3411aa0ddbdaa0bf567a699b5ed098bb7582f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bae1ea01a5f822ee6de76a70eb4f8af58c1b2c7fb9d5d50a2bcb76ed912f365
MD5 d81a90646abb773bba73e4c8c9281f96
BLAKE2b-256 4ba20cea5c18fd2ec26dbac5a990f1732f9ebe75bd835a0a8cd7b92b0d0b4f0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4c4e28945848307a73f2702b05616adb207cec1c3a1b34588bc7e25bc913316
MD5 57bb853e1220e8da3bccf96621e50a90
BLAKE2b-256 061ae1e73a92babff8d03725f44b5e564e387ac5d53d3a805790f1ad6bad9d75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff8276e5e2c789937d483cc8cc62751219e7703a4ba536f4e3bcedbc6a6aa6ea
MD5 e80faa00733ed5eb01a3a30064c10c57
BLAKE2b-256 8d38f87e64e36a8e6678c514ff55fdaf7e543f74178a7c73a9401b66dbc91d2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 738eeb2db2e2a973429f468a6a492df3572005a306db3483e6fc164747a8be11
MD5 2c70ad067ce1c325e3cf3f9dbd10e047
BLAKE2b-256 3d4f7ce25a685261b24ddc0f65ab53179dd8a542161cf0316b35c54138adac09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb499bba29db7f4a1bc70515c078a6fdc55d9acec65203576d02adbc84310394
MD5 5c405387b5af577650453226bb4c4848
BLAKE2b-256 a6cdbdb6ff0ffbd7c4761faad6064cd0ba9eefb04e352d2b0698b4e74c2f4f61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 651da8c83ceb59d800402c419c30342033fad3b5e6f82074335f55899d8f432f
MD5 aad15f6d9c9f0fb9fe1259c19ed50803
BLAKE2b-256 153afd96d9d77808b9939678e712d3d5e0931fcf36f5f4ee9b7121181ffd3f87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd3ce826a8f7ee2ad99127d6b4a3e28fa537a32f180e492a86090d62f2f1828e
MD5 316f6085685b744423675b82b396a62e
BLAKE2b-256 3f2cf0947ab1c43a3d7831fe1c884769983dc53065139ac749854e9c7f7d1eaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e2d776b8d14b5a56ec2e7573d370d2a921389f467bf0089c43db39d36a17be36
MD5 b2db58938bd17d3c60818dcef5635439
BLAKE2b-256 20a675ac36fb406eed7cacd252476dec3972cd6f9eb2173c4571395f6df7cccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad172c6d0488d99bed48b3b91afb63e8b480287f379e0f6afa8329c2b3bc3f07
MD5 80042c242d85fc976aba5337362caba8
BLAKE2b-256 787167aa13a73bfae4087f072b370bbd556e3ef389e90e74d6eebdd16ba89159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8c01b37240a15c39ec1c4562b3b62190f8cf6b44d217ead11aec42d5e3833ba
MD5 fae7e042003a02a2cc2d2a18d407a43b
BLAKE2b-256 3c68e2c1cdd6d05cc9f64ee5a74278383bc6682933e7c4ca4430d9d7b933c0d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 028c1b4d74bd2cbf8920c23729b91984166d08fdbb32d278d088a70909730b16
MD5 267e506049d51cfd6da2faf7dce6d594
BLAKE2b-256 c8f99e67bf2b4900d3745c412538996fb978c0e5b078b62893c207a785305352

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c17354558056e22c54af235f742d4e87d00f96d97800c48db8b96ad47e757e71
MD5 d8bd637c43a7f2101431ba9d7c1d268f
BLAKE2b-256 df2cb11c786d329f5ff5202900cad862141764462dfa1c4275357a88061b7fef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab872eac03ca45da888bdcf010ca794004b8a9a5ca7f43f5a55a5f51380fa7f0
MD5 da3aeee6a6af3d1847ce2eda05fcfe04
BLAKE2b-256 e0837787de0dfb12d86e2d3f6739648e05c311859d0e7e1b7b3245eef36477ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 651c53418f5e9d7cf5efdcfd045c39225b5df13343309e4636d9b1e1002e543f
MD5 c65a9b50b9ae34f3d571fe632023fcc3
BLAKE2b-256 4ec678062c10e14797bed0c993a10d326fc39173936f98e6ae54cd63b6fb86ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c362e98ed4394c1199c591d013fd0137910f27832cef0523ddc9e191959c46e5
MD5 589806f39a0bda606ecb5f516a637a16
BLAKE2b-256 cbcea62c75ef1281dd5476de8699e174cd4962e3f7cbae894dcffb30c338cd8a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3c0b09d0226f32fb67022abb8b963408a3d0f365198794d42d309adff9add94d
MD5 1d250440e335ef752039610000628c55
BLAKE2b-256 5d54a57fc30be7c8e6fd35ce06cb7d820c5acb9087f26e8189beab68e8ee17ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37af4f3892b811ee14c2e7dc4234adef2f060d35bed4a605756f0a0233bd6d90
MD5 429bcec82c9799b54acdf8b6f6d34ca3
BLAKE2b-256 f06d6fccab16f5e181ddc818631fda5ac54002e572461262f158f87005b65b4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5fa9f927f5c17cb79cc6b66b17cc2733b4e3b299358cfad91bf9ee92eb026d5c
MD5 463140a5235c815b3483c0a6d351b2d2
BLAKE2b-256 a742d1494f955b052b217ff2eb5a05c4685f2b54bc5874d72f7bb8a1fef3fa6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6e87529c92d6454cfbf4ade0de3b845f2dd0da1732ab40f8cf8b669d72f0749
MD5 c2ab872ee93bfcadbaf99a704a46f0c5
BLAKE2b-256 d633a099c68d1ed14af375ece13154488aa875e3e836c005a1c7980ddb505e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13680425de2c9f768e264c55fedacd9eee78ff3be5d7dd3cd33ba75fcd16518f
MD5 698b9b8e779fbe6a21e212ac073bdb0c
BLAKE2b-256 9b9e4f0c3f7d7b466b1806ff126ab3d00e9fa9dbfa596e3ddab43547483e5761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cccea64a351926e46a1793ed17978d92f5ae7518f85ca0f88542eb9d75de3bc9
MD5 bb1b7823f7042ff5345d0193e17082d6
BLAKE2b-256 6ed74d0de5449dfeb28752e7109188bd59757e1e80cba8fc604d47ee9a56a94f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed9803eeec7c4f2de9f9e1e81187311ca9e14bac46a1e8974f0f06a33c6bce04
MD5 347c26bc7ae58d3fb3fa67238331c46f
BLAKE2b-256 30a6067efbef5bca02fda233c5d59234a896e1f7d2151c50efe328d7231c326a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e54cd5d24c6c2be80924ca48744b8a55f5e127a44cd0d5885864aadee38b6325
MD5 abc5080d15166c45b1d0ace3c79105cd
BLAKE2b-256 b82dec0f1f011e565b02283444b45d464b1b62fbb49c6367111243c2a252a96a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5fcd78882676f65817e7dd22f7d0e70c0ec83c506b813d07fc43fb1278397c1
MD5 b7fd7656ca2bf8e60c5fc2b155fa42b3
BLAKE2b-256 f61ee5f1b5a583d5dbd8422b37b6f35372bc0294252c648bdbdfd51efbb856f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 238be2cc267b318f3b5e87467bd3af13aa65cd507a790df6e01e9c1fe0f15928
MD5 3bab2efb84f3e1a0ec659cf6623d6962
BLAKE2b-256 4a58e628c98ebbc6c917f460eb1c47017ee218cac5d5aa6d0551c2d5fc7dd874

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47cb3f44c6c9b1260442e0c627a12f2ab9a65a400502da7e9449aeb72f9a5f3e
MD5 8df65673d63aa25155378a9330ce806d
BLAKE2b-256 fa7e1e6a1fa73d3c8af03dfc828b991988e2c251e67e816a2a0e9788e44e5153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d481de2301b97a0a2e8a06e3a611f41ad0b5e32c6523e2907f71f340353f7d4c
MD5 4a178317d0400b11aaf8136d4eb6397c
BLAKE2b-256 2345d1d4782aa9ae2dd53185ef8499b9971b4e305c08c57794f342dec1d2b878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46cb775e063f35e604efa4370d7ebf30a028bae4a52b0a700cac3fabe904b76a
MD5 31774709d46305e0e109e567b29e4043
BLAKE2b-256 c794fae532d94cc8eb10bdc0110b6f79a7c6f9674d456fb08874ab644df5f28f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05cb3a6d6abac4839c57080997085d20df07df197dbc80619369c16d0589ba2b
MD5 8bf8f30805090ed87e8d13ae94c3fc91
BLAKE2b-256 c5a9e16faf657529ed83cda41fdf3889ea4033f846ec9ea7b6844b2ada3b4e59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4ccb94e3bd9e00772a5a8547771530b79b8228c950ba8925d0bbe6b495597faa
MD5 debbd6ccf9d2b77a58e627575759b0d0
BLAKE2b-256 0939f95574d663fe71290ff8c4dcf491196316c8b6969f22aa673f8c50615774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f7c5aad48c1ce6aa9ba141d68427e263befd0f290b83406471bd8ca6337b061
MD5 3b4c1ac67e71b89ec36d5db9e26fa683
BLAKE2b-256 b0ed1c78559018777a0ad71d6a039c4fe639c2308800c5a3812246c5dd37d791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1ae9a877d81f005c2cddc238ed7698bfa23b1d356514e5ce6a3e20cfbff53d0
MD5 4d06b7c172d7f4f36c22fe2f20a81aec
BLAKE2b-256 10a460b51e6a7365dcbc6667ed29aeaaa5dfa165bdbf68766e3d7037024c0afe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 247afc207845dee6c7beffc519d10a59b894a98198bda06020efb78d3aeb6c20
MD5 350950eac27f08c2ebbd54068bf979d4
BLAKE2b-256 bd0f8ec974b56ff1a36611843887255825a9efc69b113d66d512b21f3aa21806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8e7651c7821a521f693e87e2ef731fcf907ad549e02b828b5870a6bcdb9a6e5f
MD5 6e1fe082b78c375db706049768564c17
BLAKE2b-256 693fea8ee0e33988641dcefb3211964fa03214d56328e84c5d48ad4fa47d3003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b447b960499b3febbd67451c6475f68b4ec31d3cc01366659175260fe3565a3
MD5 05b2115947cfca982f9d127d2eea688f
BLAKE2b-256 d903ac043df3d645d525a6f8c55251a321ce576b75f302e03e5ca805e46e5a7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8e16156f924f79bfb25559ea1978c3e6f3f0fcbca86ee1c34ba3ec8b76502a21
MD5 97ae7ab0acb456295bfd0067bfcfc990
BLAKE2b-256 ed110174b2de3cb419c1b57d2fe25b4576f5593a9298d1cb0d1c08e09a64043a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4dc56ee96fac379a14935f2977285c93b09b8bf413847ab83f73db70a3211ce
MD5 a7d5810905f15833fc3568c176d7d3db
BLAKE2b-256 20286bdbf4e1ddc78976730c5ceafc91c94b75dffc9a4645ff761004bab862d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bbc23974b5be8d9dce52b8ed696427d8e015ec170ea2ae03b2107f27fcbb4074
MD5 8173521e73ef0487d1b7c0fd23ded863
BLAKE2b-256 0e4c05f7b15f672fad1350fde239ab9c9b28bb692badc4379920bbce6675f701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a2255a10eecdb0b40c120d8c9c00c5bfb1a9464bcbb796062d5d26f243cab175
MD5 f073bcd6e173106d69089407df650ce0
BLAKE2b-256 ee564cb0f92fc6b3181b3dc112068e937a3188810f99b078e59e7198b8a72600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b565c4fdbb040c7c1d1a1b803a74955ad61dd2c2ebba3bdef7cd6e1eefd4d114
MD5 85987e01dde9b37da662a1b68997282e
BLAKE2b-256 98360f205ecf3e380c3de5e6df5e1ca7d3b2858d7c5e718e4b221031716d15c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e238caec4f1b8bed165eae4283a379486895bfd8c43cda84c45dcb95aa998700
MD5 3446a14f7c4d38f276aef444b0119d5e
BLAKE2b-256 8852414025c394369a5452ca0edaffd01f7501b50dbb7668f7fe90a826f7bc26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 39fef180fdd5cec5f3b18aa2bd514a04ec666bfdb44e3136a6615c8044f59270
MD5 f7f6fb5cf6a0e147565257a16d6378b0
BLAKE2b-256 a9f5459135723345859c883e9938bba3216880b20413b87e8d55d6986704bbbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dca76d514653a2c111f97a64ca61639cb772c786fcc152850e0ab562405ad3b1
MD5 8dd77f0a510fa5f72ab3d22174f1c4a7
BLAKE2b-256 b5b01a9e8ea3ca4a6f6830acea9ae870b142701fd24dea8e54fb21fab54c9530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc7fa29af3821116b9b0b5bd66017b521c47f658e97a8ce541951010d7f4bea7
MD5 e8ecfe0b90a3747ab4a5594614626c93
BLAKE2b-256 52693c0d9bb133f6be406e56836f372427728b6e70e78cc9bcbe676e670e248e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cc2ed6b354e269f996ab7c2df601b1f86911ef2563137a55fe727804e70e691
MD5 3e6cf2aac0d4bcacd6df6d56ea270fac
BLAKE2b-256 4600738e6f3c6a910c7344f4a92e606f34131917d638e8a3ea1f7281434fd2f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ad76646b221c191566855567c9e1c0f5eef969d6610ebee3fabf771466d677f
MD5 a63bf40bf49ff1dec44826c8014deb45
BLAKE2b-256 05a64a383ea9f346a3c520f667040098b1f77dad21cbc47af66ed69f55fd218f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 243b9aed981fea3cc906158bd98cf1bcb92acdfd0cef7040ee20e64ee07d66f8
MD5 3018e856a278d8285bb40e6e5dceb2f4
BLAKE2b-256 7d7b61a2c1ba0a88ac1d712a0b40221be80824004c831a417af86dbfe230c150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 242fe3e980dff9ec705d495cb6d3d49823352afa48c527074b17dc384b88046c
MD5 edb383998673a2027ef29424b3d28bf8
BLAKE2b-256 54211bfdcbc9a1b63a42104a0a4bcda46e65ad778298444fdfbb9e2218feec86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f343ef6dd7618a8c4bee3f8a630a5119c21f31b69996d9316cb68420f717671b
MD5 3d6d152d6a89ed487551d336cd8ce8af
BLAKE2b-256 e0a52d9ffe2658d60a6c72f8a8bf4c1416d4a9feffa5178076a87cd283219b2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db99cd2b3725a9050025f408cdad92fd73fb9b03d418ba85d2c03b522f1b2f73
MD5 4c25f3d85425da3b1748656adf724dfc
BLAKE2b-256 32c4d013be9319f29941ae8e1b68b02a3d1af9deaf3025e53952b722ea7c5819

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1df5c892dbb0898d6a8baee2b8cb80e1b1291118136051619affbc8132a5e62
MD5 660debbb6e800f13d158d0288a036552
BLAKE2b-256 e2248243701b0f5c47141ddf1fb86f5e9c72c450629a4e62e2eca32bb10002d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7c2c147530c6ebe22847c9b9515349dabefc3eb3bd655f71e30b1fc21fc8cfa
MD5 8df76611d7b4c743f3a94685ff09281f
BLAKE2b-256 cee1fecac2f805dda49fbb3bd7755d3d06eca65a53f17588d293a0bbe18ef423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acc6cb9b896ed9147417dc043db6767fb9be592136b814187f00b2e757664e23
MD5 26022a8a3f864c1abbdb4a4de1d8c017
BLAKE2b-256 46c72e9c5bd6fcffe81102a23cf4d240b43a16711b2ccc73e2bb45b7510a44ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c191d71c16139aec9239369e6905115dfa07bf0b6debba25d2bc122f95c08c1b
MD5 f4b59d259edbb68c41704229149f25b4
BLAKE2b-256 0b27b5eee91a598527d01a7da72f15f537caa06e8805e404cc90736354464e2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd76a64f3a5cda0a2317722e01a3c24e31135d168e66ee6091e3e62a72bb5952
MD5 ea672fadc7c25d6dcf6a4adae712f469
BLAKE2b-256 00283d783d02f8ed705e33a7e35969818f260b4a6261c8ed4dc91b7fe5975397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27aae0eefe8ad1a9c2c419ba5c117348a262fee4f2ccea427542dbfacaa0670b
MD5 ffe5192d16a1dbec2e523b371ff9ffce
BLAKE2b-256 6f838e367622b6518894decb5046fdf0850979f2428bd22220842065b098ec0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae81e6caf069bc8b65b5574268eb6ae1c268cf84bb03111df25632f7caf1ad83
MD5 6f11d73a2317fe25fa9cf27442adef9c
BLAKE2b-256 772ba0b2ef497d5b435c61acc603c06d969b7d948c7f7e0a8bd3f069fd3e7381

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f28841f046204f8802cd4148e3daafb231d06f748e7c0df4f61f960314e16be2
MD5 845e28c4cbbe59b59db53fe49624917b
BLAKE2b-256 34fd01e7eb2af8a199ecc02e3b6caf63fb3b9dbaff08d12f0d238d4b3a0952b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74be16149b062376a84626468963df6753a230ecffb15c4b6cc72b214932e45d
MD5 dec55f6be0b23eb1d5908c07bc6cbe1e
BLAKE2b-256 564722d8fdc4051f1439e61f7da46f983a6eb16bf03af162a9a099cd6c2974e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ace16f688f424b7f142c21167261af3864af6dfd5c981290f381faf865d166f
MD5 88f8b1ddaae1ea7cc42fe8d478b10288
BLAKE2b-256 47f90628d4af857c252ad0a6ecdc89163fbc5074d3233ad9aa9c002ce701b009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b56d1e15b8b89f5b3689edace6464a32c88c01e815e4d7e7b9924d3076d08cfa
MD5 29f9bffab555a4eeeb3cb269b87f9cc6
BLAKE2b-256 e4d7651088ae7e97e46fde1945c6d656cc9a3b89bd2eaa38633ed9c87a428d56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3b94393fd5a9711df38042ab018117270af84002aeac183e6feab5d63335fb30
MD5 92b21bc7892fbba6014e578f1d84dfad
BLAKE2b-256 492ca456d6899ae84dcf6fe9535f6960fba6baf952113861d24a351d8f4bd0aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8d5997774845d6f2ff893595aa09203205a0ae71c995e2fb978a1cde03f92c2
MD5 9e48de5c8c77a58bb3973a9145c8ed14
BLAKE2b-256 bcd5a76befc52c111fb7e41942ad6028698f1ec4d00c60f8dcf763f0a47fab75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1995af38ec08c36c0a75460babeea7fb97aa4483c7c1a268130e5f9c47ef1e9
MD5 03db3b7514ba44a779baa1d6ddc56f4e
BLAKE2b-256 dd410da250f7b483d9953d3c1b0f1e44bb4fc1311134166ddd76881e1221d5b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 612768c37d21ddd330689f1e76ada8488b9e743ae2c07080843dfb80c0b7ab5e
MD5 61596aa280ddd07d67ae3662f725c0f0
BLAKE2b-256 748ab8a51c47d94a5fd8f2f63cc09b5b940a17f569433c23b079b9b8087b90de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 649b71bf8e9711b002c187744e8b920ae80395135b0d65bd4b6b857ee5f2f636
MD5 5a1a5ae923812dace4034b3ce21b6476
BLAKE2b-256 8d7b7f7bd45ab1b192fec6440d13ad79b810c484d5425ceccbdf160582c200c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cec03a31b1b5197aa58deecce4960be2f12e58b11b673d33cef3cb79c8f9bc6
MD5 0111f180ca2d011472b74c0ddbdb1f08
BLAKE2b-256 e00d00b00e410fcba2928b8c424326e21e6d30a375d4d9e1dc4f84f02415afe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a24db528776b4639444e72daa50e246a48d312209ebfbaa0ab9c1c4e096c9220
MD5 5dfafd088f5776df719b1c0a53ef39ef
BLAKE2b-256 34df8c14a7acb1b52d7626e6092ccdfe0a14aee0e67237184bc2ef3dac400af3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 87a1b44b5dceaeed11a9491ec920906dc75e3df5802764d2104eaabfd555d6f8
MD5 bc7942cfcbda68b6278fb72c3276e575
BLAKE2b-256 14f4b4548197dbce3454435809575a9d3fdf7fdf692fb6274862132f18687d27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 777bf7529d01f8d92279d790cf6a55c7ff31a44a29872a6d081d551a9b2f834b
MD5 4de09998b0cf8f96897013698c0d12c8
BLAKE2b-256 5bf69b7628db3fa6f4ba9a569e0f024c28e3c9dc5d2d41a3af4afce6945bfc28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9b706d0b3f03f08a2540d7b6b0e7df710e13d603c9a9be8839419af17d7888f5
MD5 9bb246e63ecf79abcf72bc37e4d0e6f6
BLAKE2b-256 882eb64a3b0791ad49427addff4aae1ee11c2164f37afa192e99cb6eff42bef9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c21c956a3ddd12e1ea2ae874a03e7b4aac6b3fd902397f0dc4225e03d9e205b7
MD5 f5ab9aeec6dca9af2a5ea8386da4d074
BLAKE2b-256 35ebe4108231ab637ceae2197da2a590d24d2212b1a74dcdc0923724ee4dcc60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4163bbc6c423791d0e6a287153900c433160ff300983e7132700c6374606c2c
MD5 d7ef55dfc019bd88e389a0f33a20da12
BLAKE2b-256 d915862da818fd572101ac8fb3478a3dd551c6679b079d519aa5360b5f2301e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd061ecfed202b5c7df0edfbb00ca35259b2a47ae8321e3f359a1bbd1d824119
MD5 2f2ccfdc581994c7c30ec79fe8b22046
BLAKE2b-256 577f9a0f32a7202678345b14e4dc0bf84f4d2764da117f2b35cafe6c1d053efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7db921d12a6993e1dcfb98a3af9e277d51ad6d7588ce5ca56119c44d4c529782
MD5 e937502a7763558055a3f615c0e96d2b
BLAKE2b-256 f2a2bfd51087835cd1bf05e02ec5be6e958048952d59d01b0d8ab0ecd43f0a0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6a159d3e5cf970cbce61378ee7c14dd5c7c3775c217a62f3c4b9062a9dfa6a2
MD5 aa4b0aa070ae9cf70263f37dbad9f053
BLAKE2b-256 71014f21e95d53d92cc38605a1b92b57966a3c3092e73f43b04feb3e16c873c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c4d3d1c3a316e15237c825209cd68b08ae76632889982fc09c0ec695ea9d83d
MD5 392f535c399de912438e286a2e70214a
BLAKE2b-256 44244fd62129309effb5cc203156f3b79ea6184b4540b0d50902ff5301ac59ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4313f33b0d8e079a9aaab46cf854319f4aaa1b59e71b061daa98ab3783ead679
MD5 46fcf44bd3114966c9e56743185eee65
BLAKE2b-256 4ef0178eff2f707b567989b21a1c8eb3c6bc1bb03442f59595c1101c34668c49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15042743270f38b82a9fc433d7c92570df293f6fe7aa4270ae11411bd2b89290
MD5 66f93835e28fc505d9629a76f6fa9eb2
BLAKE2b-256 eeb1e420d7e99d8de497627d04b8bee451f841a296207b04fb37bb33b95fd66a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25fc69bb30b697dbd16c9fd62cd19a323abab252874e39da65152f10ba613779
MD5 76cd01a9d5c20f53e47dd09f48f1d9f9
BLAKE2b-256 81d0513a0473ed099ed1d5e3f4bd8f014b2dffefd7386716652da0beff0baa7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 721dcff3e5d57d28314a73694bb260facf0a5ada505d60837ec1cd226a094d0a
MD5 c6a153dc4db94b5c5038acd6cfabbc96
BLAKE2b-256 3f82bea2b7caf3ac83588c55143e401dba59aca9e2749e957d06c216c5f95dae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 099be259e85dd930599583e4a5eef225c68e1d332abe1d9a5663e6a8b7b9943f
MD5 fd8f7d483cdc19e8970873b2c4aa2b39
BLAKE2b-256 ca94174a75acb7050005e2f4e8a3940f44e19c2063926834641862d9b0689ae1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6487329feef2627de0da60e9c57e8eeb8f35eca9b6e3fb36f3ad13596e959f49
MD5 8ca63de6682a248518a5b2ede431c487
BLAKE2b-256 f4d573d619d455e4fe0dbf3fadda6faa164eba74e497fb96be71719ec60ad637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9834f9543721618acfa008e359ef014c62da33d8fdf0f17f5f4c2c83377d7b39
MD5 4943acbf80715a59719ff1e7019ac062
BLAKE2b-256 854b322e4e42987376c6bec8b5e5bdd4962c2fcfae296968baf21c28e22fde6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e453a8819f00685aa7831940d3061b6cc27d713d186cbc3dab00c96575e8781
MD5 781dcec31dd597695a113abc9029856a
BLAKE2b-256 77f3ad72f10345c8509f23f35cd12f123ec43a3d00ceb1b0789f9ec839fb3525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 59d5910c8b4b977a20afd0f4a789b97983b5933c41f3fa21bb6821329128461d
MD5 0d522d2d5bd62f22fca3a260b2a5cac8
BLAKE2b-256 e18a1d705b9c5917396af5f9bd77891047e7bce7fdb680d8ec90336294966b8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9603426c3eb74f93dc55db03f7d7455943da2fc2b332d977e16d1cf38fadf46f
MD5 88ef8287c3346ef8e2858d8400dcfa72
BLAKE2b-256 06602f4354d7d539f87697939d7749c9777a88b864a4c11aba6805afb5aed4da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b31aa3e86ca0c0833a3beb75de40bbb78bcdb0bf30adf8374f92bf40450c2ca
MD5 5d25b60e80d5dda2734d8083bf972287
BLAKE2b-256 76a802aa04ed150397fe0b5541e088134094b1cafa3d61b6d1b3606c8d82c6ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a40fbeba6cb75cd5aa40b7e5bf289b16a30b6be2914a01f47cbf6589bcdd532d
MD5 456b94d812c4aa0e27e7d14520886594
BLAKE2b-256 510da73a4c39ab15c78c4cb77f6a3bbebaf7d5d77953eb39abb27e52e8a744cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0ec798dfbcb51530b896821efc9446d97274baae63f60ba74e06b1c60e4437c
MD5 8f62987ce4667d4bba094e9e21808d78
BLAKE2b-256 c93c77167168a60094d643440dcd60c7cdfa383ace50efa98cb5f46760051714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b678817cf9aa45278efd0b6abef9b537d7e4320a0be231590d4624c6e0e7070
MD5 9a5896039112fafafc5d4a4a310c5e7a
BLAKE2b-256 65aaa4f0455190810ea77d0a5bd4dc7e7945be0212e3c70ac3244422c7b24729

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57802b69f1035882e05576a918f1de6e8eb3a4bfd3bbe1fb938e9b3d14527c18
MD5 15cebf2b1884fc45f82f80c1df437d62
BLAKE2b-256 ea6ce147c50ed9cf109704c04d7f4b371c60a18106131abc1c725273c6d0c91a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 84c375e7eeedf5520158718f381aa7b6af7e8630e5a094277a8a8ea1568b2258
MD5 b01e62b18021ffedb57c21fb773fdb96
BLAKE2b-256 08bf52e5fe3f4d787b5c7cca57de1227c8ce4afc25635d85788223e85ccc454b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1570afab098bcee1c200b695942c30584a1be55beb04b9edb9eac9d2c459e13c
MD5 72195b881685f990a20fe86b8f009ef8
BLAKE2b-256 28468506a77cbd36f72173f2bee7021e18633a16aed8ba7617cfca43f951e1d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d18a8a563e7d14d0856e427b07b425db5e6b7f4759f165b64ed651c742e5ac21
MD5 5a4ae708116b1b9bbebae7423f7d6be1
BLAKE2b-256 5fcc02df99d7746384e7ab42cb21b44334d6aafbfb703b2aedfcc03ea88e9ca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0c660d37e3e46c77f8a560666ab8ad202950ba7714ce32bc16e81f060fecabc
MD5 a60403734151062d1a0d1f42f386d7ab
BLAKE2b-256 d7074f51cc51470917863aa7f2cb312ef9a462454a099c1859aa00c761a0f5e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7459833c357d7e313580161fe73add913400109b2b7582679bc76d010a1682f0
MD5 86edfe58c77de9429ac3f91a728915db
BLAKE2b-256 e77d9f30e52f97d9779cd90bffe5a75563d4b7d9d62fa344aecc375d80144beb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6365a4f969638b97b9a80691777212f44d8ea4feeef47b29371b930bb4e36e3
MD5 b9afd519f8322a291be8b432bb9e82eb
BLAKE2b-256 b6e239824ec07d122acc535bf50326275f684195de58333c268236f875ee58f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c2e2a82a0dcacd072f46de15c7abe1c42d97a42220331cc6baa4dc48ad5d338a
MD5 31e08a90f86f8afc9804f3943785ffe3
BLAKE2b-256 b3e22f7c736c83f0866dad4d4aa8b1bb0b4cd28c0dc1d4c59eef1b2ad6b8a6e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a506b322af5fd77667e17319f1fe92386507440936065af17e16e968024bb918
MD5 e5c98822de5e88bbd21f22c61b28b086
BLAKE2b-256 b7a8f84fef36234ae9e8bda55ece4e21dec729a674704e3100167a9a0aa68c1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b6169c39f6f35843b3fe30900f0a90172e6d4f0c495b3cc1c9cdaf5c6812811
MD5 8a590027faee48a61d6b597d0f685192
BLAKE2b-256 44f1a3ff09a04331353550d669e30d40caccc1d2ae6c0ac4cc0a4d35d85b631e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c06e33a20ad1b8bd2bc21c623ba3d32bf2069065d6a8d34df57fa6164b893090
MD5 3f0849b123edf18b186bd39678fa99dc
BLAKE2b-256 d924b94e4c6d39257c3c4a01178199d04fe78331b26aa2939b5ca13537300021

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 846b799288141781847576db4afadf0a933b9cf60d09ab5fbf2a1e730a374eab
MD5 36fdcacbe0d7ae4fcda3b22335a459f7
BLAKE2b-256 8f26c64486101eef2971302e16c32bf73df4fa14544fb4d083ba16196f5f70f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83943e5fa06343a7072c99fc87003cc07131694b1bebbb9ac94a48d6e79691e6
MD5 b2ed3d79da7cb0b2f9d4913b9e9a5294
BLAKE2b-256 b0b29f82b55bb3da6dfc8d7180d6c728809dcfdff2693a558fdccff74a5918d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a72f7897e7ae9f24ae1dad8d741787a05c2de570eb5b954c15b03f477f4f6bd
MD5 42d8edbb6a07329beb0fe920dc1d4956
BLAKE2b-256 89510bfbeff1e22a145cd9f0e1ad23a6e208e5e37e1e3578c58814049cedbf05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f1bf790f6fcd95d0f1fc86b54476f48395ad9c974b3c9a918fe09e9bebc1d63
MD5 6634e2bc520dffa47b770ab3710a0494
BLAKE2b-256 e8c0fa134d6e2dc33320c41440d95152756d0c8bdb872f7e6c57de0ba1d8066d

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