A fast package for analyzing Power-Law distributions in empirical data written in Rust.
Reason this release was yanked:
Wrong license attribution
Project description
powerlawrs
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.
- 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
- Create and activate a virtual environment:
# Create the environment uv venv -p powerlaw # Activate the environment source powerlaw/bin/activate
- Install the package.
uv pip install powerlawrs
Setup and Installation from Source
-
Clone the repository:
git clone https://github.com/aulichny3/powerlawrs.git cd powerlawrs
-
Create and activate a virtual environment: This project is configured to use the
powerlawvirtual environment withuv.# Create the environment uv venv -p powerlaw # Activate the environment source powerlaw/bin/activate
-
Install the package: To install the package in editable mode and include all development dependencies, run:
# Install the package using maturin maturin develop # Install development dependencies uv pip install -r requirements.txt
This installs
powerlawrsin editable mode, so any changes you make to the source code will be immediately available.
Dependencies
- The core
powerlawrslibrary has no Python dependencies. - Development dependencies (for running the example notebook) are listed in
requirements.txtand include:jupyterlab: For running the example notebook.numpy: Used in the example notebook.polars: Used for data loading in the example notebook.
Usage
powerlawrs 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.
import powerlawrs
import polars as pl
# 1. Load your data into a list or Polars Series
# The data should be a 1-dimensional array of numbers.
file = "reference_data/blackouts.txt"
data = pl.read_csv(file, has_header=False).to_series().to_list()
# 2. Fit the data
fit_results = powerlawrs.fit(data)
# 3. Print the results
print(f"Alpha: {fit_results.alpha}")
print(f"X_min: {fit_results.x_min}")
print(f"KS Statistic: {fit_results.D}")
print(f"Tail Length: {fit_results.len_tail}")
Class-based API
For more fine-grained control, you can see the API examples in Notebooks/Example.ipynb.
Jupyter Notebook Example
The Notebooks/Example.ipynb file 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 jupyter lab
Limitations
- 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.
- 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.
- This is highly alpha code; backwards compatibility is not guaranteed and should not be expected.
- Many more known and unknown.
License
This project is licensed under either of:
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file powerlawrs-0.0.5.tar.gz.
File metadata
- Download URL: powerlawrs-0.0.5.tar.gz
- Upload date:
- Size: 314.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70bbada36944b89f74252ae78cc428b85d2f4d073d237fc502cc5747f7cd89a5
|
|
| MD5 |
4c842756559ab96f9f7d22fe2bf18606
|
|
| BLAKE2b-256 |
a4d46335ae3981a869041b08270a07bc2de6e77d3fd18b3f4ba1e70537c218f4
|
File details
Details for the file powerlawrs-0.0.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 609.8 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e88883e136a5618ab3a72ae02113cf213631180498932139d93aac70d7400bcb
|
|
| MD5 |
33af0f42dd64b67c1509c6057c3fbd38
|
|
| BLAKE2b-256 |
dea4f36b82839a6c6d9ab1b3eb037037d09a1d589d671db063cca9bf26945205
|
File details
Details for the file powerlawrs-0.0.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 638.6 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f94b3621a0f025965183d378f2ef1a1b2028f70ec623aa39f6e1754a0a37e22
|
|
| MD5 |
eaf010c7149a6dc4e067505271678ca0
|
|
| BLAKE2b-256 |
34394dc0bc4f6506df2129397982064ee779b905e9d89bd4690c82df6db40cf9
|
File details
Details for the file powerlawrs-0.0.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 696.9 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd4b4ae9691cc09c64363ff58aecf1d962b0ed2351445e974e3073c8b7482d6d
|
|
| MD5 |
1b2cdf86eeb2fa6999d5823f8afa719b
|
|
| BLAKE2b-256 |
3c008bb451a5f822eda83b2a2f0892f1f04bc6d6de09d1622d99a48a6c30125a
|
File details
Details for the file powerlawrs-0.0.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 611.9 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e49a9d1675d4119156b5488d152aa5ecb7fda6af5a43f5159282f23f339345a
|
|
| MD5 |
f751d09db5ac46d32266b232a8eab4e0
|
|
| BLAKE2b-256 |
10227a4b77f1e64a1b2386786d020f7438477471134ce4926562dab25a481a56
|
File details
Details for the file powerlawrs-0.0.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 438.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b52d6d9bfd5fab6181dabe4a000212a6356cf33b9ed30f625ecfe4cacf0a0f34
|
|
| MD5 |
30145cb1c45fdde8cb11cc40629edecc
|
|
| BLAKE2b-256 |
c0acd67f36fec802363457193e66aa99aac32d3f92c709c2c26dc624dd761bff
|
File details
Details for the file powerlawrs-0.0.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: powerlawrs-0.0.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 458.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7391e88baaada5479d3f5321565433ab8457bbefb4add4e0c6edb3eb5b4de92a
|
|
| MD5 |
ea33081b1a80e5747fbaaa0ea116ac81
|
|
| BLAKE2b-256 |
19a5240dbdf0369cfada96379382bbcfe82bac2f90164eb968f7ec61aadcd49e
|
File details
Details for the file powerlawrs-0.0.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: powerlawrs-0.0.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 560.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73d2ae6a92bf0e22c18c8cab164cb9066fb21f7a423c4ead90c689ed433548fd
|
|
| MD5 |
a7eb8c03efbb7574ee7445fe7fd4dbe8
|
|
| BLAKE2b-256 |
31f902dfa252d8dbf32c7caef55b62faff52e31498f9b4c571322d1bf6075575
|
File details
Details for the file powerlawrs-0.0.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 463.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d55659d648cfbe3e119771dcd26d585ba70632ab85b4c8c7c47fdd9fd72e0fb
|
|
| MD5 |
e82bd19fdaaea9da521170c71b66128e
|
|
| BLAKE2b-256 |
1b20a411d3b8e6a7a3279cd6733aa2b1178381147723e8d8a3e244388fcb7908
|
File details
Details for the file powerlawrs-0.0.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 429.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9a3f469f88e8bf974b3be4e3fece20794ffbd57d4c50fbe13c4557ad97f6fcc
|
|
| MD5 |
416b50fb01ccfa4348047cdea6696869
|
|
| BLAKE2b-256 |
84461da87132a1077c4fd91bece2460fa66a57834aacb8841797f58fb205ac75
|
File details
Details for the file powerlawrs-0.0.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 429.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
faae1d3d18f5398230baea34fbddbe136b561ce1e9ebae3f2cbce05bd98e00a4
|
|
| MD5 |
1cd991093cc92448cc21f441d69ca66d
|
|
| BLAKE2b-256 |
a0e2f338b9d0660371ae29c010c12497a014dfa52380d7a04c4f758e47399e2e
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 606.3 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e76efcfc62842aaad736b78ef27927dfde40c54ac92ce208ea69897d42e60bb
|
|
| MD5 |
51fab81599e256ff476e8181d4d63cc8
|
|
| BLAKE2b-256 |
e0f792df6b3d356e65300a39f2d5390b97049c92640dad8827075651dec6a6e4
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 633.9 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60b4f83ae98f454cb62a0a271bd9e4a5d804bff7a61f4f187f551b7b553b39ae
|
|
| MD5 |
400b599be92d220ab0445afb9601d332
|
|
| BLAKE2b-256 |
1d272a2cd3cd1f8e07f1dff47038416cc1d6931f13428c00b197b15b4f574f85
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 694.1 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af19d760fef7a3aa081ee9714714efcda381f491fe4b343779a56433e1c6dc7d
|
|
| MD5 |
111fc1059c0bb52dc0e7975c7e1f6831
|
|
| BLAKE2b-256 |
cdbc1c5a038d1be2f53a6e61b907708f6572fcc12367f9a6b9b324d1cd112f6b
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 607.6 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
444f8c92653cc208747150af7e249d3e6c24ac502450110f148b1c2465d5f552
|
|
| MD5 |
12059551c1df8daf9ee14dcdc9977a6c
|
|
| BLAKE2b-256 |
72bda9fe0f30050110c1641064ad979f7df19b8ca1d6e4f8fdfec559f47b828b
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 455.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49b20c25d497067006cc7e7352aa5aaa291b9ac6648f6e6cb8d00fa26e1a1d0c
|
|
| MD5 |
c60f675c1fece0db078f9a9dcfa71176
|
|
| BLAKE2b-256 |
18dbf3b1ccf6f29f165607185f8db120930908bf1de5e8b2c0abe13431b1cac6
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 557.8 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d00234bfca26c987865ab94fa6dd72c86353d003e0a99bcf1e69d8e255133c86
|
|
| MD5 |
df1400a1ec5ee6edf68b7fc87bf4346a
|
|
| BLAKE2b-256 |
c5f9ec0745fafdcb3918f2d4eaa0edb4a9245055d744e3930a7a44ff9e513411
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 426.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdaa78033596d15e7ff9aa80f4be1f0bdde9b955bebfcce96f883011f3ccb691
|
|
| MD5 |
e49734faf4084dcc334eea69560f6a04
|
|
| BLAKE2b-256 |
5d11ea935a53f2e8f256627176b6b5ecd16839782793785e80b09758a7d33b1e
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 425.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd96f1f60d54763560decd6f0739f8b6b5826946c6b64b9b6d56e15e89c1c91a
|
|
| MD5 |
20e6601751cd9d77a9a0bc3b2315cea8
|
|
| BLAKE2b-256 |
85a81cc8ba08fa81ee62c986e818fa90201fea545b16248e3611483cd5f84e86
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 258.4 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3305026211a6ecc3b42a761952d45dd89eb26585b28187248fca54ecd2d02b92
|
|
| MD5 |
d4be248e7125aa05cc413099eb92cbb1
|
|
| BLAKE2b-256 |
b5bdb5966e073fb29ffd810d3acb6a38f3b28d33c020c2ba07e17fff246f605c
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314-win32.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314-win32.whl
- Upload date:
- Size: 239.5 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c4ca68dd5f94fe4c84d561063d0d986a18f568a8d89876b421c0cceefb3f8e1
|
|
| MD5 |
09fc50e08a93085d82b6d6826d1fb1b0
|
|
| BLAKE2b-256 |
90357ed7fff2a39d337aae439e0735347339b9d8853115b13e7750bcc752d669
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 607.6 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5039c28851df658b5b135eb7a6481f8bf964d495142be63e0314bf090222653e
|
|
| MD5 |
940311ff9521f2b3a81bc1ffd38af88d
|
|
| BLAKE2b-256 |
9007f3d7344c39e9fcefafb05341d0371e11b95c68bd7e2951b26b5c91c631e2
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 635.3 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0df6c3ff3e75ba7ef9929a52e1af693d59a38a69ada98a9d5790d338ad89d35
|
|
| MD5 |
b054c643fa69352740c6246bce12947f
|
|
| BLAKE2b-256 |
d7a0ee7b6b6225400aaa2d54889cc2a99c6f204e86ded4ba2e206c30df6184be
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 695.6 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b985d589dc2dadbcc90c994e62c35f690c4af2acebaa125fc68d2c5db7c07fb
|
|
| MD5 |
bc676bd99c7ede8af247a764997409d8
|
|
| BLAKE2b-256 |
3f67c625fcdb7cf98f6df2dd232a9f4d296740fc4a9713f81283ef9a907ea9d0
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 609.5 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52757d09e33214af62bf00d151d713f171b13c6a873e2e5212ff2a46867cacc5
|
|
| MD5 |
eb9d2d1bdb92a709bcb49282b9526494
|
|
| BLAKE2b-256 |
38397684284e0f1a4f6ecba5fd7857ed3ce6a66f15b2657a5494676b835700fe
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 435.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3828abea026f19a29bcc286693dbff97ae98d20bcefe0446307560342aabdd89
|
|
| MD5 |
39746f55c82e72f04ece6aa3bcf8724d
|
|
| BLAKE2b-256 |
3e4aa63af7c38521c7fe4b3bca895ab5e85043f819e159a268a1e9fdebb108e4
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 457.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5890a051f542037854218ab0a4834639a3ee8c4170bdb3e83bcdcae011ed514
|
|
| MD5 |
5ca6ed1cceabc421f29b2545e8980162
|
|
| BLAKE2b-256 |
349adba95475e8833e6a37949eb284fb855045cfdd13575223565b9c00eea92c
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 558.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89178d6e0d26b32874a493af9c408e3851249ffde6786a80c3263af4faa19bbd
|
|
| MD5 |
0dba78eb1079526974e11822afaf12d1
|
|
| BLAKE2b-256 |
448e24f5b2790b0189b496cca73a02dbfd99853f02ba58673fdd28ef320b6f32
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 460.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44cc75c8a2784a2999ce5f5f43ca26dd383630688243e97168fc31d55c608f74
|
|
| MD5 |
1fb7c5199cbfb54226dd6efc2d6eff92
|
|
| BLAKE2b-256 |
c632cb2f6f8a49bdde2ffdea7d751e88d46a3608aa52644847a5a8412c4f8d3c
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 428.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c35e6ef9e776ae633d3158c7e72573db1c1313d8a4520b104e7c02e494007c3
|
|
| MD5 |
4c3b6aaa59b54efc7573934381ea0740
|
|
| BLAKE2b-256 |
10354d6055b4d846b42105499d3b913d17a48e55c4697cd70bb3d310aa75843b
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 427.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92d4c08100bc9bbfd1d897cfffa189478cb979661cf8c2edcd2bb2f6510f14c3
|
|
| MD5 |
86b3df83e7c98c271c743b1130eff06b
|
|
| BLAKE2b-256 |
b8b33e5d9df0c57557c04aef12d7291417a545073d02e6a32cf3b80053c33a1d
|
File details
Details for the file powerlawrs-0.0.5-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 377.6 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c3826e8117a87f9ed1c81c536773a45d2111118c250f7d0d6350a2fdb5d4390
|
|
| MD5 |
d3349e71c627af691a181ca1cfd611d0
|
|
| BLAKE2b-256 |
a1cd837e6062073d34bd53ad2ba5a65924ca67ff4ec1574475b5c8de96a2184d
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 605.8 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2ff2d4c68c10141646d77d75dcf96812744f2bcb15cd3d136de426ff26b6826
|
|
| MD5 |
824085fa4bf72fd9acaed1b7956d168f
|
|
| BLAKE2b-256 |
ae7431e2ffd41ce30be459a6a88bfd2138c428551dd19160be1c2c2a157e5a92
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 634.2 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d862d1dff4d1ccb0a4f5e9278c82e1c2141062ca99a13827f1f8bda3ac7ed48
|
|
| MD5 |
8a58b54bef55f2dd483a6c892f16dd3c
|
|
| BLAKE2b-256 |
a8fabb23be1aa9d946a3aa6dd00b2de76a7c412d35b61f57e8f76ac633c6b6f2
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 693.5 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56b5657d87db018cbc68bd09f6d1fc71de170a0051e2aa085cfaa41201a46576
|
|
| MD5 |
c33e410b2e5081530077416d6787d623
|
|
| BLAKE2b-256 |
f1d2964d962d8105055dd2c24e3e074aa219d6d3e5d7818e90e7dc7b71cf5bfd
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 607.5 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8574dcb9e0a409e2be530a44022ef7ce19fea285c04935b3f13aff1efc5eb7d
|
|
| MD5 |
0a885d0aa9aa37b029470404610d4670
|
|
| BLAKE2b-256 |
0f940ca73093458e3818dd9bc63bb35742524fe52e2684d9ddfdeca05663d8cb
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 454.9 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
088a56c8d7502a69202b3dd23edf31ce4f79e0cb35d5cf87f125be249d4eb3a4
|
|
| MD5 |
27a10c18892ec0763d4c3f73494e9d71
|
|
| BLAKE2b-256 |
d4d02b2d50b8f605b9c2344fe8891bc3009cebc2be397707a9eee1cbf52913cf
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 557.7 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9408c79103c89c1732d634c6513be00caba89694a55a1b4fc03a791f62d4ab6
|
|
| MD5 |
03b9aac954f40e8859690a8728dd4e11
|
|
| BLAKE2b-256 |
9c17df856dddb03c42292de1c7b938762a71101910b3a84ec13d3decddb35d36
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 426.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6041813a0245289790177066587547a0c06ff86a325189637697cea08c6e61c
|
|
| MD5 |
d9114447544b0166e3fed25e4620bae4
|
|
| BLAKE2b-256 |
956116b4b9eab49734cc8a8e41e6333e5d4a0f24517cee2a79843596afa1e9db
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 425.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
beeb387158360a6b92781e9aad060f96d78753ebb0a5ec2ad7e84cfda6f8b9d6
|
|
| MD5 |
e04b382dce637099bd1967acc55d1110
|
|
| BLAKE2b-256 |
cf43177dc43723777c76d56dbdda091ffabba819d7942c936f5d284bb8d481fd
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 258.2 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3397d609bef58b25a8b5488be0c2337efdfc33789f797d487039209cf522417a
|
|
| MD5 |
116a913bc78ff1aa46b42d0d2eaf621b
|
|
| BLAKE2b-256 |
c090f27eee4f11a98a63201289e490ca253ad92e5c231b7b8625225c990a001c
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 606.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f071316ecc15c207686ffa31dc64c4034fd8c5d98f4b51602525ef0f493588a5
|
|
| MD5 |
5bf60a62954ae7eae7130882d30f10ea
|
|
| BLAKE2b-256 |
c0fa414c30d64a7a45f73b884bb64743044a237e7d4e4482387e9db41ff12697
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 634.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccf13030c2cc6b9b8c3f70cbaf0d1ac76e6eefa060c89cbc840ae4b27cb67d89
|
|
| MD5 |
b64bca5eb325962a28ffe542d62f437b
|
|
| BLAKE2b-256 |
e490c30c7cd97aa12841f66ef6b690aae9bdf71eda350358edcba985b1218587
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 694.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2cfebe327cf1beb54345bf4cbf60d161c85ccd04477a2738f8c8fcb0106db84
|
|
| MD5 |
b3ae13ac61fc2ab8a0ffba07e436b242
|
|
| BLAKE2b-256 |
db11765a5c50f4d3ad5249a7ad87b2eba0adfdd86faed9d1622cc44b65e9b624
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 608.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f9354ec2468c5979ec3c59e96f1127f7479ff97d22dec82f8400bd36f0d12f6
|
|
| MD5 |
8b8c795cf9a2df0ba75408ba9652b458
|
|
| BLAKE2b-256 |
da1e391b159b59e0ed28b00396a00eec7d184359d6c4ebfa53a86d02322d73e5
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 435.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
724755febea04ae920c9c64f7ab1014565b03d22454f788c7a8a8cb637d31eb9
|
|
| MD5 |
8be2028bfbcc421e1d7cbb264f2f9114
|
|
| BLAKE2b-256 |
5ed8429dc0001684dd5771972d10e0bd75581b69a5d21e0da094bdbd013f1ed8
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 456.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad992ca7a9b92106e8b41635300188daf7136f992dd7405576dd388c76d3286c
|
|
| MD5 |
ed3b5a9afcfc35145d9d6210b828ab5b
|
|
| BLAKE2b-256 |
7bbdce15c26eebcb29304cd2a5da433c78dd64d34111d0e39713c2cd3cf57e68
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 557.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80836c6c4089a68ab12028156f8c6c1e3cd8a95f2d8eea66de7c405c22e96685
|
|
| MD5 |
b1d49543ea35f74627549366037f0377
|
|
| BLAKE2b-256 |
cb5cf417f3dfbbc7b218b4b196d8cc037635e87336e7d43054c0d763c1286a16
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 459.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65796bec95f62c518631a35e4320b47770cffa863d2777efca71641f9f92d794
|
|
| MD5 |
4203222a126044292cb128534fff4774
|
|
| BLAKE2b-256 |
9e293eb9bf95a9a597819da3337a9734449b7a32065dba1c38db19032d2c72d6
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 427.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99a979b705bdc5926a8ebba0fce87d4cc31091ae18d634402bda162b59247a24
|
|
| MD5 |
7ad0ea9bcd80717d797710e24a110b03
|
|
| BLAKE2b-256 |
90763a7e761de0b16c2e6e904143758ce466658c5c7c1a3458ab5af9cc3af862
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 426.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3115053d8f3c101484f8657f15aa1fd8ea0ad6fceee4ba0abac8233192f81454
|
|
| MD5 |
ae4075be09bc31b2e5c3008540871cdc
|
|
| BLAKE2b-256 |
8f5703bb744b79a8e2b56194974bfe444dab5e714c0b1526f089b0a42df2e783
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 377.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d17344cebe7c0a2c97b462b9a940af0e77ac5745120d7344a3a6a2567b9e031
|
|
| MD5 |
287dc60c9c6e8f273b32201ef3123f6f
|
|
| BLAKE2b-256 |
ba668ed8661380f7a99de538e85657f28ee8f7d9fb028f8346a193f4ca488b58
|
File details
Details for the file powerlawrs-0.0.5-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 387.9 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b720915adb11931c361c4b6a360e113498abc5964bd236e7cd19e38651a80165
|
|
| MD5 |
da9ea01b80a372141f332da38c489e88
|
|
| BLAKE2b-256 |
1bed6558f505c3bb38dfb13def67fdf4021034683c7c210642ce437c2890a89b
|
File details
Details for the file powerlawrs-0.0.5-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 258.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efadfde52c6cbad08665ed388e1063017b0b45a2794ede01ff0159213782e03d
|
|
| MD5 |
9d954fa064e480f931f407a9199bc3ad
|
|
| BLAKE2b-256 |
d9d003e09d0b2901c7860de0dfb034a8794afd171ec00a00495f2f0353c50f78
|
File details
Details for the file powerlawrs-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 606.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
019a6abab14a71a385b30b8cde63afcd08b0876ca8f05093cdd79deffc952da7
|
|
| MD5 |
710677d17e8fff8d74cb7bf4a1bd878a
|
|
| BLAKE2b-256 |
c9df69f7b082ec36e756f632646737ef9abff05e02be32f7cf040c225a78dc69
|
File details
Details for the file powerlawrs-0.0.5-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 634.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e893b1293c7baf1c474dc97e2a4002e2f7b2d005a0afde7ad7f098826faeb55b
|
|
| MD5 |
46e786b84928dc6881698bec97e594da
|
|
| BLAKE2b-256 |
60eac5d5e9d640d97c16a6c878fb0f59b60da718ffd18f979b0bc4812bd0195a
|
File details
Details for the file powerlawrs-0.0.5-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 694.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ee2671f7b45dcfd0f3b6a8c18188de7a69a43eb0404436b64c8930c99410dcb
|
|
| MD5 |
0a35d92f54d562f3e7a3bd9fb5b7d644
|
|
| BLAKE2b-256 |
53888d5b7876ce9ac3c297d990d83847747f59a605665e88cd917290a0675b11
|
File details
Details for the file powerlawrs-0.0.5-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 609.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0074318869199f5c952277d3712a32e45c50cb7e5f3bd200e19fefd8f9696e32
|
|
| MD5 |
75e8869b455249a07919397d6bb6640f
|
|
| BLAKE2b-256 |
fc99cc3a204f897c9cc304a8a43a5149003bb0d262caaf9b340250c752620977
|
File details
Details for the file powerlawrs-0.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 435.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f69143fc803b0d55f20a8a986657f99938ee849386d057966015c2e947f3353
|
|
| MD5 |
9e143202c125b78629cb4760e3f10c72
|
|
| BLAKE2b-256 |
5b2a0b574cc93dfc426e40a4e9d8449c3bb49b598a2556e2cbf2087c39a724e8
|
File details
Details for the file powerlawrs-0.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 456.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be3c05f423117523f9629c39d375bd3f95a0696fd477b6a43990e594c5d12473
|
|
| MD5 |
3ec06f695d1e35888114f994e15363b4
|
|
| BLAKE2b-256 |
9a7e8809616c7c49c54f818ee6fc10b3a795f75145848b4225f41f3db59b89a7
|
File details
Details for the file powerlawrs-0.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 556.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ab7c9fd24fb8f5b6334a5626459fb6f44ec17b831ba5c8a8e250cb9e49556d7
|
|
| MD5 |
897c223a81a6be9b7176c330b80ce725
|
|
| BLAKE2b-256 |
12e8dd42f4446d0ce39e1af752aafeece2932a340dde85c7be56854c1778449a
|
File details
Details for the file powerlawrs-0.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 460.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90b3a8a22e8aefd07b618c89b9fdcdd1235cb92236b630d12d831d9d689a1dd3
|
|
| MD5 |
73b735c75ec4e1e175c3fc6bf4883c48
|
|
| BLAKE2b-256 |
95cc90bd95399177e50ea012bb095855fdc0a2c3d44c66f7c4ef1ae1e3099e2a
|
File details
Details for the file powerlawrs-0.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 428.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46c380c0caafc0a2c4954d94b9a44906e3a01507d8bc9e92548acc0412f0ccfe
|
|
| MD5 |
ddaf13e8213f34068ba0fe687db79f62
|
|
| BLAKE2b-256 |
0a52e892f050782e976501b5cebf7daca08a619a13148b2ae25ca84709c93dd6
|
File details
Details for the file powerlawrs-0.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 427.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a0bb9e1c9edf9af41446f087e92585804f7b55b3c407fed017cc36ea4a81116
|
|
| MD5 |
caad8e4f2368001dc94121e5ef167eef
|
|
| BLAKE2b-256 |
9009b8edd1cdb8cb89db73b0c16bad37a03244f0ee339466520a791f0278b818
|
File details
Details for the file powerlawrs-0.0.5-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 377.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
857606294cec826dd8bb07d0790b2f8b4b94d38808ac28b441c90da3448663bb
|
|
| MD5 |
90db3a5e39572f3729721be8bdaf10df
|
|
| BLAKE2b-256 |
53dc7eae081a49f74508fab989b2553c90c496e85b18916041bb7136db3931da
|
File details
Details for the file powerlawrs-0.0.5-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 387.3 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4700fe3cd1c88ef7dfb4bd48fae2c9e1665723ff6218dd5c84630d181eee549d
|
|
| MD5 |
ef6c02e610de34ca57ae0c54c459cc00
|
|
| BLAKE2b-256 |
c168fa9b1301c5bdf0d374577fff5f3dc6206ed6c145f19c84c54e42efe98c64
|
File details
Details for the file powerlawrs-0.0.5-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 260.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5310f3f279e96edf4cba9c9151c14f382084dbbacc57959ce9e54b0b50d15172
|
|
| MD5 |
de2c312bd8629203cf1e3d38ffd286da
|
|
| BLAKE2b-256 |
8941182c798881f95eb1e975b8276f2213929cbb95b89dd2ef6c811720edf514
|
File details
Details for the file powerlawrs-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 609.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7de4a199abccf2d1605dbd15b143ffd3da181398861f492a25f85ad4525d5462
|
|
| MD5 |
3bd5556c97a33de59aeef8d28ce88f97
|
|
| BLAKE2b-256 |
7e679ad6277a21d0aa6f25288ee6170846d3e5420a72071f36a56a38353d66d0
|
File details
Details for the file powerlawrs-0.0.5-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 638.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23c3188b558892a48a596a8f336d0de8bd2b4a4856e49f47373127d772b09105
|
|
| MD5 |
05a0b6769689bd01a98e1a4eb159acbb
|
|
| BLAKE2b-256 |
0c0d000a0a52ab65ffb3f30811795c853093395235f587d43352b804018c7846
|
File details
Details for the file powerlawrs-0.0.5-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 696.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7c9327696c1bf72025bd4399705cca7f6ab8dbb20dc0180a8c6950dc7725b13
|
|
| MD5 |
e80684bee85a194acc41d98ed643a6c2
|
|
| BLAKE2b-256 |
ea981c0cc210293c6596423fca000ba29ed5226cdb646d085706d50d4f51c997
|
File details
Details for the file powerlawrs-0.0.5-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 611.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50e1cc6b670487ef862ed51cc7502ae712f83fb20f0691ecfe062df3d34b74ea
|
|
| MD5 |
a24d17df916296dd4ea53927319dc848
|
|
| BLAKE2b-256 |
6e886d7fa29e4451b536f325b32c655d7fa0b895583cbb5a03bbf9a493d532be
|
File details
Details for the file powerlawrs-0.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 438.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea3e0eeb29fcff34da0842671361358d23fd60664c4796cc43b13bcae5a98641
|
|
| MD5 |
989b86c0f23a3bacb6019cdb5747605e
|
|
| BLAKE2b-256 |
22f5bc00d0c6c44564f7564deb7e09f0a4df17efc2b93f03e6b60e2f3e51b1f5
|
File details
Details for the file powerlawrs-0.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 457.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9be5d741a67aa2afdf988b8a3aeb5d0364e72b981908d606d842062e2cb9bc1a
|
|
| MD5 |
b9c353888c6ad86a9cfd69c74ac4037b
|
|
| BLAKE2b-256 |
0f304c8610b6ce6a16eff40f2fc6259ac031f3715136bfdf6c94c5e3a2d1838b
|
File details
Details for the file powerlawrs-0.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 557.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a68b5ba12ec485cd43e716e419bfb0898ff6639022dc22c4021d2e19f7a7f8c
|
|
| MD5 |
622e9e4bc5953b61cd07b384089ec192
|
|
| BLAKE2b-256 |
2b2f33580355d565d5db208d10346acf41800b7c135087d62f91415a4b9c5329
|
File details
Details for the file powerlawrs-0.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 463.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fda4adc631bdab6553deef2cd123f7a1dd3d12352712f8c73a4559bc01d7cbaf
|
|
| MD5 |
d2b483ceaaaf0fe93608069cc289abed
|
|
| BLAKE2b-256 |
ce8ce903fd706af0b98c3452116ad308506a4cf608c505f3ba013fe4801ef814
|
File details
Details for the file powerlawrs-0.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 429.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33acc2336c9f1f1b9d75b294c020d345aef00ef4c3948cde619d6cb48beb24e3
|
|
| MD5 |
e5f796557d790e2897a0e4714636cf32
|
|
| BLAKE2b-256 |
a3de807a74b7e25e01ebb446f40719ad5e248e580c61b1280cfe7bbfa2f84f59
|
File details
Details for the file powerlawrs-0.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 429.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dd9c051e50931f80832247bcd43b1f734c912826e0e831461b87d995f9c0544
|
|
| MD5 |
5d3e68c598985bfc3b75bbb7904625a6
|
|
| BLAKE2b-256 |
6abaa842923d24a5425ed9a5b193923215a715ee76028913ed5c8e0269a4ee28
|
File details
Details for the file powerlawrs-0.0.5-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 379.0 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67c78dc9d6a0613237b31519522890d992bc80541d6a1ec0628c1df7382df124
|
|
| MD5 |
5386b393ce5ca3152b8d46681d1c0e43
|
|
| BLAKE2b-256 |
d15ecce4ae31f01c0e1c1bf6dea4c58ccba0e2bf43d1ed8baa2face844f8f396
|
File details
Details for the file powerlawrs-0.0.5-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 390.0 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2af99c926760bc29ed3571a487067f5e692c804c78bb1a1a9a3d10b64c77de8
|
|
| MD5 |
24481de8637c96863d3b4def9a16030a
|
|
| BLAKE2b-256 |
225c896746e7716efc216ea171d43846e29cb637dcc2c95be4bee1173a9d5ec4
|
File details
Details for the file powerlawrs-0.0.5-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 260.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c513128af6b50d767fe8489ca78810fee403303d01016a2a323b77a19f5bb0a0
|
|
| MD5 |
0ca53f567effe6e828698f54b502e00a
|
|
| BLAKE2b-256 |
81a777f961bb72cdf249a9e1180cdc368c8be1458001b1f3676499edbf7d935d
|
File details
Details for the file powerlawrs-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 609.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7da6138cb1b275c86f8a1001d9d86640e55a6f0e5f8a377162348384f7473b3e
|
|
| MD5 |
d12f928cabdefc6685caf4091a0ff619
|
|
| BLAKE2b-256 |
061938b8a2ffb3afa57b0f53c2cdb1ed3acf9d022abf6d0201a194030b91a698
|
File details
Details for the file powerlawrs-0.0.5-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 638.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9edb8332c1d2fbdc627193cd0db9463686b09d02999103429c392006c0806e74
|
|
| MD5 |
110538968d1e400e7599f79cee3f0acb
|
|
| BLAKE2b-256 |
148214f505dd897b3435a53b1ab1a378711b1b9fe7c2f053bd73e2c1c6878a5c
|
File details
Details for the file powerlawrs-0.0.5-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 696.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30ca29e5f139a1c8f5c3452b4f1ddcbca533570f62c4c1c6dd39158d8c4402cd
|
|
| MD5 |
bddd11065af932a33187ccc0480d6a14
|
|
| BLAKE2b-256 |
367c5c02faac2cb898f678bff7547705c1860df02aabb0f3a586edbb99316e81
|
File details
Details for the file powerlawrs-0.0.5-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 611.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d06e8f0b0dee17b0f964c9596130c048e6e2e20b0f201ea10afbf4955d419ba3
|
|
| MD5 |
638e19afe74f3ee40bf0f6c4a399ebe6
|
|
| BLAKE2b-256 |
0cfb1329f9eea1bf4a6635760a7b67eb1772135e4c45e0c9569b83e4093c71a3
|
File details
Details for the file powerlawrs-0.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 438.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
817af5bf26a3c474e7e7f07dee565a5412404314f941c4fe7fe230498d6d29ae
|
|
| MD5 |
150e5df5111dcc35c2fe3e03bdfb007c
|
|
| BLAKE2b-256 |
d520b5a9ad5763742571abda1a95f2520a12a8a3ffbc314aae55907008c60edb
|
File details
Details for the file powerlawrs-0.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 457.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68a308605a0a26de6472f5a40430e1dd18b8f27299e8c29ae1173df8c9f38712
|
|
| MD5 |
8fb758e13abad994c1c94e4948595e00
|
|
| BLAKE2b-256 |
9cac433fe19464df5a10aca5c8334c02f9c79ef008e239404ad750e8fe22f84e
|
File details
Details for the file powerlawrs-0.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 558.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3ca43754c831e35ce69d610670132cd71fff2477d8d6a2ca6e5300bf065f84a
|
|
| MD5 |
9b15d8885ddf1dd7ede31f53e163abb4
|
|
| BLAKE2b-256 |
4a18cbd9011570a1555fc68ec73de41f551c9b47154077a103166f85653a3359
|
File details
Details for the file powerlawrs-0.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 463.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42a5f28251559bbe4e90eaa0b569252e40c31b360052c5ef79ad26015a398730
|
|
| MD5 |
ebc2f4530aafd6306c9e2222f9cf4cac
|
|
| BLAKE2b-256 |
802b9d54d6d3d314e7ab3fc85b69c3854e5a74141f53e303ea2c3e40edf1c8e0
|
File details
Details for the file powerlawrs-0.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 429.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33455b43c37ddd7a5a6500863b8b45b41149b4d969c4a1ee3f0c9222079b2b0b
|
|
| MD5 |
52f20594177768eaf87513e786f65072
|
|
| BLAKE2b-256 |
7825ae9148ee7fb9f7e19b4dc76dda1e444156022355d91dc53b8c90d2cb12ac
|
File details
Details for the file powerlawrs-0.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 428.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcb5701142e20a39ee75f9139ec342a2416181dbb68d785e62ac98cdf1933f5a
|
|
| MD5 |
2b77d13ff369e81a770954a921d30098
|
|
| BLAKE2b-256 |
bc90143ecadf5a6cefda5c49dc52b9ccbc85e5dc6ae43853edd846a9e15bd6b0
|
File details
Details for the file powerlawrs-0.0.5-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 261.7 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67c1e60a6608403ba539f47afc43e8f4884b34037520bcf7fbc681ddb9ba2545
|
|
| MD5 |
42211bd55723ffc67846e0b8ce288135
|
|
| BLAKE2b-256 |
cecb229e94a9319ce315c5396e718004bca61e1f12a880fe61e57f4352ce56d1
|
File details
Details for the file powerlawrs-0.0.5-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 611.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78ad7244acd0274c0bbcabcb8d83aaf7018dbfe558d49418587169499c44b4f7
|
|
| MD5 |
d132dddc87c5f2fc55e7528cb195d105
|
|
| BLAKE2b-256 |
134942bf63d85aae35fcbba88c31cb6dd22520890cd64c88c9a79cadbb748553
|
File details
Details for the file powerlawrs-0.0.5-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 641.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca0229ef6fb0fc5d4db67453820fd957b48169fe74073882226bb2fbf4133d25
|
|
| MD5 |
432be76ffc95a6a539c3c3a5c4520f00
|
|
| BLAKE2b-256 |
27a306a26cbf42af8d269b8f75be5f49a06a817752bd12c3669297651eea7d35
|
File details
Details for the file powerlawrs-0.0.5-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 699.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70f18a1a34af35600e16f0b3da0fe4d8bd8c1cf2a31ab52f2c2c16d3c5052790
|
|
| MD5 |
6c18ace3c7f6d2f658f5c9496a9ab857
|
|
| BLAKE2b-256 |
98c438a27a35ddca1d86f8e145a82f3de6d946c6c9df9a98f922c391d2fa578c
|
File details
Details for the file powerlawrs-0.0.5-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 614.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ac45569335cd5cbfee3c27d6ceaee20dd6cb8cd39594221e1ca1aefdbef93aa
|
|
| MD5 |
d45d431bf395acb4d0e24514b13a3a1b
|
|
| BLAKE2b-256 |
7b0c1bd39408d8056727aad5348884f6b8791919145037915ee4c611e780a04d
|
File details
Details for the file powerlawrs-0.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 440.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f12c90f86cc3572b32d2e3ccb0d4fdc88dcec12dfc4b20ce35741ac9f9b5d40
|
|
| MD5 |
57df000ec5fd3c3d39a400be1485f112
|
|
| BLAKE2b-256 |
2f3a26ee93fce7f184c6df764aeae74e5505162eb38f7332483ae8bb197134f4
|
File details
Details for the file powerlawrs-0.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 459.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3dd018b0e80ec1b239f7715495b60433de800877a698854b6a04f2b62ed6f7e
|
|
| MD5 |
ad40d6c0c2d3fa27dd52de26e2e4ab15
|
|
| BLAKE2b-256 |
fa2bbd0553585bed7026d5e0744773f3dacd7027d4247fdf8b8306ae9e3c68fe
|
File details
Details for the file powerlawrs-0.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 562.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a291ede9553413ba3ce778539ce7ddd7e01ac2e481cee5fd4d1907ddcc3308f
|
|
| MD5 |
7c108d14ea1260f7a34b1ff21b01fd15
|
|
| BLAKE2b-256 |
dccd2271016cbf524e4b706edb5ce5b4b5098886067a552a361b7956e2b6eb1c
|
File details
Details for the file powerlawrs-0.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 466.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
274bd3968e04eab472a324236180151d13d37a8aaeccd62b85f37ba3beb37153
|
|
| MD5 |
db3c860c987796746c59dba2b3e64edd
|
|
| BLAKE2b-256 |
3cf5c4f562f36e3622a73b16110f7a4dbb7b1fabe0e7400679f29865dce914b1
|
File details
Details for the file powerlawrs-0.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 431.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6bc4fd84fc598e8131c7700db48f3422bd4d2fb67276b7ee660006f7d6ef8e68
|
|
| MD5 |
b1b0b056552e4036417b9f50bb617dc6
|
|
| BLAKE2b-256 |
3a60baf9c87deca9aed655114debfb983195ac41d4c355c1d009afaa474b432e
|
File details
Details for the file powerlawrs-0.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 431.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c9a78f9c8aca3f363ca81eb5b3712edd72bf6db18bf0dc56f77dba876632e5e
|
|
| MD5 |
ac5690dce2bdaf5dc3e7289d5fd8a932
|
|
| BLAKE2b-256 |
884b31c6a6c7faf525c341f2df809a9aa16a928e0b83566a17859d656ace20d2
|
File details
Details for the file powerlawrs-0.0.5-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 611.1 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c7c6d25187900772a9711bd9dcd720e195580ad187c3dbee97a0cf7cec5a112
|
|
| MD5 |
2969f9355bed56d95e452cd5d16289b0
|
|
| BLAKE2b-256 |
db230486a9b514c48f079d27b049b3b6f032246fd14df33bdcbaa378e5619616
|
File details
Details for the file powerlawrs-0.0.5-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 641.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fadc65d6d1ccd2876713df2b43bf011ccff0a53cee2180230420b00281c3461b
|
|
| MD5 |
f5074080cb1c25e34e1f39c39691c27d
|
|
| BLAKE2b-256 |
fea2b3262b4ec8343cb97d1a921047cbe9bbec1471f0cdbcbcc0b3d7a7ba7a35
|
File details
Details for the file powerlawrs-0.0.5-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 699.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1571ca8ac7d5816b67c9418a802b4788bf15d7800f1731a53c5be39a2e92cfd4
|
|
| MD5 |
47ef8ce83aeccb309e8ae58ef310abbe
|
|
| BLAKE2b-256 |
8527759781147ff00ed1eab5fdeda6e88cba84d22821b6f594914424461f64fc
|
File details
Details for the file powerlawrs-0.0.5-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 613.8 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b76365fea82bf1ecd9bea4ffb213ff09197ede380b0f6262cac23ae60d4ca9f7
|
|
| MD5 |
c9db2cd5eb8b4e7bdd645c7b25e54e80
|
|
| BLAKE2b-256 |
841a9a92e33f150c5770352bbb0dbac782db5c0a8665d7a864fd69e85a0fd947
|
File details
Details for the file powerlawrs-0.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 440.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bd575049b907b0d912e90c9716aa431141a295b83a2a287f0256fab4006d1d1
|
|
| MD5 |
928e90fb46945fd2f810b5f8f6ed23b2
|
|
| BLAKE2b-256 |
91fa13b23eac00ada1de395e8ff7757449b0cb3c06ccca3f6a7f081681b87ef7
|
File details
Details for the file powerlawrs-0.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 460.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1185f23b32c7af1636a7e40bd368454a69d2dfd51c2cdbcf9d79076354f21459
|
|
| MD5 |
9eed5873e9da66dea973070c8fdaff67
|
|
| BLAKE2b-256 |
58e753d05bfe1b99126357eac97523c3addc4534878a7d38375b4a61c28c80fa
|
File details
Details for the file powerlawrs-0.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 561.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9a501cdbeb5d16e811fb9c7baf2314dc6495192082cfe2167ab85080795fe23
|
|
| MD5 |
7184649cd5c83385158838aa51eee7f1
|
|
| BLAKE2b-256 |
39ce4c6f3dbca19ac90e6a48f96afd5859220c3b3526ada0895a1b355b8c2cb3
|
File details
Details for the file powerlawrs-0.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 466.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8baa904160248b49acadacafbca616285d5798a8a1f0d8748cfe5a6db2e7a087
|
|
| MD5 |
551a924b373d93e94da8f4e1b8919257
|
|
| BLAKE2b-256 |
dbc04460e4da5fcfe4c33ce3616aec0846e7b704f4a5fc0070ac8a8ccd614faa
|
File details
Details for the file powerlawrs-0.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 430.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3302a96c0a6fdc3832fd232a2563d527ffef62fdf5b2f3ef30aa34eca28e345
|
|
| MD5 |
d77bf1337858787834b1c717dca20c62
|
|
| BLAKE2b-256 |
25e76115729de532aef9583ef240d326c2fbfd9009998f75befba89862f43f22
|
File details
Details for the file powerlawrs-0.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: powerlawrs-0.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 431.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee88904c443dceb3ec9b8499b3849292c7826d5249a50df324755f2f0f047bb6
|
|
| MD5 |
00b0d56546533b9059b2dde452076a7f
|
|
| BLAKE2b-256 |
9c1be6d52c96a120711cf36f2cf2de89b89e19c50f3a2a7b6ab91ade171e507a
|