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.14.tar.gz (714.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

powerlawrs-0.0.14-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (673.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

powerlawrs-0.0.14-pp311-pypy311_pp73-musllinux_1_2_i686.whl (702.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

powerlawrs-0.0.14-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (724.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.14-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (641.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

powerlawrs-0.0.14-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

powerlawrs-0.0.14-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (592.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.14-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (491.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

powerlawrs-0.0.14-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (454.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.14-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (458.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.14-cp314-cp314t-musllinux_1_2_x86_64.whl (670.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.14-cp314-cp314t-musllinux_1_2_i686.whl (699.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.14-cp314-cp314t-musllinux_1_2_aarch64.whl (637.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.14-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.14-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (590.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.14-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (452.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.14-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.14-cp314-cp314-win_amd64.whl (285.9 kB view details)

Uploaded CPython 3.14Windows x86-64

powerlawrs-0.0.14-cp314-cp314-win32.whl (259.4 kB view details)

Uploaded CPython 3.14Windows x86

powerlawrs-0.0.14-cp314-cp314-musllinux_1_2_x86_64.whl (669.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

powerlawrs-0.0.14-cp314-cp314-musllinux_1_2_i686.whl (699.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

powerlawrs-0.0.14-cp314-cp314-musllinux_1_2_armv7l.whl (722.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.14-cp314-cp314-musllinux_1_2_aarch64.whl (637.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

powerlawrs-0.0.14-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.14-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

powerlawrs-0.0.14-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (589.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.14-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (488.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

powerlawrs-0.0.14-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (452.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.14-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (455.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.14-cp314-cp314-macosx_11_0_arm64.whl (403.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

powerlawrs-0.0.14-cp313-cp313t-musllinux_1_2_x86_64.whl (669.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.14-cp313-cp313t-musllinux_1_2_i686.whl (699.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

powerlawrs-0.0.14-cp313-cp313t-musllinux_1_2_armv7l.whl (721.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.14-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.14-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (590.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.14-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (452.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.14-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.14-cp313-cp313-win_amd64.whl (285.7 kB view details)

Uploaded CPython 3.13Windows x86-64

powerlawrs-0.0.14-cp313-cp313-musllinux_1_2_x86_64.whl (669.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

powerlawrs-0.0.14-cp313-cp313-musllinux_1_2_i686.whl (699.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

powerlawrs-0.0.14-cp313-cp313-musllinux_1_2_armv7l.whl (722.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.14-cp313-cp313-musllinux_1_2_aarch64.whl (637.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

powerlawrs-0.0.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.14-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

powerlawrs-0.0.14-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.14-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (488.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

powerlawrs-0.0.14-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (452.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.14-cp313-cp313-macosx_11_0_arm64.whl (403.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

powerlawrs-0.0.14-cp312-cp312-win_amd64.whl (285.7 kB view details)

Uploaded CPython 3.12Windows x86-64

powerlawrs-0.0.14-cp312-cp312-musllinux_1_2_x86_64.whl (669.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

powerlawrs-0.0.14-cp312-cp312-musllinux_1_2_i686.whl (699.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

powerlawrs-0.0.14-cp312-cp312-musllinux_1_2_armv7l.whl (722.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

powerlawrs-0.0.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.14-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

powerlawrs-0.0.14-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.14-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (488.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

powerlawrs-0.0.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (452.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.14-cp312-cp312-macosx_11_0_arm64.whl (403.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

powerlawrs-0.0.14-cp311-cp311-win_amd64.whl (288.2 kB view details)

Uploaded CPython 3.11Windows x86-64

powerlawrs-0.0.14-cp311-cp311-musllinux_1_2_x86_64.whl (673.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

powerlawrs-0.0.14-cp311-cp311-musllinux_1_2_i686.whl (702.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

powerlawrs-0.0.14-cp311-cp311-musllinux_1_2_armv7l.whl (725.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.14-cp311-cp311-musllinux_1_2_aarch64.whl (640.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

powerlawrs-0.0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (484.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

powerlawrs-0.0.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (593.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (492.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

powerlawrs-0.0.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (455.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (458.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.14-cp311-cp311-macosx_11_0_arm64.whl (405.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

powerlawrs-0.0.14-cp310-cp310-win_amd64.whl (288.0 kB view details)

Uploaded CPython 3.10Windows x86-64

powerlawrs-0.0.14-cp310-cp310-musllinux_1_2_x86_64.whl (673.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

powerlawrs-0.0.14-cp310-cp310-musllinux_1_2_i686.whl (702.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

powerlawrs-0.0.14-cp310-cp310-musllinux_1_2_armv7l.whl (725.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.14-cp310-cp310-musllinux_1_2_aarch64.whl (641.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

powerlawrs-0.0.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.14-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.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (593.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.14-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (492.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

powerlawrs-0.0.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (454.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (458.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.14-cp39-cp39-win_amd64.whl (289.8 kB view details)

Uploaded CPython 3.9Windows x86-64

powerlawrs-0.0.14-cp39-cp39-musllinux_1_2_x86_64.whl (675.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

powerlawrs-0.0.14-cp39-cp39-musllinux_1_2_i686.whl (704.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

powerlawrs-0.0.14-cp39-cp39-musllinux_1_2_armv7l.whl (727.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.14-cp39-cp39-musllinux_1_2_aarch64.whl (643.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

powerlawrs-0.0.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (468.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.14-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (486.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

powerlawrs-0.0.14-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (594.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.14-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (494.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

powerlawrs-0.0.14-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.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (460.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.14-cp38-cp38-musllinux_1_2_x86_64.whl (674.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

powerlawrs-0.0.14-cp38-cp38-musllinux_1_2_i686.whl (704.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

powerlawrs-0.0.14-cp38-cp38-musllinux_1_2_armv7l.whl (726.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.14-cp38-cp38-musllinux_1_2_aarch64.whl (643.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

powerlawrs-0.0.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.14-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (485.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

powerlawrs-0.0.14-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (593.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.14-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (493.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

powerlawrs-0.0.14-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (455.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (459.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for powerlawrs-0.0.14.tar.gz
Algorithm Hash digest
SHA256 db2bf99861acf48baf08fd8b974e1608229f7ac49eef6113e4a4f515b9c61ae3
MD5 742009947207d008f6b91be8eb426f0b
BLAKE2b-256 2adedbbd00dfe2d63c3e1baf9e3feca73010b5e0560a35393d5d5d3f2faaba57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b83a08f6a323fea7378ed1ecf5b447184c28d9873ccdb9a69ad12be39d8c81c3
MD5 0f652c44a9734553e0b64ddb928ce052
BLAKE2b-256 77774c49499f618cf2f9ca3babe307417f2c99946afb02092f7be2b5ed338ff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16e3c8e029f439eff47e576806b676f09559843b26608d77a05d57f5d71d68c8
MD5 b2b70f523dc7e8ae157d35a34167159a
BLAKE2b-256 ea508606ddc019f08b7613fcbfe3ed5ec224760a8a87475c1b9d3441be1232f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f06c65462c58613bb39d747b4c5c40bae7a78a8e7afa52248e475893d1049613
MD5 69ff57a9a8b513e4c9388eec551bf56b
BLAKE2b-256 51988c48b656ea56c43cf947f50eebbdfcc4c5d0e7016447475d112991586d95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ef6cdd5ec1dbcd6ae006fd211ac348046fb06af913d70fec8d6ae60b9d043bd
MD5 9158a4384bb5ee37824121c134601831
BLAKE2b-256 fe6f999bfd6a4b0c6e25a67d331977de3d7269bb5495a05114ff4795c9a912ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbcf6990a7833a3c6e34934b78e6210c0ef927b6afc010cbf96fd0f8e3754da9
MD5 a296a49c2aac23766ffaced03efcec63
BLAKE2b-256 eadc01364b331801abfe0a7495265ca867714a358df7d561ac7d57d119017a1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a7ecd6c7b9fe57714a6d44ee15c92d7900fed66eed05f25db9a2c32ba5c103c
MD5 6bdd1c662fceebb2ed79f3bcc7c5a420
BLAKE2b-256 c26dc6b17dc42dcbb38a65f56a66e7255daddda121d73f15ecb538a7b29ce47f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0cf1cd237deea03f7e12884be3aa491b9a7b042f0a795cdb9b9aef054564c6e9
MD5 0e1dc7bc4e6d22b68a26b611ab62e8a7
BLAKE2b-256 382e4fdc3b9db719c62e1b749bd54f787f9cce2a0458e20ac9bfb62924fe4918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 16a7746351dcf29a630bd5cf9778ed97f1e82c8d4232b007106b1f0cf2a0fb61
MD5 c719e5f615a9eb125e4b996005aaefed
BLAKE2b-256 b20d5fa02ad8d2be232ab92e8072b4ee01a73b7765ae18adeb5451ae02171133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a06620e184e28cf645da479f158185a73325235cc87d46b4a0aa9b5ad732d52a
MD5 d075bd507b5bce34412ee6467908cf07
BLAKE2b-256 27f90a1c98839137ee358383fdbede3b40f77946ee2937e041e5596f234cb578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a63008fdf5a1ea9eec73de1a7fc07a6c6c809df6a265417a59cf652e3a73ae73
MD5 3d286229f0f125eaa6f3c1e9ee544bfb
BLAKE2b-256 bf3b2735d1fac5e5f3143b0e1de36ed2793c1fe162ff4fa6d1748aac48bd90e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a58f1f5bd14ee3e315ca19afea218ca6ced5f39d5d65c6b1ecfd7d2e59818e6
MD5 73941d5d5f56d390ad54bd500b11e8f8
BLAKE2b-256 9f2ca6b778ce5a196eed23291d10f5f5c30d260d15f36e76c996cc11e70509c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e18c779f70b85e89b25344c2339983b0bb96d949c8f89b89742234e3cf6fade2
MD5 d36d0ccefcacf3877dab59a21ac097b0
BLAKE2b-256 19d0fb90c7599e122c80f18f6206ad8bae884cf37909aab5d5c0d31f8856b69b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e89c30c0dbb1f13ab53dd4c2e8d7d5eb73a3ef6d42eedf6339e41091681413e8
MD5 e981178d69a103ea7512281c029d97c7
BLAKE2b-256 22070f2af1657d87e4f65576a09e0a62a589d0ae704a79198d3eeeae3193f7ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 254aaee9ae2072ef196502508f5394ed772b24f89a317d960fe2d8be310cf8e4
MD5 5a1f046ddb26cdc858ca60f6469435d5
BLAKE2b-256 2dc4c0a6888adcfb6b8f6ba1861922c17ea87ae027c6556e50e8be4592ba132c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 507a3a596e1705f6d9197970242492ec6ad175105c073927e6a2a202d2723818
MD5 f0b0e6d6d6e42565b323a55346cbb0b3
BLAKE2b-256 ca3d931bf0d932a11837c5010f20caef2a04ab4e671e77e14989fd3b4355256e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f9ef84e223271e03d9d8da7c2f9bc58852f2359eb448fc84eaa5d7fa5ca8543
MD5 67dbe42826cac7c96f3943b00af28a13
BLAKE2b-256 846b1584d0b361b18e7fb1a4b5ff705d865b7df7c63d864d7594fb596a0af3b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6858875237e3252ddec49767e1e164d8bea50c7755b814f242a8d02cb45b0cd1
MD5 b14b96a9624431c2423ec23398c9e4d6
BLAKE2b-256 0c1d85f04778ca3baf3eea089985169a971e5cba3a98ca6d4890c2c73106ee25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5548e98a3af1e80a4c5adf94164f35734159c1c022f4cb8b5e4e03754ba59630
MD5 aeb27772e3fd1f893c64672ad6c0b372
BLAKE2b-256 f1de5c13f5db2e1554d02dc4c2a67424c43c9585e8b28b607e6a9419e20fb038

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a0b92a9075567b34f26c553ebe2a63588d6356e081f359d5a0fb555ec66eab00
MD5 cf4fbad6245f41ee8f3c3fe7b2f5e243
BLAKE2b-256 be4c76fea911b8acd0ce2b0fb5dd76241d5421f5213d5b606338248f1cabf353

See more details on using hashes here.

File details

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

File metadata

  • Download URL: powerlawrs-0.0.14-cp314-cp314-win32.whl
  • Upload date:
  • Size: 259.4 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.14-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c4064e78cb389968c0179ec99c9de7016e080f594edafd96a96eacb252b2abec
MD5 3d5134968cbb6bd83b47d148d2b829ff
BLAKE2b-256 46ba4472aea816745ec8b739aa94c5540a7b692cb9d691c7528cb7c8757a2054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42558071612ddf1109e9dff7cf680a1bba50309615c0d11c02c137e7c293c3f0
MD5 7d3c1ec5541479fca14fc7b572ef9ba8
BLAKE2b-256 72c249f10acf30b0410ee89ebec6526dfdf72f4ffc9592172e2e43fba9e8d292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5e568a3b891b5f5bf48c345d31248b28a859eb60f4cc6090d3dc0cb64046bb8
MD5 492f6c52562dd8dd8d004f2c000f92d2
BLAKE2b-256 1af4fcf465cde9fbf9504b582edf2d02f6c88b5807299e15c1e38da36d5f8e02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d4d82edfe3fa809d5eccbda324cbd9e0392a6ef6904de0a6455128cb193e347c
MD5 140c42d17e4a1db57de82bc21c00183c
BLAKE2b-256 edada1d2efe9ee42c60a4eb445e03266edfe315ed86a16a92a560a773730db40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14ed0485576cc9e0e016ca32aef1e1272f49df498ae9ab277c9a9a4838c79f73
MD5 5514c25809ba5f940e40f5f69a0e8846
BLAKE2b-256 dacceecee300beb4d9715c811814f77475f77645deed40a861b9b28b2c624f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9edd2f1794e12922202c78e719ed4310cdfa9acd87a580b9dacc80ca102b3764
MD5 2f75e3b80326a5e844c29b96f18fd1e0
BLAKE2b-256 5560f3b0f69ff028e80e66d901ac9761d2af92105a5bede448abd78cf40056e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4740ef2effc2896da9f1ebd6043b78e9b07b4da4cfd60ec7c814d827a23ebe32
MD5 9ca4a7d472f09dc9201dd991e3549e56
BLAKE2b-256 31ecfaf91c5a5f41c48eecdf8268dec55f5a548986e73ce8d49d0e424c319c6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d27181bfe7c7992f0587b143896d2f775f3b69e16a23c23e4fddb548b365a20
MD5 e5fbd47daac48d9d0fb9d6ec346bc4be
BLAKE2b-256 9d7972ebc9b8910232cd09e13c28d3578b39199347d94e5efe544720eccfc6fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f4bd8ee61e32ede10836647afb70afe53b8f2d9b0c0c796fb2dbbac53eccae2f
MD5 bcb1e8a8acb1a322ea5240fd49315bd8
BLAKE2b-256 1d6d5822f267b0dd3ec87242231f494cbbc370dfb3f73ab00fadc9cc1ead01b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 50bfc6c61ad7a3ef1ce5fb20ffbcfd90df0e6c67e4d8b5016857ce0f979054ed
MD5 c23b96820888c878310237b50d580e8d
BLAKE2b-256 8840cfd700dc83dae7284252d06a8acfbf5372ed9623d15bab583c6a45cef570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2fbf02a1b4aa9ea6fb4457792f6a912d5f7164e2ad77b747da83e85ca979d3a
MD5 c42242179f4a3fe81d5ec1e0bfea3355
BLAKE2b-256 ad5d5597ec7045edcb56c416d9c7a6197b63cf74968c3a7bede99b87cefb6029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bb31f60c586b16a87de6224a36441e0652fb4bd06db389400510fe14c7f4866
MD5 9f6f063f12aaad16813efce3215f733f
BLAKE2b-256 d7dc796fd9a2323924a0e9c51bb1e1b8b934f184f610b79605268ef9cc3e2398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69d85563e9aef1acdb471fe8098f26d789730f1ef88eb44eab156fde7ee97d37
MD5 5784df509762b6953a8245b673a69a0f
BLAKE2b-256 04b98b872806e9b7de8893ff7a3e46f615b328b62611a754562270e3613339b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c6c9158073d98d734324e78fdaf7e7f767b87b26eb2db4488ad46fc4f112c59
MD5 917e3b3566c34cf1dbb7797ba67c0fd3
BLAKE2b-256 0f08b91ed97e42760ada581787deb797a5e92405bb34f9135311bd8fa5d1ea32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ebb8c30c8aea18635518c6c9870b79a3f7cb1c60d041f38311c861d395e66c1
MD5 c20c2344f6d6e27a761ca1dbc406cc60
BLAKE2b-256 012a80c663724771b016b67c7105d31d97969bba9e35a98dc8159e154230f196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6d1202e22affe62b3a516318023179ecc6e89029f15959bed7b44154a93e674
MD5 15adc94396ca2d66d89da0b2b27840ac
BLAKE2b-256 ccf896ad4b054df71702b4829098bfa293cd10f514af64fa8d2603af8a9063c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0c6a8c9d2c32aa2051f7eb2705cb3fb87ae8ad3627c7699694a87d7164589246
MD5 46485e9064d28d9fef85cd377f486363
BLAKE2b-256 9a149061f69d8bbd9fcae0b6fb78e6f61e5a2f46c032f7255c109e9baad9f7e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a1ad88d08878c073e9a5c713a1df5bbaa78b61f27b4eac3723855c7ec2804390
MD5 099afd5cb43311a10ddae799cd2b73a4
BLAKE2b-256 f94e9f71a6e90996bab5017b8f964284976b23f5aad053f06106a38802e62b3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a0f977726455e6d1d9095bf8da4ed96193fdbbaa306ef0c547c0c76411cf086
MD5 f2297e56718942e539111affeabe2f03
BLAKE2b-256 84b4878643ec5485cc95fdbcad260d8f446cce9cec35d1b8b09ce132c6e13306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7956b7f2c9f2af2543198778f945242a98ad0f0ab4beb5c10d80924824e93529
MD5 bd6432f0e67344fe0baf75faaf6e9485
BLAKE2b-256 ab6c7ef4ae7ab7c52481c5c96360c33153f39d99756a77d3cea7e4165552c5c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4f037b70a64a154be2c5c3747c917d9478970cb4a31d16eff5bdd4772284a1af
MD5 bf888be375f187b0a1063c016848ccf7
BLAKE2b-256 fdc683536102388af876649a59d8786a30b80b81441f56e78be79a9482815260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9e93287afedcfe7a932a1dfa375e6a43ec610aea34c93958c66ac26bbd6bd7f
MD5 cc1ab4b9a2447aed59b5d7f8438e1008
BLAKE2b-256 fe3573c0c74f50cf971d70a9736bc4d2b602ce8a70eb8a689ca7209c5f08fd96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dee0de3d588e283c7aec98aa5e5c37180e7c3e14ef82cf2c6706b6ba2d0c2673
MD5 b13d90fd008e1d62e1577a058d15b5ee
BLAKE2b-256 10de49e1b8d510f14cb405c104b8ccc6e8b61733143729a7aa6325e8430b75ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ca959d96a4a9a518ca37f51d87619ad70a24594996c333e14b45af7e0ab5755f
MD5 2b527192367a152a630097987ec7c256
BLAKE2b-256 9f215be1bc4dbad5add75d88d0b52da96aa5d446869e921cca64f846d744bf70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8786a4963cb6ccf8a0f00fac5b09b49a650ab82a79c6337251b02f26a17e4c79
MD5 51f2340bd37df0f071742d7c210b319b
BLAKE2b-256 58e3d73bbb23f26ebfa61e70c4bf2f9a0841e0542d579505dc8d5cca0b8154d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1189b8cb08b5758a1fbd567340eeb09733988bebd4639959c6c3335bb27afe1
MD5 7a2408b4776b1835144cb9160176f7c1
BLAKE2b-256 906f747ae0fa187fd22cc951c294c7b82f32541874d289c2fd48829a9f8dad07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a568b00313f063ecb040ebb2bd6d2cd5b26464dc893a9a9e4033e98f32f71acf
MD5 e3951a357b5afac0cadcb2e941d35365
BLAKE2b-256 42ddb918a359ec835d4e922fa68570c4668885b7b3dccdd2198385255535b2c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ec9f16c42e0d8a94b9b9f4f491f867fdec1521e4826cbe37921b3082842b680
MD5 4bf25a46ae1f48c961f3ad52a3c43967
BLAKE2b-256 bacedfa911027f2e8a9776e729505513d5c121f9eb8b7eb987b001c1599472a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76b6d0654fe4e52639a333ee0b4faba6887eabfc2e4e19601a8d3c4b600577ed
MD5 915cfb091bc7ffcd765539ca4dbcbccd
BLAKE2b-256 150aa07996def625ee1b6ccdeb887bddf76529e6b15393e9444021ace5f147b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae11b58f20b5e45cbeed2083b7678874de35a2f8ec62bbf8c1faeea149a893f9
MD5 53f2b1389c5a44cbc4366d5ee9e28524
BLAKE2b-256 3d97e27d70da6fe7c101d2289060ba9a5041f4a60acb626d148519f7e857df3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7df4335b8c6bb65284dfcecaec98267479370b15502d6b26fa77b2c4b9d701da
MD5 bd960e99bbdfdef58be65a8d6d957092
BLAKE2b-256 6e4917ad24f0ea56fac4250e5289e3dab2ee61dc91cf0dd3b9ae6b952fb03293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5aa268198b265bb5d85c7115c80fd6182e07f99ae18a62eb0d01f2b0a4e3a4ae
MD5 30d86d2a5ea2a6133d29b10e91d60bdc
BLAKE2b-256 a9efbe9644384fd0e0101572d7d50e53455c1f129535ec16271d7f58c8de2ec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8374e254bd4c6442811d8ac3f1a11b5b3ea89a60baabb9fd6284dfbaccf3ff11
MD5 57d3e5ad0c8cbfbc1775205463d5cb7d
BLAKE2b-256 00a68329ece1bdc861832bc2eab211797bd1155c9041178ed5b2cf0558c1d56b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acef915f1f4c9f91e28e25c796890456815a4495729520578f4b4883d68816d2
MD5 e4824d8eb91bfd61f1621f217e989ba7
BLAKE2b-256 c6c20b73cec64f95398819140ae57932911eaa327a97fe5709dc4b752c965372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6dd4ee2ef3482012d440514fd0948aee46bbe4178f942a1201f0f17d6b94284c
MD5 718b708f24dc6d79e637b047128a3b86
BLAKE2b-256 da392895b042fae52c83581926180eb094cedc1f07c696ee42a6baebcac74f06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1fd81db757b87e5c5290d0cd7f614abb0e11e1f93ae0306723d87ee69f51af0f
MD5 7099434fdda75346e6e6c2d629f3741c
BLAKE2b-256 c82bdeedbcf94a883feddf17960816d81cf02947905aae09d996f91638730e06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd97494ef8300e565eeb5620e57d6263a671eee4a4adae09c611eaba0b64b693
MD5 1bc74ee1c6b9e082e80dc21f05323cbe
BLAKE2b-256 f652620b086881e074b99c4918484c80a4e0aa522fde1b9fc0afd0b41ea6a44f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 467bf5447203de589290d425a10351411bc8bcb9b28a32d7143956e078768a12
MD5 ce17432bb07caceff77f232ec548461f
BLAKE2b-256 646e8834b28bbfd5cb42d99b3091c795ae5cfed3fa7ad882e9af59f8fbd3a1bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe620311ac34409a34448ec788142ea2b24e577306ae1e3d547f59720a6f487c
MD5 f1270486c48d19b9363c357c87f015f7
BLAKE2b-256 9c2f88606371b669f1917c5bb0540f2b02d9ec4021faa4c96f31848e1292f09a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8cbee5f3710150e216c9217b9c0c0dfc09df0657e58350d817095a60266cae6
MD5 cd252964694613f00488ed666a438f93
BLAKE2b-256 f821fef26067f7ea389226de45ceca798bf9e05ee2948834b3d15ce7696bd7f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 279711e6da0f8838663fd865cdac1454957d41d76c7f8bc39229ce26076b3723
MD5 fea78f95aac0b67235b13546cc9cac1e
BLAKE2b-256 0fc791c1d6ff562087e99b8ea76b3e1d2010a970fc158a478e9e22714fdbf767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 85741b505590ca6b6a996c1c1570bb192956754b445a8f56430ef4af7018f6ad
MD5 4d56a9fadc131a595d4e2c3846a2aa48
BLAKE2b-256 88938ff8a303b411b7b1e1f2fb8621330bee137aed08daada34ce9632d362ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22e1e97b682bec32d6d174136d129acd3b577e5d0bd37edfdc401c23b26ad93c
MD5 ce7456aaef64efdbac3cc9e48c492e4a
BLAKE2b-256 19571c0d1df0402363f469f71c3cc280b64b0cf97b0a1ab287dfd19ff06c8274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0062198bc3b0c556e8ca0636a11da3504430f5a8e9495eb90ac57cf8f061bc4a
MD5 9ce34e7d4b36f632ee90a190046fc506
BLAKE2b-256 7686e713b8d99fadc9735e47030552ebbbb0355f5fdd64e3834c34166928b6d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 583277a6d28d41f724d96dd3f592f509aac5ad8adb7ab9e11972783a63f79708
MD5 66d7a68d03b63f733ed66fffb1900860
BLAKE2b-256 66ce5a6648f144e4fee3573b1dda5334d7a32cc8e467c1e1fe5d398f1c1da5a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5187c730aac04e5cfe726a65db029db24aa009aad51da9873dc451f2f81f02b7
MD5 d1276e9234a59881a717d092043d70b3
BLAKE2b-256 576f02747acbf4c474a9b476925837f0c248f96ac99c7558b86954553db92746

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d4dae81203b42836eb1ed9314d8e90e60b1692c1326374c9abe357dacc30e688
MD5 438534e2a3bc5a76c0ba9609804e35bd
BLAKE2b-256 d8eb5fa9849766fb4a25e976af3d088a1bd94d3a177cc04020b1d0b886abed28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2cfcf9cd3c385d1f3e6a806845e2ed2cf0fa3fcf4ee74112b5b93a0fd523de18
MD5 2e6792a050b0f2e9a03226313efdad10
BLAKE2b-256 2c0f3747fb530e1061aaa4042b0ce111f25ebfe2f8e1c0936f1e7eae8e6c564a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 887cd5cd8b0756e58c0f359b3a25dee69603469946fe2325b1d2c0605cf5ad94
MD5 9dd17c03094814b1c5882099fdbeed4c
BLAKE2b-256 7f25903e9f43bf385afeaf6ea987dbd89ec38f84cc8ca67a1e79c3dd03547d07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e0e0b2333a6e799bea2ec5825801d6b91f011c1937722715867220eab9c6a6f
MD5 b445ed52c871dd79c6a39432ef0a371d
BLAKE2b-256 73d294caf6ebd4ab65c60b2e3b4646d6afe59aa0a989fff0e113ed205413a72b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03236006ae9373e0057502ae5af83488a9adb0b589ca1c5d2fe67df054bed020
MD5 995581dd123a33d41b604364308363e5
BLAKE2b-256 92f62041b5dc7321d05af2fe8a042d571b7791a263cf488ac6802ec5ad484bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eea29341e15e2df708fde8c3fc17b023e7912b1e0aa373947fdb88e5a9ecf3f3
MD5 19e6f6f97a6fb12dd9762156feff6359
BLAKE2b-256 3f7f3641df512dd0c153e1f3699c5c1b4975142e3ce762a7ec2cdf225e3ba367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99e90b2fe1354edc78c136c649a355b944e5606222b18c265c425273fd952040
MD5 bfaef135c0107a239aaf4803ef1275b4
BLAKE2b-256 b9d41c81e8bd874f77a3e75477c96133b3f26beaabcc61bb8f5faccf3df3821f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c0afe6ef8d430f80476c7054684628f3877ca183def532e0557965736280e0e3
MD5 5e67ba5709d121a3863a0cf8fd29f95e
BLAKE2b-256 2b4477fc364cb598254f0bdd8ed0d832ce7a1f05a5a2280e585748ccf980120a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a4bbeb7ccc21b3184aa708f3fde9c7077befbd38fecd51258abab0f70ce3604
MD5 de1fdc9b2c1eb5c6300158de9994bb25
BLAKE2b-256 e9f7034419ca76736a29a82effee6335ed47b70aa8be71bb4c452f2234611539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cdae0cb18c4edef021cdfe7633d6be14224d266447a40489f11bc121c642ca0
MD5 85a27831eb97016cd73fd9f8b984f9d4
BLAKE2b-256 d1335339ccf9e6bc4f42e642364fd073bcc7cb5776569a1da3b7a26db6aa2433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e74d65548dcc9b01d41844685a6a006e3ab47240c2a71f0250bea2e63f086ec6
MD5 6369df785e5ca40eed96a2b789ac8c6a
BLAKE2b-256 8f2f1b7fa81c5282e0101648aa940d82e3b24b2f46dba1bded0ca4a3bacd203a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39ee3bbc62365f72dc30f30171c927869ff7815c22615fd6f59121012892891d
MD5 78d4f554926ccb0f2bf35965f89ecb50
BLAKE2b-256 6877a74080a98cb7dfb5f6f4bfaa282f9c608671150c940181e6b58d9389c114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b66fb8a9eaa8226df9686e0214adc16b07765066737358bee93e2cb83545b001
MD5 8b11395217ef35d3f511bbdf2d9fe889
BLAKE2b-256 aeb81dc9d897aeb9c1fc7c6527ae80ce53e4aa74bf38f8ad8d396e7832ba6bbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a65a3bdd4b30b5b2714f5e619a71beed3c04c2a534beafb9c2e54e9231ce866
MD5 b603ac722ba67418cdb588046fb66c6f
BLAKE2b-256 79ca71e726901a213988a5c8bb5a57f521107a732ac1223e20c6ae9477cf159a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5b296bf4cec66c1e06cfe0c08890fa65bbf46d972477b0ac51b417e157eed76
MD5 a30a0fc2fff6a2e765244bde7a5f5138
BLAKE2b-256 c08271b1be5e4ffe8d88f474317e1b04b9a2377bbe1f2cd3efbe51a36376cba7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b47bbca803e54d49e455a3922762fb1fcfdc94001355d4136e6e5f86c0dfb6a
MD5 49dc5ab42c010a987a05c892182be1bc
BLAKE2b-256 39ad9ff6db9545a1c56c57fb404f13ab43a604058aab33f1ef6d6ddec8b61966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f7750523a5392efa25e96ff9524078e7d54ed4ab79e9d4b5e0fd5f908f752819
MD5 6567d4dd24e393e80f7b90bdb257b2dc
BLAKE2b-256 e562591ec15e046c5cf069582e1fd4938f416821d8c1488133169b3998c038de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fae05a6d960c3dafa0a22e30e3a3856c0301ce570f952c157eda57f86057889d
MD5 cfe255ce6daff4d972ed4165a897432a
BLAKE2b-256 e6c421b5357caf6ebe14635299e5361e95c51479f49b0126aeaa824b9a30ccf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 04d2887295013cf5346b86afbd43c13e1a421629f98c022453c3f904a689e662
MD5 49837c0916d78921a903111ef33d8ebe
BLAKE2b-256 744e6f710ec03b90a7e744c9fd8f70df6e6b823dc5cc2350e1018f92198308d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f29ee9d59a8c3cfadf4e6c0680b4b47d53f87d06f017ef74374abdd5273f40dd
MD5 55b7332bd82342721cc5ca81b9d3eb70
BLAKE2b-256 b8694ae9a950d2f055aa14b686e1f4469113260ca91800f82edbeb3b5859241b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e092b0f9634bced3856c8dcc96073474d632d74fa6a17d290508b8a0187852a0
MD5 e1e9b4cb9fc2ed7fe2e0d8e5ceaa745d
BLAKE2b-256 54ecd28cf2019828aeac87797f85998263d28e74eb74b27da02a89031c7c1c13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fcbe8ebdd51037df843d790c8f66fca2e6e3fd562503cdf1d65f2acb4775fa2e
MD5 df4a4eb72ec9c8e7b34086e46397cf95
BLAKE2b-256 8c0ea4b92d96fd08f1b3aea3e383994f2843f77a3b3fba56583a50fef8c6e79a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c47fdf50948eb643a87dca7f06b04e754c6aafa68939f2014d6a03642c7b2012
MD5 6cf2fa39f9c423dd3cbd53ae50977068
BLAKE2b-256 93e2830015d9be7fa8ed0b0bef27fbe2d2173a1176809f984fceb3c69314fad4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1075ac1c6d4533301ce54f6e878e9ddc907ad930b75b90fcc203d15b417b898
MD5 c8a28075c7f4a032633c69eeafa7e569
BLAKE2b-256 5c493ed43cca424b5e8e6674a15c90208c44527979f15ce511181a186d07ff75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3bb22f5fa9728bc33fefd73ecd80c93c4802381e8b72545c6a50b015a123f401
MD5 b31b40aef5742c2e2b21151206094d1f
BLAKE2b-256 90b54fce939afdb3a2fc60086770a901975d2f13d05aad6a7758f89861b968cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c385896245b3d09c76e34f09b998206a4e150739a86cf8dff3f54711bb5cb1d
MD5 65c0b4c32637eac0867c2da9b0e13c66
BLAKE2b-256 2d7ce27ebe419b150f4df04f971841c9f9f15cbcdb02dd4a74bd9fdb9f91b4d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 558d08f46fced23dd2ff22bd8a320fa9ed62137080fd6ad1bccd2963fd2d8662
MD5 b88bb6fda2db50069e1b472202d69f63
BLAKE2b-256 e687dfad31cab0e906f952f936afae2cf3bad66d140d973566c54e4b37418c01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ea2258e413739523c1cee139015b4ecea9518b61a9d3d454335f7e7875f23330
MD5 2c4f73c83a070f3a8f4b8b34f9ea4427
BLAKE2b-256 024d0f216239ff9ee590bbd5acf72ebf7efa71697ed819acdcf1e7438d4a7270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e160e59ef5b42ede4f630e05931ca63de4d7aeeb761ee674dcf1504dcdeeddc
MD5 07412a5c271bba5f7b963b0f41598fbc
BLAKE2b-256 03546bf02aaf63f157589a95689dabed2f29cb2f801b958f3395bba045817507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 61df5b4fe232562762c57cd104a33fa3279d831ed83efb2452eb061500e70a54
MD5 3d3b2f9654c0e16df68b796f46288d9c
BLAKE2b-256 82750756b6f3b6b0d83adc2f6ac5ba624ef154f881102d2f34be9352a12907f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 50cfca38c6e4c829dd0043e72bd27aa70dd79ebd07d35d6dc3e3f165fe5ab9c0
MD5 8e2d5ccf81f2e39e13f5c85d3588ad67
BLAKE2b-256 226470d382a0de3f0713196bffce7b6c072316abd63e2e04687b70f98e79505e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88b05f61b2c135d7417098755a2a84f32750c038261639662f3e20113d9b0842
MD5 34b7b3352019b85bae213611f0597f6c
BLAKE2b-256 05f4e3dc3c7f5f712b398f0ef935fd265530815eb0123efcbeb1d19feb5ae97a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e0941e12d150f284efbbc7ef4c25119874cf711f2234e3066a8c65b93fb6e57
MD5 6999f43e1cde792ff0d43c03b9ebe01f
BLAKE2b-256 db9c8fe7ee153c8a43065f32dbc2261f77168a406329e4a83bc637b10fbabb64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b99b4dc701198a4c640d8187766284a225a240dbf23637d6aab277aab75e3e0
MD5 a14094b1465f8aa66e1235f4b7b545ed
BLAKE2b-256 d351aad6014993a0eab5d0bcaca8176d3e46c4a25645867e1fd6db46107a08a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25d8f6890eba97d509ad1f60079c85b4f3085ce121f972043545d125e6f477af
MD5 33990f0511128252448245aa5b8ab2f6
BLAKE2b-256 2dcb57bfa7b9007f1cc48abe3c1f58c876e34b0a627887704e238391e92c9519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d73a24750da72a0089f0f5e6e57db4aa3173c5e96d1e5aaa6568606c2553818
MD5 5f2485638b71fbc972d9c80bbc576b76
BLAKE2b-256 aa66c4dfad1bd793e85006f2af5dcd283c086c5e3807cb3202c13bcd6c274f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 504a2b1d075f57a930fcb1bd39e1dacb83a0e9dbdfdf32ba44faf71cc0f93db0
MD5 8499cff3b93126138c7c879c37ef2669
BLAKE2b-256 1605b5c1e0ecd9b493547bbd6b6886de3ce1deb20a7b274536ffff2fffceed2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 852c4252e776fc3496ea0a051db909c2b1a30d68659d4890a00f1e3a2268bb35
MD5 e5066384646cc45789064b3a4ab62e53
BLAKE2b-256 ea0994d2a5cac10445b1efef3c9f027188797375d1138bb5edae03ac9d154b81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5c29d62479cce1ab11a3880d7661f82522f0090cb54b07e5a0338ab72c99004b
MD5 1ef66b515e73b3ff16f3c7c31fa59d94
BLAKE2b-256 c4c913aa639ab38bbfbfebb410b31946864f5d4f3c20a350d9b3e852ab7519a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 376c0d00b0dd96079274f8710fd46ac0c8d039411762f0b32987f0fbd31dbc2e
MD5 ca5d37e15458827bea6ee1423b90f9b3
BLAKE2b-256 4095c81504601c9f1ca813ff7d5c9cbd4be6ec159f17a6c1f3dff751543cc771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8112784b9aa6ad7bf29f1f09af49543e327d0b4d000923ee559573ce99c8de01
MD5 42e148ad956743b46df37b7714887aef
BLAKE2b-256 184beb9ac073abc11b7cdcfb57b918b630f3a966cf1ea2b8bf8f260df14b0ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbf5f852a03007ab552e153024bff0dc43f5bf7ff9fe9b3085977fa005cf990e
MD5 1b5f8929e2a3a5b4a1d3bf2c8efa9bd3
BLAKE2b-256 d36a73756e9d8f54cd22e587ad4d851317ed92d077fbe460ea069ee495d34313

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