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 or Polars Series
# 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
fit_results = powerlawrs.fit(data)

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

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 = powerlawrs.Powerlaw(data)
p.fit()
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.

Working with Other Distributions

powerlawrs also provides tools for other common distributions.

import powerlawrs

# Analyze an 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.11.tar.gz (663.0 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.11-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (617.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

powerlawrs-0.0.11-pp311-pypy311_pp73-musllinux_1_2_i686.whl (649.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

powerlawrs-0.0.11-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (705.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.11-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (621.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

powerlawrs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

powerlawrs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (467.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

powerlawrs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (472.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

powerlawrs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (438.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.11-cp314-cp314t-musllinux_1_2_x86_64.whl (615.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.11-cp314-cp314t-musllinux_1_2_i686.whl (644.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

powerlawrs-0.0.11-cp314-cp314t-musllinux_1_2_armv7l.whl (702.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.11-cp314-cp314t-musllinux_1_2_aarch64.whl (618.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (465.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (568.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.11-cp314-cp314-win_amd64.whl (265.8 kB view details)

Uploaded CPython 3.14Windows x86-64

powerlawrs-0.0.11-cp314-cp314-win32.whl (245.6 kB view details)

Uploaded CPython 3.14Windows x86

powerlawrs-0.0.11-cp314-cp314-musllinux_1_2_x86_64.whl (615.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

powerlawrs-0.0.11-cp314-cp314-musllinux_1_2_i686.whl (645.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

powerlawrs-0.0.11-cp314-cp314-musllinux_1_2_armv7l.whl (704.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.11-cp314-cp314-musllinux_1_2_aarch64.whl (619.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

powerlawrs-0.0.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (444.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.11-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (466.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

powerlawrs-0.0.11-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (568.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.11-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (471.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

powerlawrs-0.0.11-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (436.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (437.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.11-cp314-cp314-macosx_11_0_arm64.whl (386.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

powerlawrs-0.0.11-cp313-cp313t-musllinux_1_2_x86_64.whl (614.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.11-cp313-cp313t-musllinux_1_2_i686.whl (644.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

powerlawrs-0.0.11-cp313-cp313t-musllinux_1_2_armv7l.whl (702.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.11-cp313-cp313t-musllinux_1_2_aarch64.whl (618.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.11-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (464.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.11-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (568.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.11-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.11-cp313-cp313-win_amd64.whl (265.7 kB view details)

Uploaded CPython 3.13Windows x86-64

powerlawrs-0.0.11-cp313-cp313-musllinux_1_2_x86_64.whl (615.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

powerlawrs-0.0.11-cp313-cp313-musllinux_1_2_i686.whl (644.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

powerlawrs-0.0.11-cp313-cp313-musllinux_1_2_armv7l.whl (703.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.11-cp313-cp313-musllinux_1_2_aarch64.whl (618.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

powerlawrs-0.0.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (445.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (466.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

powerlawrs-0.0.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (568.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.11-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (470.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

powerlawrs-0.0.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.11-cp313-cp313-macosx_11_0_arm64.whl (387.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

powerlawrs-0.0.11-cp313-cp313-macosx_10_12_x86_64.whl (397.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

powerlawrs-0.0.11-cp312-cp312-win_amd64.whl (265.6 kB view details)

Uploaded CPython 3.12Windows x86-64

powerlawrs-0.0.11-cp312-cp312-musllinux_1_2_x86_64.whl (615.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

powerlawrs-0.0.11-cp312-cp312-musllinux_1_2_i686.whl (644.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

powerlawrs-0.0.11-cp312-cp312-musllinux_1_2_armv7l.whl (703.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.11-cp312-cp312-musllinux_1_2_aarch64.whl (619.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

powerlawrs-0.0.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (445.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (465.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

powerlawrs-0.0.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (567.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (470.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

powerlawrs-0.0.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (436.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (437.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.11-cp312-cp312-macosx_11_0_arm64.whl (386.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

powerlawrs-0.0.11-cp312-cp312-macosx_10_12_x86_64.whl (396.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

powerlawrs-0.0.11-cp311-cp311-win_amd64.whl (267.2 kB view details)

Uploaded CPython 3.11Windows x86-64

powerlawrs-0.0.11-cp311-cp311-musllinux_1_2_x86_64.whl (617.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

powerlawrs-0.0.11-cp311-cp311-musllinux_1_2_i686.whl (648.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

powerlawrs-0.0.11-cp311-cp311-musllinux_1_2_armv7l.whl (705.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.11-cp311-cp311-musllinux_1_2_aarch64.whl (620.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

powerlawrs-0.0.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (467.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

powerlawrs-0.0.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (567.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (472.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

powerlawrs-0.0.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (438.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.11-cp311-cp311-macosx_11_0_arm64.whl (388.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

powerlawrs-0.0.11-cp311-cp311-macosx_10_12_x86_64.whl (398.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

powerlawrs-0.0.11-cp310-cp310-win_amd64.whl (267.2 kB view details)

Uploaded CPython 3.10Windows x86-64

powerlawrs-0.0.11-cp310-cp310-musllinux_1_2_x86_64.whl (617.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

powerlawrs-0.0.11-cp310-cp310-musllinux_1_2_i686.whl (648.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

powerlawrs-0.0.11-cp310-cp310-musllinux_1_2_armv7l.whl (705.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.11-cp310-cp310-musllinux_1_2_aarch64.whl (620.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

powerlawrs-0.0.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (467.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

powerlawrs-0.0.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (570.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (473.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

powerlawrs-0.0.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (438.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.11-cp39-cp39-win_amd64.whl (268.9 kB view details)

Uploaded CPython 3.9Windows x86-64

powerlawrs-0.0.11-cp39-cp39-musllinux_1_2_x86_64.whl (619.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

powerlawrs-0.0.11-cp39-cp39-musllinux_1_2_i686.whl (651.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

powerlawrs-0.0.11-cp39-cp39-musllinux_1_2_armv7l.whl (708.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.11-cp39-cp39-musllinux_1_2_aarch64.whl (623.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

powerlawrs-0.0.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (469.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

powerlawrs-0.0.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (575.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.11-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (476.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

powerlawrs-0.0.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (440.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (441.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.11-cp38-cp38-musllinux_1_2_x86_64.whl (619.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

powerlawrs-0.0.11-cp38-cp38-musllinux_1_2_i686.whl (651.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

powerlawrs-0.0.11-cp38-cp38-musllinux_1_2_armv7l.whl (707.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.11-cp38-cp38-musllinux_1_2_aarch64.whl (623.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

powerlawrs-0.0.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (469.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

powerlawrs-0.0.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (574.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.11-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (475.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

powerlawrs-0.0.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (440.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (441.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for powerlawrs-0.0.11.tar.gz
Algorithm Hash digest
SHA256 6e69c76f745427050ab074128a6ddbca4e778a8566ec773557121a8e9cb1aa10
MD5 cd2a8e94b8f53332baf5214f212e06c9
BLAKE2b-256 9746c452fd9722f364d5743b0bc9c097d7f46245ed14fe69f62fe14566cd51f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28e794b928f86604732ff321557f6edbecd004d22fb55efbefe95a9a0351e854
MD5 0612d10d9cebba49175aa53ce506ab1d
BLAKE2b-256 1ead905fe7ef6a591940f145018c07dd89978c27f25b57e91724944100125327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e9c967528f58adb25df8d4b8f73fc113d8ccd2ccffc436311349903cd3f8cf4
MD5 62a6c78d9a288d2b41dc8ce93d148b6f
BLAKE2b-256 cab1dc0e50149a838c6a5a38b15c8642dcf87b504a1d9e3d72803bb316f9fdf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 538c7dc4edb8c7c726034f50b757aaac3a4df2ee80bb2c8a81c6b22fd6959077
MD5 e76656a53424520d3173646b768ee793
BLAKE2b-256 dde3e6faf815a6e7562d34e157852c512fa2f642c2432834ad0438fdee9b3729

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f78d6c73bb2590ed9475f7652938a6ee3f83410567df92d9fbd91bca00c9fd0
MD5 4258d2c979263328474e9be90d6ded45
BLAKE2b-256 25469283d35cb4c34194ee8d2ffd00acbb19e741e42f8ce89c8c837195996a71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c931361f7b058df9b79a89c0cf10f3f3201a44b3ed306fc9e84074aaaa466fa8
MD5 ee65bf5944e12c94e25db1649fea20fc
BLAKE2b-256 d508b559afb8b500e8d94cdfdc50217179670abf286dac2d0345a2bc65ce88e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09d4dcd13978a9c3d5b177977e164d95c4aee099a5309798b5b639b538e7fd98
MD5 186179d20aae95b1384d67be8e1f8aac
BLAKE2b-256 be77358bd9fb118fee8b5915dac0d8a123f40e1a7de55feaac0668baaf718fc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4fdde4546e13821e3b8c6822a263937205ffd1da4053d872018ba63effcb37dd
MD5 e3322d66cefd585a675019bad8506343
BLAKE2b-256 e81c5ff6cc01e0b4a6bb0d49268a75c403eeb4f8520334ffaa252116201a2c62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b39a71cfd329bd108b8b23aeba8965922847e4dd781d4a2f46977f0f9e34249
MD5 aaf438307a2c8c98ca44e80cf49a2eee
BLAKE2b-256 59999bd6f20d0d49283713b5ff8d9bf4fe9222845bb957ce178a639643160a23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e10fccedff6c892268b9d0522b588b3fdf8e1f9dc3f26e6672421cec710fcbe
MD5 5d0cea513d933a0909f70e21864fa117
BLAKE2b-256 777f3bc088fbfd21517af135e13cbf459dd0e224387bbc024dedd9a836a8210f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78b7c80ab69448d17e835fdbb50a3846aa56908a48befef3333906a6e5f8debf
MD5 5e047f55e49709440904a6d13defa927
BLAKE2b-256 e613f8e2c17c4b61dede3624019fb2a6101bf59b0cb352ebb70b2febea3a285f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edc6d41cda406c22e11ff66f6d2d30bdd62dee687c3b307dba3b96e421989b6b
MD5 a4a28749d6f6e111deb417d7b7779827
BLAKE2b-256 03dfef7c273103b0fd9e7c0033e5a885f5ac92de1abaf098213315a7c79d31ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76202ffe418ba39c04ada6e9908538f8230eacf2ed42abb98f0935f1dd847415
MD5 76bb8ed67a7364988709e564690f4b6e
BLAKE2b-256 4aecdd4c9f4ba504a47d2884df0c62cbf59dea8fa979169070f229924ab0151c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e60da363afc38f2b79f060be03d64a9a1125d35856f20bff1d0b16a373db77ff
MD5 e9a0cc72af7133ce0a01517f8e1a6f09
BLAKE2b-256 79ef4493f2104dd6c919742d53388c72a697b05e5c1def0868f11f6cce4baf8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59f56905605ee309eb89acb4abf916a5cc311c2a37ba7a755e0cb0200f1a6257
MD5 6aa6aaca192ad32e4750cc44b3921c9b
BLAKE2b-256 92b9079cea30b69b47cb8b199a15fdbb82859a8a0790a8472d9b445573afb468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8530d3ce36dbfc7fdc0947d47bc8257a9e4147f6ff0bd9b163ebcbe62764a1de
MD5 71feeb8761250203339e7c8dc32e61cc
BLAKE2b-256 440d4d0065e167cf330f0d014004d2b34deec36bb7e1002e95d892d00c65f757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f2aabac03571db9e75bfc6d18da999597ca55961028f460652271d42e70dd8c
MD5 967ccaaeca066439a4c52a4545f7ca51
BLAKE2b-256 52203688d9228ea57cac6a0733e5f2e2b286256a6d27371a6f01fad055f8a362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aea8aac3cfbabb9b12238812fc63dd46d367d849fe9ce7f92e679ef872eeb93b
MD5 6a5a761e595c37c82c2b7cb328252015
BLAKE2b-256 fbdc21279e64e411e7607e8f4eb75b5c93bb97f53ee1c05c4fd0356696d32f4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfa52fc9dd4a41809bfa563c32dd9889192f79ebba81e8fb3b45bb4f0de443c6
MD5 76e4b2c2ebb67c30a980f372b29dc5a5
BLAKE2b-256 019eaa415a7053428bc23f99a2f1991c383db9d38e1d75b59b5a6c7cfb6c4b3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0b67dc6342eec8a73b3c1aa55edb3a73bd4fd75c9335c37cb04cc4dedc596ad6
MD5 713b94036deb10a42c67e1095b82a5d9
BLAKE2b-256 8fe0baf48ec9a92cb3e0b1e5f00542ed7f27e994b2530a6003722f9ee080f47d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: powerlawrs-0.0.11-cp314-cp314-win32.whl
  • Upload date:
  • Size: 245.6 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.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a860773a626010a4a65b23e8e373250953cf362292374de3583b3665fc0f4c85
MD5 85ac2f8b404776ee95f84ffe59ba6ba2
BLAKE2b-256 112d313b36942279f5a2d359307fbc962e45464fae08dea92e492d939cf93ea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d17686066322e1273aa2565466fc393295f14a48b556375dafda22a58e32ef68
MD5 7c311d7984690af1b7b6dea18839997b
BLAKE2b-256 0cd572d613c66ed709179708d3483b9e7332f48902e1df7720bfb086b91cac01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fded00cc01349554aa196a24781f704382a97791ce5708f935cb8cebb3f997a8
MD5 5928c47fbc97e6b19895357da2e9ccd1
BLAKE2b-256 ccd1432e93574fb59020b65a5b1aebdbea8a1eba16b8e4e3bf9395af941147ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96a71840355f4e32824687d25d8749db5f61f978c8d2fb9957a00d4dfeec74a2
MD5 74a1e81221cd5e2eeb502cea9a68d4ae
BLAKE2b-256 3601b81bb66b1f1205a948aece6b250db6d2d83ba47c6ef54a886d3d720d3725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f3655f0ced188821fd73d1b436b056da7d7ebf6c8602872156353bf4386e9e1
MD5 e725ff219485a01ee71a46988451db42
BLAKE2b-256 87a82f7a39ca942384cbd352c263adfc9094eeec5d18b216fdb277640b4a7135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a54310e3a80281ea6092137a471bb594536e291689ade6652ea2095dd1f97520
MD5 a9451023daa8e6bb16a105f93be74b44
BLAKE2b-256 30cf2f9d2024ba68982ef57a52323e92052964195602efe6026fed917929b144

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab6686eb80ae3158e41006a9203e6e7313733356bbb172148a62867e1c238346
MD5 5499ae478815cbda85f4d4a1fee91d6a
BLAKE2b-256 2bc30ab53bbded554673638057d6f73e75cb7f30a415fc0e37ad8027141b59c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec7b5e8210a2429fa6b4e8f8588606018725c1aca22b4d7816cc77f10505ea34
MD5 848bb7365df74f03c81647054a179784
BLAKE2b-256 7b414ad7fbece4e8a121df3a425d351e4d438e09869f4b48bc5c0316966bf38a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f43214bc25169ea0965a8872f950857e50c33254fff66ceec862e1bf38e547b6
MD5 712e74b7912f33a561694690563a51c7
BLAKE2b-256 83e148583de7f38d43ee3fa6e1bee38c6ea6ca67d1fc4995f3c2951d68e05920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a4cbcf12f6cecd72df33fb5c350dbf7c5434ea2e8e27755063a6263476befbfe
MD5 e7a5f111859e4c8060bf95ef1d20a998
BLAKE2b-256 3e9e618461935195b77aea1f59fe70d0ae1dd50566601a733fcd9e40ea799421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47ce84687666b09a3edad55e551617143be060d4dd9ba99ce3f11300c2b9740c
MD5 3eecead672bf865f650b684bcb82060e
BLAKE2b-256 4f885cafb46e230ce359b5e246c01494177024c0e96ac957d6b1c603b85c257e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b72706dea4ff3ff0853d2a2fcdc834fe0d75ac87a9779b22373e700befd1a922
MD5 5615984d5190f9c3c6ef636acd3dfb39
BLAKE2b-256 b5d8b7b7e00aeb0e0f71a10a2a00d48b02254a5edbf099cbe460d8ea0786fb0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3892a67d865593fee748c37e238a21de857ac84dcff8153b6a7e04aec1d19e77
MD5 326aa5fce636ef31db32596e71771baf
BLAKE2b-256 9be4dc9cda423f0bfe358b4840319c35034fe2d91ea5dc16332994e6110e9611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 147b2c41d5dd74535eadc6bbb6741d0c4c2e6cd4eae1b5bcbe0f0975c7b9c2f0
MD5 b5634feff51b34c8b8f7f0d702489974
BLAKE2b-256 fc34cc22d04218ea921cadb6211c26416b96387789c13ba6b885681b26ca5713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07165b1d12fcdacf998161a8a922784ce9496df5df8435d71aced97ef8de7d45
MD5 abad60a9433fbd5024ee85502fee23aa
BLAKE2b-256 e0e9992c58ac3e66d5bacc3b064f92d86c37937ad8076420a668f6f339c63d19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbadbb467ba340b022fcadccca854dff2e38c093a677a7cc71912a1f53a487ec
MD5 77b39a1d64d6cf5f4248da06eb199d0e
BLAKE2b-256 35e59bf0006e5ee152379e5f411e18e96a0e3198549e94947203be7498936b84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5a7e93d94dd864d24a324ef065e1c240ee567233a0ac274fd68a820b9ce5148
MD5 bf7d357be61b4f2ad4e5bb792f7cf256
BLAKE2b-256 3ed0d5b6dc24762160371d412f6d49fece3a458716d4cd0d1a7bebcea717eec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae4d2767df990b7ebf603c2628cc7858b2aeb855ec73683435e48d89cf50d0a0
MD5 36ab4d9e54049f1504d180339dad7db9
BLAKE2b-256 8667d778e590286feada932ae8c8a0673572e841bf6392183117f995cd594e54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 407ead7bc35bdc920f63dd0b8f78fc2632b3ce0ba86331eac107313f96ae6f0e
MD5 cfc60770b31469a591484774a9a17b07
BLAKE2b-256 6981c5248107efa2162904792cee062461f901915538adfc4260a80b49f665fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73c4b551463e85d3df370e29087c2e335e767d654eb2eca2889639700e4a9a1f
MD5 cc896e5633d3e17076772eb7d8e56867
BLAKE2b-256 f7a669d8fb2e7a6cc9d095774e9c0ca057c8f46c2d44d53c20d28d600bd4954d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9376a84a74fac6016ea4aef22acdf81cca02dfd5fc6feb3b57e88a35b0c4c0cd
MD5 aeddb3e4cb23a92324506ba3cada8ed8
BLAKE2b-256 82414a7e6c0f2cad5ec3adf6c3c82fc7d54a3f93f2c4e008e2264d7a2da13f09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 189b5a8e787746fa63174c8b91707d96be525f87ac13811a1ce0b126e7778d31
MD5 b35fc90e0b8f89e7cfb7d54642e3cb0f
BLAKE2b-256 3eb306ec4836c43f12db30a82748a604d9bb3379a71737b362dcbca27281d4a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a2f42fd24f908e54d7bfd9524528ff2ec2ccd5d12a05838d8d0c2d7576e80c06
MD5 bb62c64d502537c933a3456a916705b0
BLAKE2b-256 a62293e8bb3475199b6c9fe50f12991951e4a145e709a8ced84874c2760e91dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e153eb58745bdd29f9a9a50a418a7ab096137dae7c940940202185fbfe96e78
MD5 438375bdd394e6a4a8d0e1c69fe9c161
BLAKE2b-256 8c7cabf79716d65ba79ad2d2a5011b2fedb1a4de54a6d297f965ec0bdbd9bed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65b61a9c0c677f6fbec73fd301e459c1b0707037661e7b69ba30349e4781007e
MD5 e1be5ca3f08fbbe63873012d97ae0d64
BLAKE2b-256 8262d39aee8e0e534cdf03db188f35858921eba071b359dd5f1302388d0ff207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d441b97a5aeb0d34062f3f5d199841aafdc70c1e1ba26a35adac2edfd2b6213c
MD5 5df8d7b7557e976332b2c9e782bb5b5e
BLAKE2b-256 a4e8c9676a84f1739ff2205a76a1aab0726a9ca8cc17725bbac089a8337a6bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 541b061d4677a3f9bf092a777077068300b231118ba567eaf8de96c8e75c0314
MD5 93d5ed565f5cbc90a395536c67fba583
BLAKE2b-256 824378377d5672a0a8232934ffc7bc7296987b807948d3b587276ef4b51d024c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1d80f18486a545a8250f5e01822707974b6e5e8aa7c8eeeb91dc9e52fba71e4b
MD5 831aa58250f64211e3617400e21a9615
BLAKE2b-256 8809ba4a72ac67d18e71ad3619d66015de4010feb2f6896086019f30656ad27f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 03f8dd3b8bcaf9645f17dd6f950f22c3406b94ce3fa9497a0cb474aefcaca03f
MD5 9d527f2744e2177d8f2f7c4018ce2f15
BLAKE2b-256 d5916c6cdf17c6ec97f677a1510f1220346f2be5469868ff27448b92a37b6ecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7c69f90da4cc80be7f0a02a4760cccb540d706b89a8557fedfa168f7935c915
MD5 7e9077425949cc3807cec775a2387f62
BLAKE2b-256 1b3527c32311bd74e036b565e012ef9bcfd92c7813acd3af45e4847becdc7911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 129be7070cd25e88ceefb84f764720fa0fe387a52e18be914629045962f947e7
MD5 bdbb1cad2af757350ee1bf37a0257678
BLAKE2b-256 97650ea244604a740f88b53c06075b1a366b33241d929a821d48b7f63fcaa55f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a42734cbbaf71b6e7fab4ee2c945792e5090ca1bb7dcc22292ec23fa43a8bd0
MD5 b02180d6a9ad2618d37c05a7e80609b5
BLAKE2b-256 a4dae43929e388b11d9cf8521731c4a81630bcf41bdc90e3fa27c7e97c0323e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f5d87ead1d715a3936441d71912ca53feb9ad5d45e3c8da48ca4ae69f59da662
MD5 d892151c3569d5f239b32fcdc1f63491
BLAKE2b-256 778a15b19e88011fa431a729a67426a28993ed10247be1d70391eaa3232ad3e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bd8e85f42dc9c102e97eaae6de79f6435b6e0d9761e8948ceaafb90b9e180edf
MD5 8fa38e9439d66ef17c62968dd58c7c46
BLAKE2b-256 47f067ad90971087970ad514467a67501d6b32c5e34041d7e661c3c02aef10be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edd58a5b07a39527570c9df0ddb07783f5506734bb113c32e32c513b32a66426
MD5 3d1db955cef7858481fe833029b4a5b8
BLAKE2b-256 598da28209bb74a5312dfd25914e0aa84ece3c8c51060c60b96f7cc697576ea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 708a4999376d701e992c640e6d8b6c43951a8d12f716779752b4cee5ff1dca8c
MD5 8ba787a1a296a2408c67ca2399ddf3fa
BLAKE2b-256 9adcee2d0d824163ab8bee39e420f3df3f3319eef1d8c643a1a8bc4f2444f243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7db49f773f48aa4eef5ca9853d1054102bf48a3ff3413c36955c227a0e5cb76f
MD5 7a497c28827622a2fdcea17921c27ea9
BLAKE2b-256 b37b3570c8f53f74f51a4d08ad9c62876d6d650695c37548069d39a567370313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72f3f8880dcc7f65214a5c17d0912461e9012e409d402d620bba6a3a0dc3a515
MD5 1f4f294842f3c34be2ef89c233ac894a
BLAKE2b-256 909d71c93ab2926481ae700ca95cc85e4af189e8e6196d4464fc4856a37432a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 593f0024eaf6af3d762a1e7922623afa3d530463c8be6e62fe253042b8a6866c
MD5 c783c401409790eea3a05165e0c9efc9
BLAKE2b-256 3a8ab9816f84b208edab1245260eceb5c1e9ee3f566f08c28a9c3a10ae574843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 12fca370fceca7df27d179af74d22a671bb57d0e6ee2030fd8e2fdea75471b8b
MD5 d1e40af73a0167b1e8e2c5bceb674341
BLAKE2b-256 9eb2d8755af971f41bccc8b5643546c284054bf3e8e16b543928e07d5fd88ea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f735625aae54a66b3b6dcc4cb286894d3a0f62ef275829ea9b18428b60c4b068
MD5 b7cc3600e471cf27d1e480ef280cc1a0
BLAKE2b-256 6b472749b8c6e9b9fdd20d53d7a553b9e00a77bb0400ce6e3f62140286b4c508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aaf88cdeef8e7776af8d8cf455f155f2f56c731b751aeaa459b84a7befb1d12a
MD5 2c7e49d1991ee2214d66c91302bb005e
BLAKE2b-256 d47ce1d0203672bd125de0ddecdc0b1882153040b12a1c79bc8a75bcd704d365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0db8c4cd84fbf6a71d361f8229124085de0c14d3b364f1580efdd93856b6ccd
MD5 c11ba61b926ea061f516db27653cfeb8
BLAKE2b-256 03e7849d907457623daa25467611964a8603f852923759812293fb2c3303856f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3da29011ef2a4c6d1ebe1d7ed233467e4b27ff539966474d49f9281bb0e7203b
MD5 5b24be33f197b103558f8e6f738dbc10
BLAKE2b-256 0de4810801c1c447271fe2bcfd119b7ebbcba52b566f98d164097ca7f88203f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a86a678e567701e6165fbb414aab7466d8d2a459291d2219d40e8e2447575581
MD5 e3928d6eaa5cb46e8f1fcc920ea2aa16
BLAKE2b-256 c3f3791ac9a0fbb47ae820f1ca5d397d65f82d3156d4d908736932e2351ec616

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d2c0a6d1cff842886464a28c5a7a994dcacbc92105dfb91c4e7b44910d02db2
MD5 edbd7a51a2aa6ff3216557f1d40d9c35
BLAKE2b-256 a8006044da07ca3381af10fe89d47d8c29cc823ad6a3ff0636a85ff8438aad4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9f22980cec58e3b4e89a4ae0ad7e318d8053b5a8403c7cba4c7936a67fd8289e
MD5 fa9d7ad4be4d7997cebb97ccbb514c14
BLAKE2b-256 5a4cb082d1c29c978d639cc16d8fbf0d9b718a1ac0f3a65467c93ba4af6312a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d689e5c239f038fce132d1a60f9576d8f54a571aa2db03713543016076ce163
MD5 2930e61a2039a922fe01ea808d5ed98f
BLAKE2b-256 a977b859482fed93d2b439c9525d5861c4a162db9d1aac76869eb9571737332f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d85d00b6af29e1fb8259fbc9ae6a11f0b358e494e70278fcf87f5da6ae3b8dd8
MD5 c97b7c796b5f3ace285df0604e0cf2c5
BLAKE2b-256 dc0723dbc3cd9a1339312a48f9200aa0e2c529850c8476b1ac928b193abf8548

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5fa20ed01afa6028e98b2f8dcb78c5f69fe373b93ff22d602dda192f056fb7b0
MD5 2cbc035073b3553327e1a08cb76476ed
BLAKE2b-256 f332d8fd55e1b10ede5b6773b06718fad71707becd4bba0569a92dc20e1d3b14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4b4a655d2cee5fd6ed4f15600714e51d1606c665eaa7c81dfe023394943b497
MD5 3959917473b8cde6f0f62f6a32569a8a
BLAKE2b-256 ea83c73bf5d4e8f105e952b34eefc6043b59fdb437a53bc2a1a527e6120836a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 634d180df8ec3d2ac9f500163b27455497fbb597fc6ecf374e3816afefa7bb41
MD5 fc5d7263340826dec88d1e2055b4d3c3
BLAKE2b-256 c4d6b50a6737ac8cf43472a2bdcc99c7f0504dcf518a6b32a85d0dbc961ea7a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82659cf58e759d2454a6558503c6530b67c1940df44b76f3c793765feaedd224
MD5 afbbb6f575c77ed36e31da98c0fd0071
BLAKE2b-256 f6468579d536f0b982b29f07b8614f44c7184512615236423f90d505e2b46a04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e23ac7a4071023f92506a9fe4cdc55ebe7cd7772f33966af81716510c77e0d2a
MD5 2ade2dd82487e74dd7cf2b402ec6f4a6
BLAKE2b-256 9243d3697320896876b26c3ebb92c5dd0ab695e8c9acb508779d13cf2f3a030e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 649737d53575b98c944e7de7d611bd625f1be824d1c5e0e09d7880508869b002
MD5 06372ccb3db2f3d5ef21bb54890ebfb8
BLAKE2b-256 ecebd8239c03125f6c50badbac61507b496d547d47a882137120c2205fc73a5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 db75ad462cab0c3d94f56d0fcdc17cc252f66acea28075a31cc6c4e45be1492e
MD5 39287ba7983bb471ec92767c371b822b
BLAKE2b-256 13b3b1297f0ed0ea2708af4775beedd124105250a27d07c20b030956c3b46330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4159ec56bd7168d2f355cf951ba1087ae7fd680d3ebb957cf0cf830e495050b8
MD5 7e3c0aa35838fc4aaa154cd57ae65df2
BLAKE2b-256 17a0336d47271fd449be277bc2b49ad70c297853d0e00d3aeeea759e22d407ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e12aaf73d98c3d3890396d2873393916e8f656b07e6736989b7b49528d7e9846
MD5 cc663eb87b9d6a4e3c53b7ca2b237b46
BLAKE2b-256 6ecd091d8a31585fe6b10718502d2e480e5ea08bb9fa148961f4bd31cc107bb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93ecb4f59e47cc0fc9fc20be9bb5dd4d88f74f80ac773c66a1f7dbe9e60ad448
MD5 d53f354a79a57f9287cc12b2c700bdaa
BLAKE2b-256 b93f177a8568d81b761a079794db833f961a134254d67f866534d7a334fb9d3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 68df4ad54e97e2f15b8365f80a4fff52d6be8449945b6fbb020d20bbfb13eb13
MD5 4f1f791982f8e03044a47abe51fb76ed
BLAKE2b-256 db163859d833300dcb97683ea9232b28da87cdffc2b21dbac219273ed77ffbe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 505c710ede47daeab99066a5c875b695b7761c548e3d6f12daaa9200deaa104b
MD5 a12e20d3d38ed8dc368670f1fe0cbde4
BLAKE2b-256 2749b0130fb6e9fc9666d51512df76efe0b63066c77035fad901ced86ac1bc13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b308f1d47daa090a257277f65dce16cba8e0727af15f8e61d43da56024d8e2e8
MD5 e3030f97e64582c101fc1c4eb1c63d8d
BLAKE2b-256 f997e203a182cbde17d4ca6f724c5d0298b63326803406502cad32c0318607bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f91789478d4c34d0f525b57d68912d0198b8335c53b2fa9f640fadd66d87a6d
MD5 79d7563ec5f96c9b82b5f40358cec844
BLAKE2b-256 8d973166fe7ea01caac2f34fa22109303e5647bc19941ef9805c8bf0d866b8d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 490188f05640096e51979148dbc82eb4f5849bc629399f31ff52088c996e2147
MD5 4a68518fb2cad7a6c24e20321f09773c
BLAKE2b-256 9c3332c81a367fcaf2767868cdd109d30bc090e8c20fd8014f51cfe11413d75d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 942b83cdfbc2a144ebeb891a2b44f7d8ad68ab30c722fb3305195edf06b2be10
MD5 488b1c6c31faf2cd64b676532d6331b1
BLAKE2b-256 85dfa6003d921ff05130f22f3390ba5b28fce95b4ca3eb8f40e20e1ce79c8b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f061cca34ba9459c882b79135c0c980ec4422a2b6698dfc86ed7ca4b0f0d910a
MD5 0f87b78a53ecc2a67609b1b5cca3e353
BLAKE2b-256 bc5f8de28efb5a876204fd887efd5019c8de2d3324dab799abda20513c03d019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ffae1500ee826d3addfb888e5ccf66f1ca8c7fc13a96afcceeee86c8f0760a93
MD5 1a6c76bec5f004a2dac0e26e1eba5ba4
BLAKE2b-256 856a978d9e57eeb7f3a853cb470f0631062456dfff6f16943ae4b6ac8a069f92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a6e6c6c6a22ffd15ef1b8dbae1edd85a5d149ddc12f938b07f9204f98123907e
MD5 83c4799e00f20efa35893f3a1369cd34
BLAKE2b-256 4c36e071e027f1096c51e0a27f030dba53991c84c438561a8197c0b519668da6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a116a71eb84ecfbde3202419abf274ed87b0eaeeeec74e3d935788e65fa6930
MD5 3313ee95b28f632681eee1d8fd278305
BLAKE2b-256 90ec2d6311d91fe625cb2fdd487605dae2240245bf6a018a4ffd75a75fed72ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8e53b7efd4529c1679890c6a645869c860fa30cd4bfbf5ac32d190af8a0ee7f
MD5 8fc8c8f3e74fdebaa8855e7c9e495228
BLAKE2b-256 6339be5013999def53bf90bfd7830e4b8793cd6101e875b7807782dbb444764b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 867465d782d434b84ba1a7f3991b620ec3252ea4f171259334f23d17f226e340
MD5 d297fb2d2cfdc3e33abbfe6099c4a740
BLAKE2b-256 1f94c3631d27dd5475b66b78367a70cd475221bab966bf84a063539354fb7316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08325d2e7de5002ed557c074a10376bc190f97ae41caeaa546c9de3c942357c4
MD5 f59e7ac727ce303c5656595e04b73226
BLAKE2b-256 83909b08d9d5817b1ac9764c310f2341cfbd08b23d9e4b4fc4237009a9eef5c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7d31284994eb365608b56d4f0051927afc7602ab923a6c4c65b9a126806adbea
MD5 02ad71ad87aff59edd247dc4a3e6d79c
BLAKE2b-256 f7705f9821c156af5ce8d36de99689c4dfa8940234fc24899c20ef1eb0fa7f0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 387f820cbe453de385ad7e66e424753cd9ab185256be22ad90bfef9bdc2fb222
MD5 6015c8c25fafe99bcd0d17cb2cc8690f
BLAKE2b-256 ae83aba502a1ec7904693acbcb9e4e3f4e67a56baf9592525c3e378acf983745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b8f8cc53c1ff3c026b71939d21f38bacda4acdd2f2799f8a516fec8bace9fee
MD5 8f2c35ac024d37c466f93ecefe51925a
BLAKE2b-256 d73cd7574e1f42fb418015b336a64f95598816b33edf885cd112858b8643e5a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae2a5c6cdf3d73c76d84763d2e48356a2af254b720d797f039f04c4c7a9c8427
MD5 fcbc624f0c49c6639aae0802493ce49f
BLAKE2b-256 b80499fe1b078f1756b3d0e1ff38bffded09235558bdcdb759f32df268518666

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bb8f0a17fb0add0cea29e43fdb7807ff1856674312231affb1348c3afbf60498
MD5 b5a52a7b82e6be4314c39d198c99e5c8
BLAKE2b-256 6005ccfb3adf283723b3281a4324d883c6ff42f6fdf863169d1ee9572d969b4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f8a4ed49b098a6f5e68561e9886fce3faee18db19c8d344e2267c83ba246661
MD5 dd26936ee05303ccbe3586131a168855
BLAKE2b-256 2d70503bcd52b48c7acc0a3e2cd2b1730471f716bbfdc3fce4d8e04eaff51e3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1622ab61832f730187c321bb5b375b7b3add132bdab6d81287514dc8d1228d7c
MD5 57586d5194a5d1055677e96a12feffcf
BLAKE2b-256 38381a1f226ca747cf4c92c0688237344fa7fe72393ed997d10f5afcd743d788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0a5696d7d5b9bf2b6a70748d7a98770c1f217b46617eadec65951ff695701d7
MD5 8923553edab6b660e5926828af5302c9
BLAKE2b-256 4787ad8ff76a82e69a133fde53647eb6a459c81a8a70a7fbf29fda9be601e9f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7404d023d9141f9316c921078e7ac34982cdbddc482e2d6c203014f54bffaf54
MD5 295b45a8a16aa906aaea8393cc6076df
BLAKE2b-256 d69de8b624bacf868610d8bd79bf84d6127cf5aa6549bf672ef6fd24b33185ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01491963063c7d5676f87e35706dd7b2bf23181770c040ad80b8485b666bf320
MD5 7b0498f5b14fd9acf497eec44250bafd
BLAKE2b-256 da36a0a1533168bfec6fba79fd64490fb7b73c6f81e887cd0663f78a95d70a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5eb4b8954ae8ad9a6877322c435d924432631d6b655ee73692111918c1cec4aa
MD5 97a99560d910aa699f21a5c9213a4477
BLAKE2b-256 b8c6b4ff8cdff198aaf8437f31508c000b3c28443f2fdef7bb5808f78911a650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f70844956ff18109d7b0f472add004341109072295f62005b3fb5cba49dd74d6
MD5 5c20938277cf0e415e34680ef68f22eb
BLAKE2b-256 e27251d3b9b6af0427c57386114a20584bd17ed02c1f6622c6971bf69ed63be9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fc8fbc67204ce934470469386d3426d745129054e534fa8ea46b5c535416b0b
MD5 613b333479a4beccc307d770cddaa23e
BLAKE2b-256 58913dd201bd5fab05877adb6472938e3554987893bd39a16949f95fdbf500dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54d181d70aa0022293a0fcae5de8e27b7572d130b2df0f869c4faa9bef99c88c
MD5 4c92d4299d82c8361f7b58d8fbfaee0b
BLAKE2b-256 f95a2b9408c25f25e8078522655d7539ea1000327580efe4abd062b3d7404219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 799501878a4a381c9ebcbb0332a3e4cae24c7570577d44ee89c45be63ec633d7
MD5 c4a01639b154ecba77329460e85ca581
BLAKE2b-256 c96797b53d726d7ff06e285b32df25dc45ca440e8467c4c27d1c47ba5aa3f124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54f89db3ea13494075f5b35d44ab81c3b3139b61f64c54201a48c70cc15af196
MD5 c2ba592104912242767520f323bcfb6e
BLAKE2b-256 ec354c61e55ffe0d9687f071badbfe717b98c8f66c57667ca8e0ba58dcc871fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf8481b535b96a4f2b4891299fa2ca9f007204269d2101213b3275aebd7608bf
MD5 26a37a5baa970f0965635912043cc18e
BLAKE2b-256 c78378ee80f4c872e4fbb27efdc8bac8415f86f830cec74d0a4352b5f5fe6cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b69c7ce480be6b6639c247904778ac0787d31cefce74727cddb975793163f9d2
MD5 f545bcc0e85fdb18488ba663a01f3421
BLAKE2b-256 37da420035ac4c48636d93608f6ba4370f60ccd010f0f18ee80341656708fba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a98b611d94a2c74e0eff3cedecd05ebdc6786a0f015991f23d6fbf369ed2b1b9
MD5 b471dd2c1974efb31cf02b3302dfaa39
BLAKE2b-256 7bb5426ae347074deab587dc8568535a85e40559f9a6daea34fbccff2737ef27

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