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 Docs

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.
  • Vuongs Closeness Test: Model selection by comparing vectors of Log-Likelihoods from two distributions.
  • 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 ParetoFit object results:
print(p.ParetoFit)

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.15.tar.gz (714.8 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.15-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (673.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

powerlawrs-0.0.15-pp311-pypy311_pp73-musllinux_1_2_i686.whl (703.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

powerlawrs-0.0.15-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (725.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.15-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (641.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

powerlawrs-0.0.15-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

powerlawrs-0.0.15-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (483.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

powerlawrs-0.0.15-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (592.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.15-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (492.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

powerlawrs-0.0.15-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (454.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.15-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (458.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.15-cp314-cp314t-musllinux_1_2_x86_64.whl (670.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.15-cp314-cp314t-musllinux_1_2_i686.whl (700.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

powerlawrs-0.0.15-cp314-cp314t-musllinux_1_2_armv7l.whl (722.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.15-cp314-cp314t-musllinux_1_2_aarch64.whl (637.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.15-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.15-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (590.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.15-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (453.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.15-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.15-cp314-cp314-win_amd64.whl (286.4 kB view details)

Uploaded CPython 3.14Windows x86-64

powerlawrs-0.0.15-cp314-cp314-win32.whl (262.3 kB view details)

Uploaded CPython 3.14Windows x86

powerlawrs-0.0.15-cp314-cp314-musllinux_1_2_x86_64.whl (670.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

powerlawrs-0.0.15-cp314-cp314-musllinux_1_2_i686.whl (700.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

powerlawrs-0.0.15-cp314-cp314-musllinux_1_2_armv7l.whl (723.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.15-cp314-cp314-musllinux_1_2_aarch64.whl (638.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

powerlawrs-0.0.15-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.15-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

powerlawrs-0.0.15-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (589.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.15-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (489.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

powerlawrs-0.0.15-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (453.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.15-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (455.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.15-cp314-cp314-macosx_11_0_arm64.whl (403.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

powerlawrs-0.0.15-cp313-cp313t-musllinux_1_2_x86_64.whl (670.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.15-cp313-cp313t-musllinux_1_2_i686.whl (700.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

powerlawrs-0.0.15-cp313-cp313t-musllinux_1_2_armv7l.whl (722.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.15-cp313-cp313t-musllinux_1_2_aarch64.whl (636.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.15-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.15-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (591.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.15-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (452.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.15-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.15-cp313-cp313-win_amd64.whl (286.2 kB view details)

Uploaded CPython 3.13Windows x86-64

powerlawrs-0.0.15-cp313-cp313-musllinux_1_2_x86_64.whl (669.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

powerlawrs-0.0.15-cp313-cp313-musllinux_1_2_i686.whl (700.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

powerlawrs-0.0.15-cp313-cp313-musllinux_1_2_armv7l.whl (722.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.15-cp313-cp313-musllinux_1_2_aarch64.whl (637.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

powerlawrs-0.0.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.15-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

powerlawrs-0.0.15-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (591.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.15-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (489.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

powerlawrs-0.0.15-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (453.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.15-cp313-cp313-macosx_11_0_arm64.whl (403.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

powerlawrs-0.0.15-cp312-cp312-win_amd64.whl (286.0 kB view details)

Uploaded CPython 3.12Windows x86-64

powerlawrs-0.0.15-cp312-cp312-musllinux_1_2_x86_64.whl (669.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

powerlawrs-0.0.15-cp312-cp312-musllinux_1_2_i686.whl (700.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

powerlawrs-0.0.15-cp312-cp312-musllinux_1_2_armv7l.whl (722.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.15-cp312-cp312-musllinux_1_2_aarch64.whl (637.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

powerlawrs-0.0.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

powerlawrs-0.0.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (590.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.15-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (489.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

powerlawrs-0.0.15-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (453.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.15-cp312-cp312-macosx_11_0_arm64.whl (403.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

powerlawrs-0.0.15-cp311-cp311-win_amd64.whl (288.6 kB view details)

Uploaded CPython 3.11Windows x86-64

powerlawrs-0.0.15-cp311-cp311-musllinux_1_2_x86_64.whl (673.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

powerlawrs-0.0.15-cp311-cp311-musllinux_1_2_i686.whl (703.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

powerlawrs-0.0.15-cp311-cp311-musllinux_1_2_armv7l.whl (725.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.15-cp311-cp311-musllinux_1_2_aarch64.whl (641.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

powerlawrs-0.0.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (484.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

powerlawrs-0.0.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (593.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.15-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (493.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

powerlawrs-0.0.15-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (454.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (458.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.15-cp311-cp311-macosx_11_0_arm64.whl (406.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

powerlawrs-0.0.15-cp310-cp310-win_amd64.whl (288.6 kB view details)

Uploaded CPython 3.10Windows x86-64

powerlawrs-0.0.15-cp310-cp310-musllinux_1_2_x86_64.whl (673.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

powerlawrs-0.0.15-cp310-cp310-musllinux_1_2_i686.whl (703.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

powerlawrs-0.0.15-cp310-cp310-musllinux_1_2_armv7l.whl (725.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.15-cp310-cp310-musllinux_1_2_aarch64.whl (641.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

powerlawrs-0.0.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (484.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

powerlawrs-0.0.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (593.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.15-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (493.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

powerlawrs-0.0.15-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (455.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (458.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.15-cp39-cp39-win_amd64.whl (290.4 kB view details)

Uploaded CPython 3.9Windows x86-64

powerlawrs-0.0.15-cp39-cp39-musllinux_1_2_x86_64.whl (675.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

powerlawrs-0.0.15-cp39-cp39-musllinux_1_2_i686.whl (705.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

powerlawrs-0.0.15-cp39-cp39-musllinux_1_2_armv7l.whl (727.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.15-cp39-cp39-musllinux_1_2_aarch64.whl (643.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

powerlawrs-0.0.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (468.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (486.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

powerlawrs-0.0.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (594.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.15-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (495.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

powerlawrs-0.0.15-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (456.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (460.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.15-cp38-cp38-musllinux_1_2_x86_64.whl (674.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

powerlawrs-0.0.15-cp38-cp38-musllinux_1_2_i686.whl (705.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

powerlawrs-0.0.15-cp38-cp38-musllinux_1_2_armv7l.whl (726.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.15-cp38-cp38-musllinux_1_2_aarch64.whl (643.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

powerlawrs-0.0.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (468.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.15-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (486.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

powerlawrs-0.0.15-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (593.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.15-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (494.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

powerlawrs-0.0.15-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (456.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (459.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for powerlawrs-0.0.15.tar.gz
Algorithm Hash digest
SHA256 d04048ce7e644900b8871aa49567782ccbd11e81c25e2831982ae23d3c12705d
MD5 45e510366022224802fe1cc02bc3e2f9
BLAKE2b-256 ed8f69d9ccd527c055be36ad07f5c7ef29ad079ff656560a36a3fac1d2df2974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92d137f6aacc750a9d79cd3f590bf57eb5b37999a127836f967819e17b587948
MD5 4141f0346de35f11367fe6d43ff90530
BLAKE2b-256 57ef7e2c3493b32cca3b6fb74e3f4718b0454f2e78b39add294ec904fc9bdaa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d59ec6da05dbfdf27620e121aeefd7b02809ce1131385b46a54e47c7054a0b40
MD5 f2ebfe4bae73726da7d337a73c18e65a
BLAKE2b-256 055e9fcf9fde5a0e0432b92f2542883cccfdfb84fac099537ef1e468a5ae258c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b9cd269860efdd279d9bd12a07ca7a2bfdeea5c9d6e2615cab5b6101ec5ac4b0
MD5 aba285af8abcfad1b93756ca9facd5a4
BLAKE2b-256 25e172fb3d5faf5a6292c66d8b4ae9e2f6ddb1920f41722562186c56cea16242

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ebf2372c62aab2cc7481a00ef75580e4885b6e3f0874f25ce7f1c24997853d70
MD5 33edfb8b5dd945a92662b54c244db007
BLAKE2b-256 6f9c8df2ae5a03b688713ff8908303ddca89b990117bbcf99cac87057113da6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69e228110abb95924ff7a56bb3d3550fe451ec096c0e21fa639a571fba438eef
MD5 b89781cf52dad9aba5642b17f9054f5f
BLAKE2b-256 d0090d7bd8e0333a3cb505b4775d599859db0400f37f46e1c08266db92fb240f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c0e9e1b66ce7c3ec6d4a0fb692567788ab5100a8178e5514b4f80530809eebf
MD5 df8475a4512c316f307c403fa8c84e57
BLAKE2b-256 0b9d6569533831ad5af2b296b6bc19e65507babf365e255a0095498310c13930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db65fa6c4ec2c4056a5464fd6dd25fe30d15745d49c5cbc9b6f82fae741489b1
MD5 bf340b2c0c9344a59033ff031d270937
BLAKE2b-256 3c7e54cbe5c2f6c80457b4b01125a99213979a9a079c84c36e6c2e92603b29e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 59c6ba697cd46a1507bc3697987116fb05a42651d7b2f92e39d595d6ce5d6982
MD5 80fbecdb54e98c72b561719129cff23b
BLAKE2b-256 33e79b7d23598d9132b52bbab111bae563df6524bf9b650a24884926f7e23d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0fac65f553066802b8d01123825ec0a8c50d5dd510b6acf3596fcc549a3e56e
MD5 56a6ef10576c91f22592e0c8cd572e3c
BLAKE2b-256 f1a1fe69d481ea7833e017ed6f828570d4676dfe34a0bf89d0eb65ac6cb3f061

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d2adfdafdbfde3672d9a71d7b64ee06a5e1179d8e1f7b2b337be2d411538995
MD5 ab8462bd1587480bf257d5fbbc2fa0d3
BLAKE2b-256 75f23ebe66c1b0cb06993413b17561631407142ee9018d956268670a96e21474

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f49797ed24c09c0616d1fe02df475d64bd715b382c4c10a22ba93dd4595a4780
MD5 13fb9b463ebe8db848e380a6f669e1bd
BLAKE2b-256 497d2dbadaa64e68a4b01bcbcb5affb703c9f7b8f71900f534368710d42c2b14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a2b3c8a27522cefbb4080cc539bfc1f16e961b38081c457beff7a1c9bf71d58
MD5 4ce98c2536199ad4a0edbf69aa9b0c61
BLAKE2b-256 436829549386e8cc70658c109da012e5bd4903f833840f1fc5c5b791151bf7f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf795d49efd5253d7e159baac77bd41d3bae6a49ce51755f81cb348d2f9a5cd6
MD5 b624d45a3b89991dc5554a641767232e
BLAKE2b-256 5e7b30e4a3ea86b26a9564a78dc22707896e3ba6a40cc42f48934bada4743fc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5492effc0f151a9023d020b8582337293b13b42abdb730c02ba1ed036f021cc
MD5 69a291c72dd92fe154251258215fae35
BLAKE2b-256 70bd47f85a9e9d424d32ee8599aec4f9b8aff947eb3ba2bef6a40027fcd13cfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7fe3e59c833d41b0c18b5d7be31fd0335eecc5ecea27735d9bacfa7c156406d
MD5 258436174239b81bf31c5bf88458ce75
BLAKE2b-256 87fc6512f6ce453d7e07c5a3768d96249332351324a4fd1d2452ff4121b341ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d5b565e97e0c3f689bddcf1cc5e1fb6331673b1a198a4da738d83921abf44a4
MD5 037df52d610db414778000850045fdf7
BLAKE2b-256 9d87d9ca05427a29264c2314e6ece0d4c0087c8293efa1f6a200809ae168a4a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 53107e03dd812d5d98a177380d241423b90326fcc264b1f37048d471fe394fb7
MD5 9e30db508b07d949f734f544a04434ae
BLAKE2b-256 3815af85f4a8295a514d733fb1acc744784e5e4d02e84deb9516159c70ac2e3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80a0d48529073e480e9c292a00b86ee6fb946840a0cb40cede052c1d8074952d
MD5 39fc25c20ef18e58c4db295074eb9f03
BLAKE2b-256 faa3524995f97002fbeabb72af1b586eddc2e7404b2856557f7a28c59e2bca63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5870e378fd3b6ca03958dc87b1c6dc1345813b848d480139e2dedb6563aa385f
MD5 af646ea420469b4cab006d333952ab0e
BLAKE2b-256 fe0b4a3126e5b700d6ad3017336b8ad99283a8d75492dfde9f8ee946b8cf6f78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: powerlawrs-0.0.15-cp314-cp314-win32.whl
  • Upload date:
  • Size: 262.3 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.15-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 27c927bb19565dba74bee9eb6f50d9f830d76ea1f10d8abbdf8254d18a49fa86
MD5 ca816483d049cb138aba9ee110538674
BLAKE2b-256 e3bcc46a6f739943fa43ec48a18dedb2dd1ab5a6f3ab2ad862a678c091343e4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45fb89ef5e7cd936c63a566dc63105a4392d4d6556a6dadeac462f8ca6bee1e1
MD5 d7d38ab8fb0915b255a1271d5eb23902
BLAKE2b-256 45b2584f7bb983c18cf9c942ebebe7035414b4fe108ac1892f3f5ac559202464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 afd3b49fec8c08d8abdc68b5238b0407b7ae6dfab894cf9ac7aa54a769174993
MD5 ccb0a5b7f92324dde85932aefcd1ae09
BLAKE2b-256 83dcb4c0bcc311ee7a616215a6588eb9f9077ec05bea1de6489e958627ccc9e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7456f2657cc80e6031b2f5e6972dced9a803e25c57313f6329e9d71c24cca8d9
MD5 b6cbf1e79b45c63d6fe0b77368fff674
BLAKE2b-256 5d43ee38dd43af4121d2f66dd3a1311c53c8eec3779b5a85de720a7bbe16ddfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dade523ecc2d079a82f5693b338c21e0310129b9d40b1fde72e3ad616d2cf9e3
MD5 6cf479655100c133698097745464e523
BLAKE2b-256 4188be9f7a65e24719edf7dd7ba3830fc3d972b3f175dcf1ab814260bbd062c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8df6fe5f3a48f8aee05a6ec7a7ca58f5436654c990b4edcccf5a23f7617df86
MD5 414d971a3c74c9aac660a86353a97024
BLAKE2b-256 b0b9d4cf1eb070b6846f90cf081b3adb6fc737e3ebb2bb3e0ce88ba57c7ddac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f23a08396f602d908776cb59d0c3e761ce389893bec422c9a79975ab6e98e15
MD5 d25c85d357faabd65818c80fd9d9b1a8
BLAKE2b-256 3d921b8139328e587600c9d8d3d647d2721e19074d0ef362c2c59edcd16d98a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2dd9a84233c2de2dc7e325ac0cb71604dfd934c89437fc165de19587dacdf49e
MD5 60ec10338001d521566336e1e0b9d66a
BLAKE2b-256 9c318cadd9aca7b190afcc31330514bf937e2d91e4de6e5ab13d3f06a3ba6ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bf55c0f12394f632568d5824d231c013779a06344c50a23c8e28ce2f23f4671
MD5 c881a28ae0892fec6a88efdb203e43d3
BLAKE2b-256 107e770e5b7ecb1a5b26fb3be2441a590cb754760b2e19ae5f9e0d994463e427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f7ca2c56252c8cb2a557c4732696c0beed2cbc3ea477ff2bd53fd1440162ac64
MD5 e56ffa742337b97f3c1b5a1e033d5aaa
BLAKE2b-256 ca322a0b3e2fa043133c60e0316df660e57ca477029857cee1fd67342f2088c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea604b16539560731a5d657c4a5bf30ecbd8ed36c7a57fd2d0b7f84529067a00
MD5 00e3eec676b886cbb6a3bf232c1db420
BLAKE2b-256 b3697fbe6360d46b812f2d43fe294b57d6dadef74b5a56df5e27b12688790200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00eb0ed842da4e097aec4e61725c966e7b020470d270ef2c1dba757c79b155b9
MD5 f40cf9d162155eb5a6df7c46a76b5641
BLAKE2b-256 ccaa4d10ceca53cca1bc8ac0ca9a31d3d767d9ff3b882e83acf2086fa506ebf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfffa7d967d6b3c5cea49a50d9e3a99f20f83c8292787d9176de36a7f17458a5
MD5 7091643e6672cc7f3ccd76814a386246
BLAKE2b-256 5b3374a6ef659f1d0870ad4ebe35527bf015c775346ecbd88efaa71980373950

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50d6f42f0f8f58a124f4226d4753ec40e6e6b88901627f85c2207316ff83616a
MD5 5a07c94fda0acb5cf99de1cfac37dc61
BLAKE2b-256 eb987575278cb2c2d0643add10175ce63676ce75972f45e8a9a370b91762a563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c88ab994687cd1669f44ec78751997989eccd6aa012e35334765600f5d3d2c7
MD5 5e68568aabaf7f78bfbbd79d89d9917c
BLAKE2b-256 af568abde4d6acc51d6b9b95e12e1e0cf4fc4e870ee6f643835d94f940fdadaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4f19dd84cafda6c317bcfc7596b9e045c87b1edc27e3429d5aff447da38f074
MD5 3eaeae70035b75704088d5cd2c457692
BLAKE2b-256 6e0b66af611fec94fd53b9b055d695f522e1c0595cb8856116355993fdeaf5f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9cdbfdde0c631ea80d077cd8f65b0920e611b84ce6b087e7ec1c0264dfb8ac56
MD5 f6d389e4c68174b036a913e64921fb30
BLAKE2b-256 a9ee2af6da3be6810ff582640feff3aaa2c317dd2d27f8fa4b224d1e71982b85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c79048b430909cd053951b882e390c94b1645e71793700e89479524135aee2c8
MD5 779bee28c64965b3506e29f7f6305178
BLAKE2b-256 e46caccaa5c1b6903a71ddb01f97a2c3cbbbf249823ef5b5da5f69f162d1929e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eeb6c99341fe114a5f5c3361c38f4bebab2225a4a448b4cb8e89169d4558d651
MD5 a0f5a325a3563351b7ddd8b0cf80ad0b
BLAKE2b-256 9ae20e495bde44c49a78d2e5e6153105bda9a415a7ee7fc2108babac1be330ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b41fa3e676484834524c512180bde8a2c980e3e22a8642bb54425dcd89860e3e
MD5 f36ca1d6911963bf29f2dfda34afb013
BLAKE2b-256 ec534b91a12b5ef96679226b0005e1d494d12b2248e8cf8a0085991a256a0e71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 53d4ed1205dbc99b209c33d37477ba9e2746e348a1152c2e224eeea795f233af
MD5 306f137c73f9c34ed9688d81d792bd6c
BLAKE2b-256 c16b03ccd621455d43aa2c2944df72066e43495638b1cb7dcec9a4bada4fddf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a455ca0ab4c81d0986028b44f0edfcf50c925866b54ad05172bc567ce6e3e2d
MD5 619bbb65c9fd53368dd9e276ee92bbc8
BLAKE2b-256 a86e331b101bc1878aa744a7c50d1a46cd27952ca032371c3a77910b52fdb58d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 101d969ab8ae4ef3fe0ae5189197a35c29d68e42b92b542d1150ec45a594fa19
MD5 42cf73ecdf6e6169f400e4996271b4a3
BLAKE2b-256 9375f1207e8efc8ef467e9a76b834f30887b5b3f8d67204fd5672c6a034dd691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d3d272fbf0468c3bdb73bce2a5e08dfa99018b74ba2265bc99b86ab6c3a4a8a4
MD5 b8937de6d9865813dcea92cf2e76d2cf
BLAKE2b-256 73373f2ea0201a4d39f144bc8134d9e4dcb6c726dcb6270ed8357fff813c07d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57e70201d7256ac57253a853c7e4145986c420929c869c8816b8ba74a1fb4ec1
MD5 2561ff3d8754878c7f8876ea161e7faa
BLAKE2b-256 97d3121fb93d4c753bb1862c44a69a12978f1b78d3f71cc06194b921dbfbd369

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9d26194daa01135b12a4856cd3fe7d1de619479c173579bb7c537960a17f1ba
MD5 ee8e205b0369cafd0010e12801872f16
BLAKE2b-256 7fbd543fe7110432e8662d88431614bb4c0e77af6c9a7bf62fd74692906605b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf50c991bfa37e858272f90d3a746e142f0f9ffcccf0bea0836bca9e08eb0ea9
MD5 5445ed2fce2c427cdada3ff9a4a67460
BLAKE2b-256 64789071cdd050c4023c2ccf3afb7b9ca64365ad55e8340eb4328a8dada5e458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 296e2dea75685c9f094e4d8b5f7b984317617528b317e5d2b560db65a36c6f17
MD5 722fe93109b8c5af90f4a94ff70f2174
BLAKE2b-256 92a5f6a71ec09ed402785bbd307d5783cec89533ac279d4a7839ccc739e08f42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e50c0a6b3cab06e11874d8af97aae5101bd3801c56dfb3ba93ccf3dc3e6683fd
MD5 47ec1eb49123c68adbfa8229a9a95b86
BLAKE2b-256 181756e01353e6c6555767436e49ec4d9bc789fff419e79d195eae925efe77e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 659fde53b8e9a80099c22651e167381134a55d897ed4874ee91b6a20213c6780
MD5 b06cb076fe9bcf17864007521fc6a013
BLAKE2b-256 7b76e4ae8d781165155370e185eee1f6426264dd214da9ef87c3d856072e6cbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ce90f9429cb1aac11d117258f9b999d6aee7d1ab39b40381c9f2cafbb245563
MD5 85d09869d32b7c845140911315d15e97
BLAKE2b-256 5a71fa8f93fe6eb7a853e7f37b6df810b2b8ca8c0f876fb0d97c520acc4d4c49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e1c86eaaa6407bfce35f32f1d1eb8d8be2528285b769037cd74c1a2eb8814e9
MD5 987b35b5f99022ac7116d0f700443cb6
BLAKE2b-256 58da001fa69e5286972c8b7301e9eb7cab3979b122b1be8b962e2b318d111234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a04f1ddd462e21168619c9b2387b18b2307447e5cc2d393fa95b918af95ada4c
MD5 faed77dd3d894245cd10e26229a5b1d2
BLAKE2b-256 6e8b6e41c1894dd224a176c79a930c543c24c15a63c3aeaa25b72fcc54ac622d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 196904193cb5f976db69b7d0e38777e2ae54177d9f3a36552a710a8fd1d68895
MD5 6aed2852eb1acc41febed125d09eff57
BLAKE2b-256 e81ba63c29befc483e6c39bd49debbca14f7ac8c5275d88791c3cdf45a02b2cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a36d09a0c1a7bbf14dd684ec47391193cfa4b9441fb563cc9a04fa942f305ffc
MD5 cbd14b8de142be6c5c336f8d4c95bb59
BLAKE2b-256 617edb356301d6180795f90631e2f6f01352737339ff8fb3a23648a8b7410345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4dbc8a535e02ba189ccae20b0fbe788e68aa50b82a60ed7289224e60138fcc33
MD5 f42a9575adbfeb129bf19ea73b927102
BLAKE2b-256 864ceec5a5c94f90ce1baa06d059508a6f532d1ef3c102e87ca00ee1ad373dbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b85045de9dd4a8a7763c29d33441e6800fafa18bd5ed80e3083ad2a5790d31c
MD5 31b111eed5c0e4ce56ac25d2f93d88a7
BLAKE2b-256 e0ae08f3dbae4b8946d1095042d9f61e4d1f1ee0f8e78afc6cf311e698eab9bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aab31cc02d1496812d9baadb2c2e71471e5d36774eebbb292e5c846a4448db55
MD5 a47872f4dbae5cd19dae02caee83d023
BLAKE2b-256 3ebcdba0de85b9347955faf134493b9e4bb81316c3d152839b0cd26ee506ea82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46d72d504491fac361912b88c2ca10608970dd40601f6d3ff4870cce0a028e42
MD5 16f95a13fcd5b8918a46132f406063ea
BLAKE2b-256 4e4421e5d2af7cf3fd730621238f78e9965e58b8a68b6fa86815a7032793d9fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14ec418d0684bb226195e9215acdbae0f5ea5652387b85f9a136a9567caf3f0b
MD5 2aa5e1e47714c4158b095fd7f3477cc7
BLAKE2b-256 52a5d3bd55f86daac6cb0cea4aeb269fc335c7373991060ed9d9db20dc8b7162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9fda92ed3ea057c568663c6adced776f8667690aaccf33f79bdd96dbb5907856
MD5 6f37f53894407561e5699088a7bc7740
BLAKE2b-256 b6a82034d4e0a3a1acff626ebfb385fda6776db41a8aaa4afd5674ad9a479356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f0d6eed23d660f3b8126c31b5f4033d4356c1a5be0b3fa0ffad4847e18bd3fb
MD5 9dc1dd2f9c7f1337101dce717603233d
BLAKE2b-256 fe343e0a64d1be9171474545c378c9041cf550d0b84c9762e011aea0e5e24c37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a2bdc0c9206dd9a07d50e406cb72679c0f0c99d942689e5f82c998af052c7e7
MD5 029b6282449f5881d8378567112808f2
BLAKE2b-256 3fd7a8f3109b1ee983162c6ca07ac8bece2e4b0818539db75d5051f7bca8170b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c167c70429db75a7f7848f7eb10b7bbcf59411274a01d87b9fe87e308e5e4e40
MD5 4c2c88657aa40c50d044042094fba283
BLAKE2b-256 dbac1ff4645f7a1bd9ad787913d6818fe66ad2656439613c25d08a00f8b2171e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2dbc6c527b951645477568a8fddfaa9ff6aed9914df17925e544cc3b3525be53
MD5 e1d9dd01af8a41165c660c3ba3681432
BLAKE2b-256 06f9808d9d122d61dfb135446c1dc0395002b6ae65074df6c870d2826bf97a8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad7d34b817596ae605f62f1856f3e89455cf7702676b209518888966a485d0d7
MD5 143612ab306b064a1d69d5b282218b0c
BLAKE2b-256 ea59d92860363584a11db29f869dcd2fa3a6c1cd3ff38c156feee767e80c1ad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 28a50b8778ae077ac27b2552d3c326aaadbf16933a1fadaf75ca0961d0615aa0
MD5 ec461f58b267ce5a7f7491637df4dc5a
BLAKE2b-256 408a21bbd279c7522a93045529ec5c26791f7fbb4d98d42421a663c63bdbd630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0c803f6fe1dbe3a4ecc0cc3b0e1f297169d58c55101253a666569b114eca725d
MD5 73149f384f40ea7b324b2609e2c3c1f8
BLAKE2b-256 5cee559267e1993c251335ed09b606e457b101fbda3af00a54dd457f1e5ae839

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a372df7fa4d976eb036f43da1fda174a53cdb0158934d13a48bd702e94e70d42
MD5 d13d05454d4175114108793263a665e7
BLAKE2b-256 82b4007b3370c9f97e35dc5ff7ccea22bf1a13a918ca4dd6de746773e2a89c61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58dd13cb487dbfe51c99ed4827128a5a859e6d82c0955425798ddcac17943e9a
MD5 e9e96aeb7509b09438dc87455c74691b
BLAKE2b-256 a6226f51e263a975b5f3793093c1e00eb92314c7bb4446ee2525043fd315fa1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c8a7ac7073513293cb93edb07b3c13c3dd8422eb0e99a241f3cb4ec0e0b6af50
MD5 ad45f16018ecd70d71aab91a330dcd1c
BLAKE2b-256 da6130dd15727b6acf3c3296792ea3edb523dad15502996d3e6d602462c63855

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63f8ecc48df29547b62e6be7f373a1b32611d65bb5cde52dd9b449859e52cdac
MD5 9406dd8eab0552d74fb2eccbc2895bc5
BLAKE2b-256 9daea7ccf36fdb5bf370c20013b8d6cf179c6dc4c7b14e76f0e5c22887baa83f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8022dc7c332a044bc86bf65a8eabfcf9c2355835e6303d0149c81a17e42a06b4
MD5 27d8a11bfd2b7d07112dacad6610f67d
BLAKE2b-256 947edc6bebcaf616f4b1c8eee28e19065e4eaddb07c8413cca6f52db674bc54f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 75ff2f9cbb5b110e1c698ddf9f2ba470115e8c4941c957a22bc5e43f15b7a41d
MD5 be9b50ae2097634c7f8438dea85bc5c6
BLAKE2b-256 ef850d1358a194c6c4b991911b672a3ea23a284f534e80825fd4ddac3cd2d3bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9920b9be16521a68bb77c78fcce631b647f11425131d4288ff25cf7f6e266832
MD5 0232f36ef9cbb07c44765d56fc903ab9
BLAKE2b-256 370a35ee933a434bae9f3be7a1c29535ec219d21e3c906b79b259c4c0c991725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60bf5f701d0f4cbebb1357dd9bbd785e394a8b106fb55a8ab1f0dfd99a57f1a0
MD5 f2dc091c0c6bd5a485e143981bb00875
BLAKE2b-256 2b7f24fe08122106a7ed5983bbf10bfee74e0a31156f0bdd47b87da2babf8b1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 41db0a3b77157ec30f0991dbab5d1da5234b133b9ab5359f711cfe3b1cdd4050
MD5 ea2fc7ea490beb7e334e4809c64c3508
BLAKE2b-256 2e17b846d0bc324d789404f3a71c5fbb88505c8460b7ccb56c210cca77cafe50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8405772e23f8a6a720600377d3ce04bc7268008731004d4db9fe004ddd9dc99
MD5 cad8de5d9a8b0e4b9a4fa39033a0dbbf
BLAKE2b-256 36011b6eef13a9f920778b165d5b8de742579fd53d4f3586c1131879b09d45ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a4caf514692f3f74d4751dfa9810c588e2d3d98797aec050855cdefd4044178
MD5 6e1636539df7f5e5e1079665cd12378f
BLAKE2b-256 2b111d1cbad2d139807cc351da40bc395f4d6024ab2dbfec412346b6841857aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a9a2a12bc6294e62bcbf157f43007e0d9b8232a941e79ccf6deaa572364f1734
MD5 28eb8e0d3e2e02ecf268a2329a4b7c68
BLAKE2b-256 7d42b414c0731e5d556affd74153bcd7d46332945754eadf2db62b98dba802c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04d23280fbc7d0622b8a67203e8958d68c446d4f49082f47e893dce77b7fc57e
MD5 c1dbdac9145a509847f8e886534f3d60
BLAKE2b-256 9de3708fe9365f0f16ebc0da948d3c7b6c57fc5c18fae87f723a6d3c86a06a14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96d74153ac83375c39829fb108386cda5210be5c6aa892c2a90e3b71df77d2aa
MD5 5abc3ba919cca85eaef1de755dbdfe84
BLAKE2b-256 3808f2582891c7d1a6085953d67cb155a7b68c54af80ac6accbc2643f4174119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15a38477768f94a04a7885b75cc966d0f1dcfb6c2fdc5ab9f825065bd802da2a
MD5 782607abd59ff29b79b7c80713358e97
BLAKE2b-256 3823cfbfcda52a24826598cbaccfe48857a7adb053213c905bbcd1b6eef010a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbb1895e1e6fe50f5f218f6b08f047e53f86d559d407dc067da109829b4e2061
MD5 33e6d01467e502f4a032e2aae48eecd2
BLAKE2b-256 c9b3a96a1b1a40317091c21b1ae160feb1c4c54b7554cd758c9827503e5d1b54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70d53dfdfded8373e75265808f265eb6a42c173b9669aeef5e2db43f71c90940
MD5 ba3b3e67be3b9e9e28b1a721777e5df5
BLAKE2b-256 07f88bb5fba48d8bee6e907768e9be4f0bddc362512bbdc44e6ecd1aa0656dad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 682f873f31ae82df24b3b4862b426fd63afc918c8cfbbbfc18f411df6133cc29
MD5 0c46cb58be45eae3bf94bd7162b38e3e
BLAKE2b-256 f6db049f3e66d136de611af53cb16a37c569c3120154f84b8a7c36dc1802f612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6abd1c89d1090b88efce1ad5b462e45bc062f5f4243beae3111a4fca930d019a
MD5 e0592f6bbb5d957057605a7884a4aed0
BLAKE2b-256 c7942295d389eaa8fc40b89efdfd72b627022276273b3fbccec198985baa0cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 851fbd240ed2ee173eb7abd01537371ed7d5bb1aa820edb2fd4f64eb324e59ac
MD5 93261c2e5b8d1bf8645f1907150c49a0
BLAKE2b-256 de84ccee19ed64b8e6571ea812a011f652e2530a52a40a21b5a8448b61aa34ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c6c3bc098812e9b175c5c2582af93ce989c0d1abfcf81f52f3f9e4ceff2149a
MD5 887832249991544f2a09e7c333d51d01
BLAKE2b-256 734cf13dc518d1631125761950314b3c2b3f1e8e644e2ed3fb6abbe3dc06e2c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d67d04b5c20ae146ef7ea81124af09f47ef515452c731349a8c94684100209f5
MD5 6a915d83e1f8cfe6eefa5b6aad31638f
BLAKE2b-256 3434305f3f8a533376e783ec71a327f651cca90db15dda5c4714889dc134f122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e8c23e41ecf307659ff5098cb8adef11fe558287fc0f6081547d13c7a9aa0d3
MD5 1076e63a997dab87d8a2953b5984f59b
BLAKE2b-256 d14459d45566b4dd3bf643df4503ac57075b96a88e0cce5686a384e2e745b9bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d01fd62e0939a8e9f84a77a67f8661dde1c9abd96233bd37872de0bfe2aef37
MD5 9a7a725739f7328324d01ce9e5441274
BLAKE2b-256 3aa2be8c196b813978e4825c637d4c007b23f4cf814b1b6b643882e7905aea52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a4d0e45b6f7740f32ebb09ead09716648b198b8f1cdd746ce9f7ffda28c4bd3
MD5 7d4dd9fbedef0596483a39ff7dadb2ed
BLAKE2b-256 e478740ea778f1edac5b7fb895ef70b34fb97bfe96973131c7c8af77a0c580fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8cbbe4f379f5d3799c2520791a9fbc1759efa481de32597e5aacc3710d5a4289
MD5 6786a765151514576d1f9c80ac5415dd
BLAKE2b-256 74803296e830e7279672ec6e747ec186cd7c6a20c98112b7be3a8f4e2b28ac0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9aab4111790540d8c44c92bcf95fe78fbdca1057672d2e8cb7a9f833df24ed71
MD5 b9299076085589fdd3dd273fca42f9c3
BLAKE2b-256 de83abe26e0ce4d6af229a84295e1adf55d57a3886576bff8cf01228e4d5629a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d048e6a665b85bc0facf6bf5e05bcdac134186cb83774dbc95cd22f28d64294d
MD5 094a244ec4210cfe4ff4a257528f326f
BLAKE2b-256 131cf637cae1c5c1fc6ead631a2df8bf6509e540933962ffc750ad2f8548a39c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5c6f9392d7e3b1d879f1b2e48721db72bc910712e85b5c901a9605ceed29daa
MD5 6aee3ee8e64682ee6c27f400b107d50c
BLAKE2b-256 757445ccb6c63300b73bff6adde742663db219da0dec877191c53251c2a936cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50d4974a03bd44b77eb347c81af50403cc5d68e7699ab8531dc760a2b693cd13
MD5 428c618bb43911684164e5d93b462b6f
BLAKE2b-256 4d7f3ace850de480db1ae31d25f4ad1241f0422935d886805f618bbbefad8b00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9329a17ab53949899f171c84c09ad122df7d08557f5958ff2b6e0c26184227e3
MD5 1d59ea8a11c7213de3c32738576c6d69
BLAKE2b-256 43cfada4fd779b1cc5f573e3d0d028a499f119999d6bbc47e8efc4943d3a6208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56079f6825eccb3e9240d741eb19bfe063f354d750a9c8bc1ce0965cceeef2c0
MD5 62d3d8f5554bbac69be1dcf21ddd73b4
BLAKE2b-256 ccc0b4e0c26f80ac839e9e34759ed4f2d74c96f6687aadebf65e887943303f3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7edd48627f5ad6d16e912a49df0d6c460be62dbd1f58deccf308196ca3ff396b
MD5 3aee77e7d7260fc0aac5d85dc17d9f03
BLAKE2b-256 72bf512d6e9c4029187f5c9cea129cd7e5a465ee9c181e462f24115d713ef246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d303499996e80759bd8727e4097c103b30d2029cd93d73d3269789fd1de6d22
MD5 87e625e19de4b2ab592aed9139545400
BLAKE2b-256 21055047dd2dab9e9184f41a5095673d7401f3638d190bec50ea4a392d9c7c43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cf75cd0032f1f93debcfa7df5141045e62232f276fa09c59e8e4aa73d1795b9
MD5 397125b258b11893d000b93f5f03289f
BLAKE2b-256 f3cf3d0933bdeaf2b5fabc11091d3a1364233525930d61adfb5c30f013577e5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 302e564c1a2a2c42a731b35d313a3286a80b3a0368449cdf18544e8b48b40c39
MD5 afd4434f20d20910cadf08beeea4948d
BLAKE2b-256 f67b295e7c2b7a52d53800cf616a4b36e6b54a8254ffb1fa8cc3753ed77f2ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f179038d14fb21b39f876f1081204ff6e723fd13ab9ff2647c72f8bed37fc80a
MD5 bc12882d1901e1ae112307cbf296f0cc
BLAKE2b-256 6415ca6a06f3a9f8f6c9c5b5e4e937273d35c827f13f499be1e6c05ef395fc98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07e38f3a85f4723030f56ec28ec74234f0e2d8cedd7ee2c3c2d4d0f13b6d7ebc
MD5 4655575bc3b0969cc47bdbf2542e1c61
BLAKE2b-256 b61eeb00bdcf249d3930014965c6a14cba586df2bab1a5478073901fcdd81d15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e04f47bce278f13602e7654e8a27f69e8532307dc248508f6996fd8a89f75c5e
MD5 9d38e785074673711b78045039e7cdca
BLAKE2b-256 f4803602135f1f66d7d5abc0dc7f4b4df4f4cb17b9b730cce1e1012db2fa8128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be26f3f35899b213a2f911303cfccddd83089230adf7448b371d9ccdbc8aaae4
MD5 376da9fa04d9218b0971534253a3c5b0
BLAKE2b-256 be2b07813df7602a45a7242f955f89b788a4d39c1f2ccb35ff094b0b0ccceecf

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