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.13.tar.gz (712.7 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.13-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (627.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

powerlawrs-0.0.13-pp311-pypy311_pp73-musllinux_1_2_i686.whl (657.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

powerlawrs-0.0.13-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (713.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.13-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (629.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

powerlawrs-0.0.13-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (455.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

powerlawrs-0.0.13-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (476.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

powerlawrs-0.0.13-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (583.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.13-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (482.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

powerlawrs-0.0.13-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (445.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.13-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.13-cp314-cp314t-musllinux_1_2_x86_64.whl (623.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.13-cp314-cp314t-musllinux_1_2_i686.whl (653.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

powerlawrs-0.0.13-cp314-cp314t-musllinux_1_2_armv7l.whl (710.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.13-cp314-cp314t-musllinux_1_2_aarch64.whl (625.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.13-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (473.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.13-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (580.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.13-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (443.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.13-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (444.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.13-cp314-cp314-win_amd64.whl (273.8 kB view details)

Uploaded CPython 3.14Windows x86-64

powerlawrs-0.0.13-cp314-cp314-win32.whl (251.8 kB view details)

Uploaded CPython 3.14Windows x86

powerlawrs-0.0.13-cp314-cp314-musllinux_1_2_x86_64.whl (624.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

powerlawrs-0.0.13-cp314-cp314-musllinux_1_2_i686.whl (654.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

powerlawrs-0.0.13-cp314-cp314-musllinux_1_2_armv7l.whl (711.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.13-cp314-cp314-musllinux_1_2_aarch64.whl (627.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

powerlawrs-0.0.13-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (452.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.13-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (475.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

powerlawrs-0.0.13-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (580.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.13-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (479.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

powerlawrs-0.0.13-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (444.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.13-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.13-cp314-cp314-macosx_11_0_arm64.whl (395.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

powerlawrs-0.0.13-cp313-cp313t-musllinux_1_2_x86_64.whl (623.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

powerlawrs-0.0.13-cp313-cp313t-musllinux_1_2_i686.whl (653.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

powerlawrs-0.0.13-cp313-cp313t-musllinux_1_2_armv7l.whl (709.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.13-cp313-cp313t-musllinux_1_2_aarch64.whl (625.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

powerlawrs-0.0.13-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (473.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

powerlawrs-0.0.13-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (579.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.13-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (443.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.13-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (444.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

powerlawrs-0.0.13-cp313-cp313-win_amd64.whl (273.7 kB view details)

Uploaded CPython 3.13Windows x86-64

powerlawrs-0.0.13-cp313-cp313-musllinux_1_2_x86_64.whl (623.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

powerlawrs-0.0.13-cp313-cp313-musllinux_1_2_i686.whl (653.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

powerlawrs-0.0.13-cp313-cp313-musllinux_1_2_armv7l.whl (710.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.13-cp313-cp313-musllinux_1_2_aarch64.whl (626.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

powerlawrs-0.0.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (452.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.13-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (475.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

powerlawrs-0.0.13-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (579.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.13-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (478.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

powerlawrs-0.0.13-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (443.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.13-cp313-cp313-macosx_11_0_arm64.whl (395.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

powerlawrs-0.0.13-cp313-cp313-macosx_10_12_x86_64.whl (405.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

powerlawrs-0.0.13-cp312-cp312-win_amd64.whl (273.7 kB view details)

Uploaded CPython 3.12Windows x86-64

powerlawrs-0.0.13-cp312-cp312-musllinux_1_2_x86_64.whl (624.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

powerlawrs-0.0.13-cp312-cp312-musllinux_1_2_i686.whl (653.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

powerlawrs-0.0.13-cp312-cp312-musllinux_1_2_armv7l.whl (711.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.13-cp312-cp312-musllinux_1_2_aarch64.whl (627.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

powerlawrs-0.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (452.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.13-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (474.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

powerlawrs-0.0.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (578.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (478.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

powerlawrs-0.0.13-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (444.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.13-cp312-cp312-macosx_11_0_arm64.whl (395.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

powerlawrs-0.0.13-cp312-cp312-macosx_10_12_x86_64.whl (404.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

powerlawrs-0.0.13-cp311-cp311-win_amd64.whl (275.0 kB view details)

Uploaded CPython 3.11Windows x86-64

powerlawrs-0.0.13-cp311-cp311-musllinux_1_2_x86_64.whl (627.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

powerlawrs-0.0.13-cp311-cp311-musllinux_1_2_i686.whl (657.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

powerlawrs-0.0.13-cp311-cp311-musllinux_1_2_armv7l.whl (712.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.13-cp311-cp311-musllinux_1_2_aarch64.whl (629.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

powerlawrs-0.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (455.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.13-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (476.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

powerlawrs-0.0.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (579.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (482.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

powerlawrs-0.0.13-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (445.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.13-cp311-cp311-macosx_11_0_arm64.whl (397.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

powerlawrs-0.0.13-cp311-cp311-macosx_10_12_x86_64.whl (407.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

powerlawrs-0.0.13-cp310-cp310-win_amd64.whl (274.9 kB view details)

Uploaded CPython 3.10Windows x86-64

powerlawrs-0.0.13-cp310-cp310-musllinux_1_2_x86_64.whl (627.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

powerlawrs-0.0.13-cp310-cp310-musllinux_1_2_i686.whl (657.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

powerlawrs-0.0.13-cp310-cp310-musllinux_1_2_armv7l.whl (712.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.13-cp310-cp310-musllinux_1_2_aarch64.whl (629.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

powerlawrs-0.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (455.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.13-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (476.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

powerlawrs-0.0.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (581.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.13-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (482.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

powerlawrs-0.0.13-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (446.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.13-cp39-cp39-win_amd64.whl (276.5 kB view details)

Uploaded CPython 3.9Windows x86-64

powerlawrs-0.0.13-cp39-cp39-musllinux_1_2_x86_64.whl (629.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

powerlawrs-0.0.13-cp39-cp39-musllinux_1_2_i686.whl (659.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

powerlawrs-0.0.13-cp39-cp39-musllinux_1_2_armv7l.whl (715.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.13-cp39-cp39-musllinux_1_2_aarch64.whl (632.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

powerlawrs-0.0.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (457.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.13-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (478.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

powerlawrs-0.0.13-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (584.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.13-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (485.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

powerlawrs-0.0.13-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (447.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

powerlawrs-0.0.13-cp38-cp38-musllinux_1_2_x86_64.whl (628.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

powerlawrs-0.0.13-cp38-cp38-musllinux_1_2_i686.whl (659.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

powerlawrs-0.0.13-cp38-cp38-musllinux_1_2_armv7l.whl (715.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

powerlawrs-0.0.13-cp38-cp38-musllinux_1_2_aarch64.whl (631.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

powerlawrs-0.0.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (456.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

powerlawrs-0.0.13-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (478.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

powerlawrs-0.0.13-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (583.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

powerlawrs-0.0.13-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (485.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

powerlawrs-0.0.13-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (447.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

powerlawrs-0.0.13-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (449.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for powerlawrs-0.0.13.tar.gz
Algorithm Hash digest
SHA256 566ee0679c9669da683e477d8fce8f10c6c1e8718cfc264b01e0dd8e4ff76caa
MD5 8d67d8187ab8be7cd78d923df31eb77f
BLAKE2b-256 69b633a4815ddc610985a6b101b83273e8bc538ea9a0ad4df7d4e8522c623684

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2df65c25ffd5ef00541c10ce7517d67138a092195138e133492d796818564d84
MD5 d8df2e93ab4dd0266af83cfe7f93d4e7
BLAKE2b-256 cc1be18672ade5155ce05c06f5b51bda034ef351d2a06e2a3133f22b790770c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d7bea8ab9a55d45627bc50c193f044185a6dd3ec74d1599ca6838a651eff9cfc
MD5 40ab431f8be08a5853d83c8c7d24251a
BLAKE2b-256 0a731c45292980a44302edbf4b474fdbc1ab94f0f0c785e1e9d21201acb8b63e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a025c16afaed7cc4e82670be1bd56c78e55adeabb030a44972dbb62f4871133d
MD5 7171a39c003c5228659a124c1f0c348e
BLAKE2b-256 571125116846668dccc22bab10bda6ff49e9192e6f99b9442228d4a5b1d32356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 216322231722e99ddb144920df662acfc023e03fd4abacf2c77d242b36308bda
MD5 e9fdd79e6958dd00447d866579bb65a1
BLAKE2b-256 05aba130a4521a85b9419529aab2ebf7a491d865c16db9c85d84b658ca5a2f84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c29427b982dce277775684595de04b84f6cb3d0fedd41bb5ec2ab5dfeafd4928
MD5 30d14cd359e678e9f107bc588bde469a
BLAKE2b-256 3261dc4ed1790b14915003082dd023ae5ef8914d6e1eb57497b61fe443cb025e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 253153bd709ca1b3ad3b173cd3d6edb41caa543181c5cef2b2d9f95b679e021b
MD5 054d724959cad620c1b33d97798aa36f
BLAKE2b-256 b7802a48de050c974b647e5a75706dae638370df6f7c1a87e41d3a6e9138e615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6020e3448dcb86b6977ca1a83d3078e801e57d5e5f5be16a06311d8d30a0932d
MD5 b5c522cdaabdc83e5e211c5efd6effc8
BLAKE2b-256 7c486115c964a1678abc33a60dea37591fad3afe5daf55feb4da68f4f46ab397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2bf08e801eda9f252f41b5b5b827bcbceae8a16292634c962118a0bd6bd0dcb5
MD5 5e2c296415c6015282c97c32e630bde3
BLAKE2b-256 90b1d59b456cfc5ed541245036e738569b8f48cce80a95cdcc20c23b73456be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d78819809cbe0fe592f30128fc4e7f750cfe7a8eab6853eeed48806311233795
MD5 e8769334b31e8626cfdd6c4d2fce41b8
BLAKE2b-256 9af8615ca8aa18f8d2db51473d732cbc501e54f1555d02c9d9b53161cc289c1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e35f015dd5b5cfe9f78d4f78194425f8df266dd9968ab1a12195f2f0f2c2a31
MD5 c978293d4fb40a98ea7d0d196e1660d3
BLAKE2b-256 b2af00a4fcdb8e89fe8fb1523ab3465c772f7e612248023f107d6b5870a2cc36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40a4256517c88e9b5482f2030d609fd5bbb5e2d865ecf4a31c66f101de9d9de7
MD5 ff504e1f3a66d3c7357cfd66768e6df7
BLAKE2b-256 91ab0f1b7e030e1751515f90c2c04e06c77e0b1018ee7ddf3758bf7c81f644b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d58c60e4cff30d23d260cdd015a273c5fa23d3421db403943df0ec7409bbc30
MD5 b369337bac0c42b6e4c6fcce46d206a1
BLAKE2b-256 aec0449c811b11d6b09e66330a69fa9df7c90804791b57418baba2db6ce4dd75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7aa2d945f957671f17f06b99f741d9291c6c128fba0404aba27b3aa4f367940a
MD5 b2ad5ee0dadf4ee24a7e26472010e8a2
BLAKE2b-256 66607c257d12d3eaa1018a31451dc75e4a5dc9754fdae9175ee79442ad5a2106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1197d6c3a4e4a7a70c1bff3b1941d640e9c526bb379b0a39411aee6446fc8814
MD5 80187658b64c8ff0b15bb77d8ac992be
BLAKE2b-256 6fb4b4ae3079ccee68f9a51a35923e0df8519f139ab398063ef2a9ddc7a74372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 67d6d85873d1aadcebd3623b53b87c1c1b48ea20c1e2a55e240d939e5380e5bd
MD5 bbb8bce16c6bb23ec009472a1603423a
BLAKE2b-256 13e99701218bda01e7cf6acc9f77171003899757eaf87f06ff13b0b7af30257d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33c51fd0bfc6cb046d656f373e659c330b6cb7acfbe35594bc4310c07114b190
MD5 8e0237fdba11fd1ef46264f722d0fb31
BLAKE2b-256 d7ef8c0cd7029463821acbbe1ad5b30db3af0117e0d40415fea47976b1f1408f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94fa78029d8c4b376ecd73d77f0d8f4d1c2349149c99ba84c37432b3419d67f4
MD5 039eadf970e2f5f5732d502196b057d2
BLAKE2b-256 71ae0c4850534feb3a7652c82bfe38eca48585f41606f839399bbbbe5a58372c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 068c867c9f4f500a7b8842ea63966c3ea86fb2c97f1efdafb670b408e3d7b10a
MD5 88adb131bce707b4cfa08f045a44bbbc
BLAKE2b-256 7caac8086275363e96dae639f6dfacb76b6852893c6b4a2bb319b8a94670c4e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3d3d3fe8bf222783dea5f64f6d2fc4ce9a6bfcde059a276f55a26ce13d28f707
MD5 b63aa77f9d2fd5d39bd3fd5869c14d1f
BLAKE2b-256 df124359baf63c4308770aa3c5f0700243dcd96a02ffe8355d39c9c7a9383dfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 bdb0fcee283eef0821950f454900bbcc02204e35322fc6e6dd685a0fcc8e8bce
MD5 d489a096e3577ed94f512eadeb954326
BLAKE2b-256 004b59086c059578fd0455d2b386dea94ed62382e491d1413c2853af32c9cde0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac3a4bfa217af14570fa9c93b9696d32172de379e138b144c3b7df356f77a8b0
MD5 c3e9f8ff5929be3f0e32540edf7cc2f5
BLAKE2b-256 dbefd370f2455c7bce531e30375178ee6d653ee6bbdd7b51f7f6f57905a5aadd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a92fead137e74e00889d50799878d7ad9a877f939f7cdc5d0b20fe166d446546
MD5 2dc427e6dd6720cb5bdc9778e2a478c1
BLAKE2b-256 c9b5d92c012a0d396eb5ec0e33291fa6272a7d81334b9d4ab3cee6804797dea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b1543a71992a6c092c624e1d90d4e82adca702e97e31d7c9f34a5064fa29197
MD5 408885ccaa2c12e65e819d5640580d77
BLAKE2b-256 c7432e61bff26a0f699cd512498a50c017ae995b58c34a1d9d3834ec59967c2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f64530de1322966ea1ec29703da1acb415a44eeb020140aa9154966f8673e56d
MD5 8a9a80878adb6f57cef63ab9a1fd9b5b
BLAKE2b-256 4d5a9ef0a7b0d7feef2aa94b9910fe38606d0d0a2a6a1f89cb595a3f14be4e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05b95171ce45ac17baa0c03b996d2fb8f82aaa65b693c018a30084ee74fabfb5
MD5 45c99a322a9581fc9be8b7fd66d36746
BLAKE2b-256 742c07c59f4bba683c9bba2c7695451d63ba897b1960948b6f607077b9757cfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c5be39a3694a57989d458859effc7d6d17e7d7437722d4f9615bf58f228c6f5
MD5 4f4cd4b8e6416d86d90fbcf4054dfafa
BLAKE2b-256 7e3f52b2647f9364764d8891f15dfdc449860ff7e0361de07cb9cc4af6fe9aef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 60c9910acea5ff2a78a85654c7301f120dc03a5be8016f9e146044650f2d582d
MD5 86183af85cce132e5a163a3c42f0f178
BLAKE2b-256 df0b6268ddf2febd85b5aa537605ee26b8659767c8ad101263fb5dd6adc8a8fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0fcec3ea5c992ba95546a0aaa7610aadecdd545bc51e2f6446e02c32631b10ae
MD5 b163b9ac52ddc9c3d6c759b9c9b891e5
BLAKE2b-256 b25271af164f363ce93f2e8dd642b80557791655dc64554a40169a146efbdc48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a7bd1699ace8d3361efc2dcc6905a32d00a294799825d584e57f22ec8d5a9702
MD5 3746e2068bce412853bdefc578621cfa
BLAKE2b-256 658eee7b2a3b4b2aa4109693c3a8fd56e380ae93ada2f3b7c6b0c79d443f6f51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb79eabb4ecd7efc8bf7ccd8b2dc642f08c9c5c6bcbb0247c1a25e4fa465e87b
MD5 e795e9a722faf8d1fcec9e21e6644e18
BLAKE2b-256 d93c8a2680bcf27090fce86e899583d6e356e3fbf88975e6f56196323557c68d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5370b3b855c998ee740475614b58909235eec8ed013b8f2c17c2eb78021c29a
MD5 7b6833a1c8e49ba6f883ae595129f34e
BLAKE2b-256 e9b723ff4e0514d554d09ac9a427b78e4a2654facdb0a30a2dbbad4c8730608f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd4903b0402ffa69c020010a448bf597430d441f6b4e283e51731e8aa50f7abf
MD5 1b7ef7dbe10b339e2b33142bca455b3d
BLAKE2b-256 16bf2d950619ed14956dcbbc9f2e9b16d4dc6e3bbb63bd7de03f964b28f11ec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 146ae86b0924681ec71bc4f95e6b09487f9a2c0d4dc9d1a485704fa0b4c09e9b
MD5 fb6a1b90c1197f28c028074a72d26047
BLAKE2b-256 293f0a8289c3416072f993727c2fe8f3d615aef98e92088e67d32310a0bb4422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25d4426e3cf3882ac6786c61276ccb9393e7949de267dbb19dd3e6371ed0dff2
MD5 400d507e9a726175376b9ea2383e9388
BLAKE2b-256 164386e84cf8c2f23c862605a262cbffa74a0e033734885782e6d3358682862a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96b2f5395fd1f608fde6b3d4c0a76edebcd5c54949a84ef9558c59aba8fa7433
MD5 e99a532ec7a5cb3a8f8436b5ac9b101b
BLAKE2b-256 c04ee981df31009a7786667d6bb1a3632fe365c8d213254ca3b48a4c84afc9af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f2bf55c345fcabf275d1a9371c708fa43ebfe815d54de4a0bbf7958591ac2811
MD5 c92441e875e2b63cd77e50421501ef36
BLAKE2b-256 fedbc222576d146f4bbb3df0b0723a8eddf1b07b805b6ff21036bb735b671136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c896d7a521cf4e19b1de17130eabc56a0085e05495227d6d42fbac6ee0fb15c
MD5 560ba9e5aad337b488d117821c4e03a4
BLAKE2b-256 b148176f3764f1c89e7b8ef1cb0e7fbc0f91c97f69fb3ae1b496ff07163dd95b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 848d37668c99b67ade9bfedf863fc8058e2d17e61a352ff5e18668689a8cb098
MD5 80ed67eaeb8f378a7fc0f6dc1915f224
BLAKE2b-256 9f21697070656227de656bf65d537129eb251699b35da62c83c72ebc22b8079d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0dbd0735ccaa1fb30fcd6f70d4a33fbe1732aad07681e89c2ae512cd0071556e
MD5 3caec57f4a94b5f57a92e4fe87c0cb54
BLAKE2b-256 d04b05a799cf25c25523f747c363b0aacb20d1d9780c5f01d09aafd81c5fad6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7e0b2d3c70a7c15299cf39ec527d64657acd3a0ae6c4c408ad2f4280320ec00e
MD5 92a221202988e8f94dc29ad105be4f5d
BLAKE2b-256 b3723ddfe9b49abf0081c2c83eb1d79956eaaae715740a78d82c7614f78362e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 641d8285536cee76f517d26321245798a00a7b0eb8aa7f9e3c86f35af0b956aa
MD5 f5506a7913e3a3e63ca9b5bfdabd12c7
BLAKE2b-256 a45298022d3a47ea325c6094101b4b6a4950018514d4124d11605efbc5019f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46e2206410d3bcff7c3048693ff55f52d05c20a201e7aef89ba1a2ef902efdd8
MD5 ade147ed6cc2e4cce0267bfdba13fb55
BLAKE2b-256 bc87e16678ef317928dd7a3de862cd1f8f9a16013bebadcd0784e8e9e56a2496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5860c8626a67aed79e6751a712a95d5fe648e2cdcc4524de03d31e54618a4142
MD5 de2c86d35d79ef6b91565368bc6cb342
BLAKE2b-256 021102b9bcb9e20a6ce6a12ad4f259b2a7bb37604e9122fe7e3493967efad0ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55ef01b81e182b92a4cf2719f6b98384e15c3bd7d08cf609f02929cae397d4a0
MD5 fb49e2b66f3e9d8a1e229dd512624764
BLAKE2b-256 1897bba0d329e93be71196ebec868e35e586300ac06362079a86370e7034bf7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47d6907dc00d64dd5f791f32f38e30806cdcd7d0d16db04060d7d9694a572e80
MD5 b511187691880a62e6a4879d25994c43
BLAKE2b-256 1d219d52a95f79784d749699429c7ede91deba42b964049034348af896a6fd61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef6c829524b52e16987ce07e4f2e94ccbd27a2fa8826ab2c25c14032278a3075
MD5 f9699c34ddab51f8551d983fb5511a03
BLAKE2b-256 7b27f13c876b49084726d2b8fec2d953c880cbfa7c632fbe7b3946e029d9e764

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 da06ecefaedd76db4bfaa5075bc3b9ca374b053ced54863e0079385548ae7987
MD5 8fbc552c983adc9c9dfa077ff101cc68
BLAKE2b-256 c7434b1c0fff1d68b2e0f4089ce3b40e432394bad6b93f3e7f27747f3b387a56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fbe1178da99eaaa88c9992a2fa3aae9f65cc3c16f1b93bbf043b07bed239533c
MD5 75bfa508b6ffa77781d47ed38a0b4a7b
BLAKE2b-256 5ec694cfc47e613e91138aeae0b310c5a49e7be788a9143404b6bf926190dced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03e487cec776cb1a403844326ed3045026822825fe180e7255f91fa3f595c8e1
MD5 a6574f1f6baab5539f767d15f9b01ba3
BLAKE2b-256 f437cc0304611c92ed5f50ffec43d47cb8e726bae50cd4260253a940d77907a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62fc33dc52ccfdbdb2efae99aafaae2f20ff0d0a7fdaf0a1410e7fab22fd1b70
MD5 4c8da7b26caa52e8469b30276ab70952
BLAKE2b-256 3fb9ba8e3cfa6c8a28b770d4514601a2c25f7723c9c7ab79ba0e63de102dd99d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 968ecba02bcf23181f2996182ba98baca10ada644e79ceb45bf4362013ae979d
MD5 59f024689fc89d756a6067dc6f99b4e2
BLAKE2b-256 bdc615a556c2a532b575e4b0c56db75a5ab1a97c9644addfd0042da2b2989c73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c58f19b05b8ec290d7946bf1559a6bb32fad1d13902440e60adc9f342c07f2d3
MD5 c5766edb1b4dcc9939298769e90f2acd
BLAKE2b-256 3b68a32152b40a4cec26263bd298736465d8db7223c57f163b49aec15c947224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9ddbab71ca7940db05a5e6c39f323126407a702b01dde961ba67ea818163644f
MD5 85409d1ff96f727cc9a86429ecf7e471
BLAKE2b-256 c04f8864ff5008df080c877ba78089d134a4c1a4b5b24ae7af0ff2982d6b250d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce250b691f0fdcfd7b30b68000c2633ea03573a6f57df94572fd4629b3e70be6
MD5 b4ea49ea9967827b6ef6a41755f14ea4
BLAKE2b-256 540a3090f9d7e9d216b25a0de13a83e702760539db3b41640a2641156f091504

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9280ca831789863fbd012cb340db824eb97f6ef79db2705acbde8c0d3729665d
MD5 ed20a9f0d7e77b1d4ea43e2299ec8ef2
BLAKE2b-256 f7259740341d8ccd4de2f91ec64d3a6c84535d2b6383715e0eeea44995cb7d91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 64287f8dfbf5830ae72fcb5763643855a099594a24e8655ce977c3eef174c7c4
MD5 fab8a49fb33a59d3ea5b2b5b2f2695eb
BLAKE2b-256 96ba0861c8fcef2745c5e7fe0e902b30789a5ffd248148eae255716774102936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 246db8b2aa1ac50b06cd6d5ce17ed474fb26869fb5ef49d4fd3ca301fe9ad2fb
MD5 63f9781e85d71ebedb84100a01a40f73
BLAKE2b-256 b2b089671f2f3991d888d2f965449dbd9c2d9b621eba0d8d34086f0b1340c639

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90f1188504a12649af10adfeaefe4b2313d5d47f014ca2cbeb4137962fffd8c0
MD5 8800a11cb045e5fb2c98997efa462742
BLAKE2b-256 b2de9735dbb744fd9aa95a80678c8ec69d8399ee6fd9138cb782e4c5469e733f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f6acfebb36a96ad6c08c647991bbb64e16184ef534b61cd61ab8160efc678acd
MD5 a0cbf0ef14659f65db286a838eac8fda
BLAKE2b-256 620490805d7ea4a6452db9c32e570ca21f0a7484f51564eb3fa762267abea21b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43f07a06e69bc65e88195ef990cec7ee80a5e458545f3c6fd0e30668477d96de
MD5 63eb6fbec7f0467468a400219f8e4fff
BLAKE2b-256 07b9a0483dbdfe246082a924d463fbb70a530014afda077ad9c033cef2a5f1ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d0ff11fd29b758326a38aa734bf71fe36a18ce0c2ae7c9af54f32d1c0c718ae
MD5 9831844a068700a496490fbbbd20fc7b
BLAKE2b-256 a118381d9c63b2213b388db55a47d2dd282d04c8f7e3a2c1dcdb01fd9147194c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 016757f40df8745eb7dcf36f983eb4a1ee1a6ef16f25a24afd72c6371a63fff7
MD5 4d489089a34b05e417cc485c055d8148
BLAKE2b-256 2188f039dd1d4ca1a7952006e69929e7a213ef9b87d1a777d166b0da55a98854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b76ba2d7705fa057f5111c62e56abe8c65cf6edcf600cf1c7e3f507f2119be84
MD5 b183b1034a061c537929e924187a1c50
BLAKE2b-256 0e224e531f58562af061e0926948b3444f80e4e443cee47a875cd2a8a0356d26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c113be664d9c1dcdb46d82c07dd2c9de474e187d389a178da56e1339a4aa2c3
MD5 3e2a222eba6c03755dc9e82e9d326ef9
BLAKE2b-256 03f96e76462dfed3af62f4e98b5fc804da5c6f0a09cfd45066db5f7058590849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 83a4e130eea8b14c3a64e6854ae094d5e2d0aea1a610dac3d409c87b556b874d
MD5 49fa297759f91cdb74e783e576d2da5f
BLAKE2b-256 ef82b14c9f870de63b1e4a0c820afb160cf56b03c5c563d301a46e02c93f2632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 969d6e7bbbd67bd764d135655f3d30c66ae9e4d0e4f97406b5e0e336e000cd3b
MD5 1676cbd15d0b049af9a315691cde9606
BLAKE2b-256 0411255fda2a78e3f3e89d6389685825024a3fa5a21d593d37c7ff030e0f9af1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9462981720124f81bd04436051432ca0c610293f9075f90472a8a7ec1f03b72b
MD5 1bd58b03edef1e35bc2935bc6ea23ecc
BLAKE2b-256 36250929e202aa99e60283a1dca9bcd30cec523d09b85a5f12ca8094a77185f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3876637595396aa12a0a3d061a60766359e59643cfdc24e2a6d8db2ff5f534a8
MD5 aefbe00a7ddc32c3097e9f979a26d46c
BLAKE2b-256 d5baa7c08b26a46282c338aa5852011df69dda4152cf48899a0a50a53ab6ddd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ade4c6127bff89f596ae63342efeae7a9e5c08e5a929056abe3d013508f08bdf
MD5 046c91bcf92805ff625bdec217ab8428
BLAKE2b-256 827f1e04e48bdabdfec562b6e70ffbd285feee61acd7a6a797c4f1222d889a70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f0bd5a8c755cac96138a913c1c3176a6d1a4a4194f7131e2b326a032997fc8d
MD5 a068ecc39bade1c69daa1b81d13ed6f8
BLAKE2b-256 4418edf84ea7ae052cda8ca7f759896b18e731561cc97dbfa574b702020e0c1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23e3878adbd0564cf830e10a94e279182002a1e46590545baab9d556e623ed9d
MD5 8ca16ccad00f8ffde77bfe1353089882
BLAKE2b-256 0c701fbf5853d12a6d2409383a6ffca61c3ad7fabfbc20bb545777b9c60a6405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 89b71ca669624bedb97152e0c0333305d0d02157d4e2a26d1bf30a53933ea570
MD5 d2e06b4b46304b5321067fa317fe5285
BLAKE2b-256 43af9b31c2d8d82663cfea1d4a7a5f29b27a6761c4e5d104149f6640d2da4332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a5e4487d18dbdfcbeb2e542d31e60f1eaa46d11459824f7254d4c519c9abee3
MD5 2248d1163c62e64ef84b8a54743e728b
BLAKE2b-256 d552e8595cc4e192f52bce443af7356a7d7ff4262ebe0605d7517ac9758f62ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 966c8c9d1b8ef839a92414af2927c64df99df47f23d374c3d3cbd2440b4b10a8
MD5 e20cb3224d9345f77a9a3e56bb4f9b76
BLAKE2b-256 309aae71f6d4b6c633bef6ceb2452d64e14ee8fbb880f26959273f9cbedf1611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b6dab31317bba09eda643fa775dce995a8b2382b7f264752a79dbe56b48090b
MD5 7333efe43a2fe5158906b124628bd709
BLAKE2b-256 216dcef9fb684aac3e38814ef91843d6d2017488b5e0fbc2ad9fdfac286d39f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 151e00454023d9b4f6e3be3ae0326234ce5683e8c6bec6705418d9a094e642ab
MD5 312ef6284ac4404a27a5c0c80aba2472
BLAKE2b-256 0ef9e6b29c1e7268586031e0d5ae4dbda3425bae56afc4217617afc523a3b176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab4bb2675eac0253ff620a28fc74c5a50974bde5b74c778bc0faab63e4632d9d
MD5 c9e7eddab68fa18bc61ad00fe27956fd
BLAKE2b-256 702a0a30586832e5586d95e1dbdbcb1190adb5b7742bbcb2e1a508714c81937e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bc6f493947cb5baaa102e3d694290235d2f18755c40403ea383509090cbfc981
MD5 2ea38388739435e039f68c2627d52c22
BLAKE2b-256 a876975c069f549ccee3b213720a0b9c50972c4643a1dcda40fc3f267ba15d1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7ac86a787331d49281061dc4a7800afa315d059acc263f0444052e53fa855e5a
MD5 23a90fcd20ef551e272bd4bc0acc1077
BLAKE2b-256 137ae27c64585c20d7bc43f2ee8b6f0f70a2d0e6d47aa1a45723f69d3df6874e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8958249cebeb52db41b5c541672afad007617e7f39f53c6a8b15c12b11e80a86
MD5 1a84e5e652eb6379928ba25e28e5c156
BLAKE2b-256 faa8e4a573958623e950ac8438aa61aae34fbb868df7f2999820e8ef24de9e56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 144298431c3dcdc79bcac2b40f74f11e9618bc68c8b8e5f12cd9c015eb17eec1
MD5 02159c2a24211e54194be1bcf057db30
BLAKE2b-256 bc05407ba4384ac942f414f3b9ca77e5d1cbdeb2f1f06afab758440a0b646837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 21ab3c7da40e77fa752ce07f4ee9a31befd5225b5a3c129749ccab2ea53b21b5
MD5 5334ada1985cb36716d5fbf5b918d848
BLAKE2b-256 909e189a3504d6104847add222422f35d421572484afce5de29e6283beb4844e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5ecc11b1a7513951f3585c7f7d84a835d13b825a465fe2e85e03d36916402d5
MD5 f14874a8b3098c9b728eeab97a6678cd
BLAKE2b-256 57549a8849228acae69583522a6658ed6d51e335d8bfa683dbc051444357ec11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0886d8f6ee843c55c44d11d7e2a2c6ec7e7d0780a24a642d8fc4d87bdc489ce
MD5 7cb7582ab75f3aa1e5eb8aabd4592874
BLAKE2b-256 5aaf58c5e7ee08a049ef1a14289ddbdf237b20870a6e2a57d4567aafdde246f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2aa439768bad091e1a31f0eded3188a97c644d96425b1e0194411cdd0a40a9a8
MD5 32347be333deb986808a5ef538937641
BLAKE2b-256 b4daab248d1f74badda4941cbad2849b9243d015a184090cf1dbdad20370796c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac9b45fc8134684681719725ed8a3415ddc10f958494da59455cd2a4809dcf67
MD5 396b87748cf5200ba7f4cd1c7ad17300
BLAKE2b-256 7c59c78a477d308bd0e62fb4a958a02e6f6b18962fbf83d4c2722b83ef8b820e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 68c6074626c875569b632c54958a12dafa6f509ca09d6f36630eb377c14c6f25
MD5 2c8d07ab0b0339f5c944cf01355271a6
BLAKE2b-256 ba51120feaedc32f02c887008b56140b0a0ba558b603f7d00a83b17c44b2f9a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 46a9ca851aea60cfd8335d5b76799c615fa368284a02c2d20101468cff273623
MD5 4a710631f866e20e838f50d6a269e85b
BLAKE2b-256 9d4a3f93de493b6bc3bc2028cb4ca249d692c4d4b4e5d77f98e2783db80b80ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11046fb25be89f0e9069c54027e910728668e4ac91a25aff85ddbbf577450320
MD5 032701c34a883a033f25075ece19f6aa
BLAKE2b-256 2f183a8b4d4842d0632c98cc56c93f5ad812dcf1cdcac5b7a9e65969e2e9052d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3f51268738b3413c7d2cf7d9acd9b49bd1af88729e1c388544ca08efda4616e8
MD5 867970dfba794a098e498d0c4c3cb1c1
BLAKE2b-256 3aa29683bb068a70892fe7f82f58dec307d2f94fd88e5d1714d75df32b499a41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 094107c8aa7a4d1f96a89735a0b027e4aee0886f9dd8a2921fd97b9c07d2c903
MD5 85167593e0a192650184b589a5f05a7c
BLAKE2b-256 152c42c96f9ed9b297217babf0c8e66a50c25337ec6a0d4eb380740aa3277ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a40d645124cfd5530e066547ddbb39e2290b9fccf054dbc44496621dfe699eb
MD5 818acb9262d40867921fbb160a9bc0fe
BLAKE2b-256 fcae38503281d0660fbdda72ae4890db9a742b535c8577296dbbd284b04548c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 050ad4d64b1d395ccc693f9f1fc559842b7d90ce7ea6482408765c29dbf5d39c
MD5 edb2fd2471e1d12b37acdd9c0358511c
BLAKE2b-256 57e30a7b42279deac4304200a8e3c819b633f15d3664cbba73927a6b94eb3270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4964e6892995220298e02fd3ef382ded1b7c5483c5e7d2b2ba3a2726ce552d24
MD5 bf0465c28c1c6fd85058dce8d8a9e352
BLAKE2b-256 7fa75d881166e1cf3418d4e7d7e37d2d248211b3fec4876942a8815a211f1ae1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f3135c496fc307bce67e2c980d57ae2d1e95ad072f0d3de70d207e9455a4085
MD5 12b3558a6ce9bdcd6ade56ef1d220e63
BLAKE2b-256 7e2c5db1731a2be854171fdaba98987f05f4b1bce0cf5bc206c48eb703427361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 455a956b8ffd331f646c6394a857376e0d72fd923b2e9af5ce25d14684418e4a
MD5 ae0e0ceb8b7f135a6532d0d7067da63c
BLAKE2b-256 080dcb7754df143d9142da7e5edf7e16e018f855f3c422c893969d1f4fe4bf0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2328f5d9e3758325d4862e3f0342f74f54da5c758f32eebf27335c2ff43e002b
MD5 f7a430e08db1e64440d9c08fa9c976d3
BLAKE2b-256 21d9208a8aab7b6c72b14cc2c57edd035d843d2a34cb0016513313dbc3307b8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5e7208a8b0d41a01471573b4efba43d2dc09d7a0c203a906db49d648987444a
MD5 75d2ab85d961683605aeef63d8d7bcfe
BLAKE2b-256 81045d6a8963243f074b8925080cd89e78b477f035c0d767e5fe443f68e56a40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f9a8ca80e5de72df20c5bd8c50f2986086c760b86ea08da74fa373fe9776b80
MD5 67301e54147d3cc96042e648a9313754
BLAKE2b-256 7be17a3fe184e633d1010c5ce0bd3a75509767879f9ca5b5a2ca0bf2971911c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f193056cc430ebb8b7c0eba0f0b9dd6ee9acf3de22558231b2805918b8776ccf
MD5 e091ac46424968895618248fc533f66d
BLAKE2b-256 db5c0c5efae2cf7a1cee9cb0255bc8be366787fc80439bd76e80c96c01ae419c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1733bce2a06efdf20f79a4ddb8e13791071549cca2ba58c0f7f5de6867970f73
MD5 7de53f3def1d259b65bdee2d627cd7af
BLAKE2b-256 bc45645a5c149df9fc49af75afd0768d220570eada7ea64ab5721373b4a76dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba72d2c3d16d80a97cc291dde2195c47380b45b86a717ce653a374a65468bf4e
MD5 89251c1c37af562031fa0dc3244f6be7
BLAKE2b-256 ae9abcc1d53d80ddb670d38ae62cbbb9273bde3ba3094f373ae65fc290866915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 855fb3ae447f138efa0cd01d2a7064eef5a2899dfb7847bdeba3e4b54d5e0757
MD5 578c06262c59ee2860254a9513c21332
BLAKE2b-256 5f4741c9c3946e29d6e92c22495ec1ddd9fd24475bf27c57a133b25abfe9de9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfd24d7f3106441e7f0096c7cb779aecb16cba2f2cabe8c0904e5e32a2493117
MD5 d07f6f62465e01cee729b2ae7173f81a
BLAKE2b-256 a1590177e039d7aedddfd9991f52189edaf7557df4f7331d4e64581b546a51ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f533a1177182a594c1957f1907e7eda8c0b47cd6518f21c477d1e198eed10ffb
MD5 81dd8eb2f3e1c5cfb2cd3cc9ed1c1e33
BLAKE2b-256 5a849998b461997e095a902b170e6589f7e66417345f4bb5b48a901b981d11e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4520afea7dd346f3e739cb9a8da5976682a3dda33649773147ae8c4d0915908a
MD5 ce1afe78e87cd053dcf52ba5ddfa9e6d
BLAKE2b-256 c6701524ba37ad3a63735c444b732ca0bd604bf2a4f73e484e230e9b77ef4414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b4c7eda3f7f22c088fb861084661fabfcfcd4f89c9c2f4cf2af2b27f0a69b5ec
MD5 14d8f37e24788206e98411aba69a79f1
BLAKE2b-256 6560e89470f916653b4a83733cbfbb0efbf3871a0dab1f0b3e26d6ec6d846110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f138c673ebeb1fa8596e635ad6a7b72d08e2ee8d173fa76373e0c15afd5f8fa
MD5 e298199a6883972eee9689b6e1e543e4
BLAKE2b-256 60c0ea7629ddfbfbfaccf4cdb2482c09dad4df1dabe701df108ce7310b26059e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a13c805005f9727dd19a16f5dc021ffbca95a33063f11beef20f761868e1a071
MD5 35bd2ba8b395ca88d3d25c9b12e20010
BLAKE2b-256 74959ce852d5502c01d84b215296d269702db8d173bd842fe3d55b8370a6db16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerlawrs-0.0.13-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d50bb74456b3cc627e79026302965b94eabbc6b1272bf7b4028b4d1cfac3ed0a
MD5 ff0df429f3c6712d4982e393fff44cd9
BLAKE2b-256 e8c7e94cf7c7552dcb241fe18446811ce1ede97e83e82c7784f4bcb5e943aa60

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