Unofficial Rust-based implementation of H2O benchmark dataset generation
Project description
falsa
An unofficial re-implementation of the H2O DB-like OPS benchmark datasets generators but in Rust. While the original R scripts are great, they are memory intensive and does not provide a simple way to run them. False provides a ready to use Python CLI app with a Rust backend and an ability of the out-of-core generation.
Installation
Pip install
pip install falsa
Usage
falsa --help
Usage: falsa [OPTIONS] COMMAND [ARGS]...
H2O db-like-benchmark data generation.
This implementation is unofficial!
For the official implementation please check https://github.com/duckdblabs/db-benchmark/tree/main/_data
Available commands are:
- groupby: generate GroupBy dataset;
- join: generate three Join datasets (small, medium, big);
Author: github.com/SemyonSinchenko
Source code: https://github.com/mrpowers-io/falsa
╭─ Options ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ --install-completion Install completion for the current shell. │
│ --show-completion Show completion for the current shell, to copy it or customize the installation. │
│ --help Show this message and exit. │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
╭─ Commands ─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ groupby Create H2O GroupBy Dataset │
│ join Create three H2O join datasets │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
Simple example
Here is how to generate a Parquet file with 100 million rows and 9 columns of data for example:
falsa groupby --path-prefix=~/data --size MEDIUM
Here are the first three rows of data in the file:
┌───────┬──────────┬──────────────┬─────┬─────┬────────┬─────┬─────┬───────────┐
│ id1 ┆ id2 ┆ id3 ┆ id4 ┆ id5 ┆ id6 ┆ v1 ┆ v2 ┆ v3 │
│ --- ┆ --- ┆ --- ┆ --- ┆ --- ┆ --- ┆ --- ┆ --- ┆ --- │
│ str ┆ str ┆ str ┆ i64 ┆ i64 ┆ i64 ┆ i64 ┆ i64 ┆ f64 │
╞═══════╪══════════╪══════════════╪═════╪═════╪════════╪═════╪═════╪═══════════╡
│ id038 ┆ id850817 ┆ id0000837021 ┆ 90 ┆ 8 ┆ 898164 ┆ 4 ┆ 15 ┆ 28.133477 │
│ id095 ┆ id73309 ┆ id0000312443 ┆ 3 ┆ 75 ┆ 177193 ┆ 1 ┆ 12 ┆ 91.555302 │
│ id055 ┆ id248099 ┆ id0000141631 ┆ 12 ┆ 94 ┆ 132406 ┆ 1 ┆ 3 ┆ 64.543029 │
└───────┴──────────┴──────────────┴─────┴─────┴────────┴─────┴─────┴───────────┘
With falsa, you can generate many sample datasets.
h2o datasets
The h2o datasets are used to benchmark query engines on a single machine, see here.
Here are the original R Scripts to generate the sample datasets. These still work if you know how to run R (the large dataset generation can error out if you machine doesn't have sufficient memory).
falsa is good if you want to generate these datasets with a Python interface or if you are facing memory issues with the R scripts.
h2o groupby dataset
The h2o groupby dataset has 9 columns and 10 million/100 million/1 billion rows of data.
Here are three representative rows of data:
┌───────┬──────────┬──────────────┬─────┬─────┬────────┬─────┬─────┬───────────┐
│ id1 ┆ id2 ┆ id3 ┆ id4 ┆ id5 ┆ id6 ┆ v1 ┆ v2 ┆ v3 │
│ --- ┆ --- ┆ --- ┆ --- ┆ --- ┆ --- ┆ --- ┆ --- ┆ --- │
│ str ┆ str ┆ str ┆ i64 ┆ i64 ┆ i64 ┆ i64 ┆ i64 ┆ f64 │
╞═══════╪══════════╪══════════════╪═════╪═════╪════════╪═════╪═════╪═══════════╡
│ id038 ┆ id850817 ┆ id0000837021 ┆ 90 ┆ 8 ┆ 898164 ┆ 4 ┆ 15 ┆ 28.133477 │
│ id095 ┆ id73309 ┆ id0000312443 ┆ 3 ┆ 75 ┆ 177193 ┆ 1 ┆ 12 ┆ 91.555302 │
│ id055 ┆ id248099 ┆ id0000141631 ┆ 12 ┆ 94 ┆ 132406 ┆ 1 ┆ 3 ┆ 64.543029 │
└───────┴──────────┴──────────────┴─────┴─────┴────────┴─────┴─────┴───────────┘
Here's a short description of the columns:
- id1: 100 distinct values between id001 and id100
- id2: 100 distinct values between id001 and id100
- id3: 1_000_000 distinct values
- id4: random float values between zero and 100
- id5: random integer values between zero and 100
- id6: random integer values between 1 and 1_000_000
- v1: integer values between 1 and 5
- v2: integer valuees between 1 and 15
- v3: floating values between zero and 100
Here's the detailed description of the table:
┌────────────┬───────────┬───────────┬──────────────┬───────────┬───┬───────────────┬──────────┬───────────┬───────────┐
│ statistic ┆ id1 ┆ id2 ┆ id3 ┆ id4 ┆ … ┆ id6 ┆ v1 ┆ v2 ┆ v3 │
│ --- ┆ --- ┆ --- ┆ --- ┆ --- ┆ ┆ --- ┆ --- ┆ --- ┆ --- │
│ str ┆ str ┆ str ┆ str ┆ f64 ┆ ┆ f64 ┆ f64 ┆ f64 ┆ f64 │
╞════════════╪═══════════╪═══════════╪══════════════╪═══════════╪═══╪═══════════════╪══════════╪═══════════╪═══════════╡
│ count ┆ 100000000 ┆ 100000000 ┆ 100000000 ┆ 1e8 ┆ … ┆ 1e8 ┆ 1e8 ┆ 1e8 ┆ 1e8 │
│ null_count ┆ 0 ┆ 0 ┆ 0 ┆ 0.0 ┆ … ┆ 0.0 ┆ 0.0 ┆ 0.0 ┆ 0.0 │
│ mean ┆ null ┆ null ┆ null ┆ 50.500471 ┆ … ┆ 499977.133559 ┆ 3.000173 ┆ 8.0002679 ┆ 50.000731 │
│ std ┆ null ┆ null ┆ null ┆ 28.864911 ┆ … ┆ 288668.423121 ┆ 1.414225 ┆ 4.320694 ┆ 28.868118 │
│ min ┆ id001 ┆ id001 ┆ id0000000001 ┆ 1.0 ┆ … ┆ 1.0 ┆ 1.0 ┆ 1.0 ┆ 0.000002 │
│ 25% ┆ null ┆ null ┆ null ┆ 26.0 ┆ … ┆ 249956.0 ┆ 2.0 ┆ 4.0 ┆ 24.999205 │
│ 50% ┆ null ┆ null ┆ null ┆ 51.0 ┆ … ┆ 499949.0 ┆ 3.0 ┆ 8.0 ┆ 50.002307 │
│ 75% ┆ null ┆ null ┆ null ┆ 75.0 ┆ … ┆ 749987.0 ┆ 4.0 ┆ 12.0 ┆ 75.002693 │
│ max ┆ id100 ┆ id999999 ┆ id0001000000 ┆ 100.0 ┆ … ┆ 1e6 ┆ 5.0 ┆ 15.0 ┆ 100.0 │
└────────────┴───────────┴───────────┴──────────────┴───────────┴───┴───────────────┴──────────┴───────────┴───────────┘
The h2o dataset is useful for group by benchmarks. For example, you can use id1 to do an aggregation on a low cardinality column and id3 to do an aggreation on a high cardinality column.
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
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 falsa-0.0.6.tar.gz.
File metadata
- Download URL: falsa-0.0.6.tar.gz
- Upload date:
- Size: 524.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b037941886755a73a77f3c80ecb661ee4732085bd68947c0ec788f77b487b32
|
|
| MD5 |
7a74f966f11d207582dd24a40f40aecc
|
|
| BLAKE2b-256 |
36650f51f3509cfe4f8cc5b9b1a7ba614a5c0ca0b7ada7a2f8de4275ddc5d979
|
File details
Details for the file falsa-0.0.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 605.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afaadf6ac8599bbf2e42f54bccda76e9f0218f6d6429085186d38d243c6b28da
|
|
| MD5 |
ceded614c05500b73e60f20a5747ce7d
|
|
| BLAKE2b-256 |
370394f5e53369796b3e93c3d942d6c010f3215957330a697a2c715fe93f2ac6
|
File details
Details for the file falsa-0.0.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: falsa-0.0.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 633.1 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a8e8cd40e0389f56c2fb41bd0a0c2472c2365265b78966c7f187aaf3409558a
|
|
| MD5 |
ba7c173df6ba5dc2d9a45568a734b426
|
|
| BLAKE2b-256 |
dc5c88e1a1d2c29b83e0c5da30960815f830dd79694c474f6b7ae2eb716a8e65
|
File details
Details for the file falsa-0.0.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 700.2 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9623ada575625e65245488ec6ef7cf09e40e134245c5ab8a440267338212f73e
|
|
| MD5 |
638bfcc967f53fc357f22042bcc13dd7
|
|
| BLAKE2b-256 |
08cc3a7d98bd4f8569c9ec683d358379b6167e19911007263fcc45e4f414f407
|
File details
Details for the file falsa-0.0.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 617.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04109d8e1c58cd8d87d513546fa945db4b5883e1ddc29a1dc14b9bb999991d6d
|
|
| MD5 |
73b65b015c94d6a4ac4ffd95e854bb1f
|
|
| BLAKE2b-256 |
f76a0b4a3903f7c8ed15e2f5c8b4d226e0cf214f7f32dca1b74a8064f6d27c47
|
File details
Details for the file falsa-0.0.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 598.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b552b1525300b14abd2400dc692cfb79de6813cec725deca03aaf251ca94111
|
|
| MD5 |
6e016e67bc844f4e84c5b0e0bb190ed6
|
|
| BLAKE2b-256 |
54cb81fd6f2d542ef1833485d95f766c29bf5a9bf73213d4c6dad8b2c4541327
|
File details
Details for the file falsa-0.0.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: falsa-0.0.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 476.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8d63db146847709114032382c4cdaf7274654781d3a56732eb5e622350654f2
|
|
| MD5 |
1e629f2fca62c5b9653d363e58b80a8b
|
|
| BLAKE2b-256 |
f15df06f625cb2e9af5769f0f755154469e9a280b9ce6bedfff15564bce9483a
|
File details
Details for the file falsa-0.0.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: falsa-0.0.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 651.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13c98c49225232016dfd8bdd0e5f2e10649f9d0388fde9b1020b04d7409c9078
|
|
| MD5 |
ad41256f1d89bb51123c2facb99a7f48
|
|
| BLAKE2b-256 |
cba46163320b1130da9333f851633a6f7b726ea42974bafc6db333fc3c0a69e0
|
File details
Details for the file falsa-0.0.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 436.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47a610301a11f1b53c12092d97b5dff80e576b1534883e62a02d019bc759d06f
|
|
| MD5 |
85687b7048576cd44b493e60509f72ce
|
|
| BLAKE2b-256 |
b3e827f367c60dd662e009dd2945c1fdbc74fad277c6b668d02ee004ba41e2ee
|
File details
Details for the file falsa-0.0.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 438.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b8714397240eeb05f490b8e2c1ca6592edb2e6c5e6652baaf1d29ea4bd2c4a6
|
|
| MD5 |
b93bdf4cec930d55196b13812ab8bb92
|
|
| BLAKE2b-256 |
8aa6a59e8d6f27c049a0955f3b7d7a229633213f485b0175d6a348fc66047bdd
|
File details
Details for the file falsa-0.0.6-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: falsa-0.0.6-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 461.8 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
535f9d6cc9a745d7aed0b108f8447de1780e548fc30fbeb0d360f8403ed86b6e
|
|
| MD5 |
1b1bbda2f0a8e713bc2607667afbcfb3
|
|
| BLAKE2b-256 |
973307809af6ff17d1fc3e059ea1a73a76cc5593661832cf0c91498be9bc8172
|
File details
Details for the file falsa-0.0.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 605.6 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c8d7829728e199338b3740027275c8ba0887a9bd49da92815a76f5d0a82ec7b
|
|
| MD5 |
81dab8d1654037338b24c71f45653900
|
|
| BLAKE2b-256 |
9e3e212fe573cf352e5c04774b0e058fe818a96697c5cd23126215e1942cb530
|
File details
Details for the file falsa-0.0.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: falsa-0.0.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 633.3 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e3ac36ae3a5f0ab4b19a446791521cb869710879fe7df4cc9fd8fd5da3d2059
|
|
| MD5 |
1335da6cfaaa84a704a0a333e00b406c
|
|
| BLAKE2b-256 |
fbb82caf8c13de528797e2736ad590fd7c26f64e3e3344d2d07fe0fb02418083
|
File details
Details for the file falsa-0.0.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 700.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49926cd76d782a54215c447cdd21085e153826e2579cf0ef2ddcefe10735ad38
|
|
| MD5 |
1c5a13ab621300d14917a52ea636eec4
|
|
| BLAKE2b-256 |
04e48d97c5f103efc5299bc2b719831da9926ab3630db44127c6c50a974a2ad2
|
File details
Details for the file falsa-0.0.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 617.6 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebcc1ab9761438d422e24530b8d4359803265a467342b0e75347a3fd1ee3a6b7
|
|
| MD5 |
89bd3dd3ec7f3b18939e2a75d461989a
|
|
| BLAKE2b-256 |
b93c72c6c06027fae40ac454e38ac7bfbe645ee6f6aa11f5b39534fc29f55b43
|
File details
Details for the file falsa-0.0.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: falsa-0.0.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 476.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e3b05fe3a6f449116b479060d2ccc6ce617bf8b9f9b4eacd963e5effc41d0ba
|
|
| MD5 |
054eeb16d3d33c049ccf34e410fd77bd
|
|
| BLAKE2b-256 |
ef5fcedd8d5d72bc9dd6d354b8abf37e767542dbd572c9b651ff41618b9b7f6d
|
File details
Details for the file falsa-0.0.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: falsa-0.0.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 651.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
335f8bfc4cc0eb70cb297d3618e4c34aa2f305ea3b85d3980c23ca554b2e0f87
|
|
| MD5 |
e6d394bc1d8962b50b9b3b756abe831d
|
|
| BLAKE2b-256 |
75884da4ed3de4c2983b62cef792ebb2bc7316615c4e22b56c0c51bc34161079
|
File details
Details for the file falsa-0.0.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 436.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b77ea7efade1bb872e03ee4dddcd2134c4059d7db42b100ba11340bd5650faec
|
|
| MD5 |
ed1bb352c912a8b78805472c937e7a35
|
|
| BLAKE2b-256 |
0dadcb0ea1046c2c23a8f075640ef1a5b4a0bd8b5c68bc9869b0aaaa93d99d5c
|
File details
Details for the file falsa-0.0.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 438.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95c957d9e9a4fcfcea7c06fb8b8eea55f6277fd89d81cfed04b7974727bb1ea1
|
|
| MD5 |
76f798457e041c84ebf82de671517ccf
|
|
| BLAKE2b-256 |
f3b5db470dde7757078d43a9ad82a609ea95308fa84bd671f2d5c88a6e8268b9
|
File details
Details for the file falsa-0.0.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 605.8 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92bd72e33b59f26ef4e13d251527409335307b44c6bfd5f74dbd03b3df94beee
|
|
| MD5 |
51677a8176f9a90c33858c07b6bf530d
|
|
| BLAKE2b-256 |
4ef98a1cc8de3ffe2df5fd02c77eb97dcb161e67bca82e07f1770f8428515d9a
|
File details
Details for the file falsa-0.0.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: falsa-0.0.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 633.7 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
166af5f20c1d18f6f342d6fc508fbefab1e761d443b50a17c2de253baf7ccf63
|
|
| MD5 |
943c595f85e8a8305ec1adee4204f52d
|
|
| BLAKE2b-256 |
1cc30f3cb536f2900eb4243e5cf3bc8d1a6e6ffc1109698ee5f2060db952a006
|
File details
Details for the file falsa-0.0.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 700.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a9a61d088e2c25701682da20fbb8fb4ddcaa131f1bce7025859c6bd18fcca61
|
|
| MD5 |
77e8a6f342f745863ef16f5b48ce617c
|
|
| BLAKE2b-256 |
3baef2b7132c90dabacc215806cc3c938c4a23a6fb1feda6816bd746ba726e48
|
File details
Details for the file falsa-0.0.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 617.5 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ccff94329cc74477597d85c8d7bf39e285a5d8ae46703cd1c7c9f2edf9e9317
|
|
| MD5 |
2bf0dd34af03223ab5a22dbeeaff729a
|
|
| BLAKE2b-256 |
dd66b1c9521ba33b28a3b817d001bb288b5c8914af011b2f72417e6e22518593
|
File details
Details for the file falsa-0.0.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: falsa-0.0.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 477.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33e6f24e2435932bf1c2d6f570fb4aba4e8925e404e2028db75de364946138e8
|
|
| MD5 |
94f9bd1c3c7007491d6de794b583332c
|
|
| BLAKE2b-256 |
6609495bd2a6844e0efb0817af919b4f22d476811b9ce6fbab29748f19028366
|
File details
Details for the file falsa-0.0.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: falsa-0.0.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 651.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca2af4c3a183802c749d04c4aec466687a7a5c77a326ef23b509d464fec453a9
|
|
| MD5 |
285a471163e45cec1249a35918af6466
|
|
| BLAKE2b-256 |
6fbc05c3dec16a34f39de4f421020c97fc202df622190a57bde9616a9b511cdd
|
File details
Details for the file falsa-0.0.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 436.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7db0c9c886ec2dcf65836161f313fa6d4f79e988042da3af2d4bb1dfd78ff1b
|
|
| MD5 |
f80429599da7942b5d369b05c92dd94c
|
|
| BLAKE2b-256 |
b58e79a87d401f84c419dfa2d4eb05469bee87f8dfd451f036c0e4133918ac0f
|
File details
Details for the file falsa-0.0.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 438.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71425b405533431ce92f2158579c80c438c2febcfd7e22564fc2728a80f3e5e0
|
|
| MD5 |
53affc88e43f389c02ad483087100549
|
|
| BLAKE2b-256 |
6a547bae0030e0a0a9271e91e3d9c2c915734623be461e52e9de8b47020edbaf
|
File details
Details for the file falsa-0.0.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 597.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de0bd27c505b47c8870463ef9376e52e72d54a7f3bb7b393e6a0f5fe8227c95e
|
|
| MD5 |
e853267bf6878dfb4c8a0ff777dd0fd0
|
|
| BLAKE2b-256 |
8b476e1a6a2cf730e7cf5b2a5159066590a5151867b0cf1c913386285b39d52c
|
File details
Details for the file falsa-0.0.6-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: falsa-0.0.6-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 461.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf8f50d6f8f65009ae5b986f4220dd823cb22d704221e29ca91a06dd0c178599
|
|
| MD5 |
80a6f53529f670f587a3ad4b4d5f04e7
|
|
| BLAKE2b-256 |
a0a03d697341c44c238e635af6f4ccc87d1150edbb5374c67e6f7c86c9818336
|
File details
Details for the file falsa-0.0.6-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 604.3 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcf31b451835037ccdf6b9adb9353d99981178d6e96601b6b023fbac1db74342
|
|
| MD5 |
8be4e20ae4237b6b9c983497e3dc4d8e
|
|
| BLAKE2b-256 |
5470a8a0bda4afa93bd602ce05efe3f615f25e2145880e5abb0f8138312fcaed
|
File details
Details for the file falsa-0.0.6-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 631.7 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4953ae9f87aefed8a3936562dbab20dd6b3a6cdadf32f009ef552e9e5df96a56
|
|
| MD5 |
44aaf1f5842de8b4d851596d307191dd
|
|
| BLAKE2b-256 |
346f723bed02c00e9b3741a2b8fdbbca1afb7ba3fc2ad398be85cd477408f611
|
File details
Details for the file falsa-0.0.6-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 698.1 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e2982b9ef053fedca216f6abeb5d7325d73f4df24540dd9a0fe8463a9c80abd
|
|
| MD5 |
b4210d823765fe13a039187b47768800
|
|
| BLAKE2b-256 |
2c6d449f03ad7b5c31f7cac1fc7177419a67d0c53b7733c83034772ca491b697
|
File details
Details for the file falsa-0.0.6-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 616.0 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0214f94434924e03308b48a81ddf246d0c8c9e1e4b323184bb417fe81df190e
|
|
| MD5 |
21f09588a7c7c4d8ba60d7677ca1abe7
|
|
| BLAKE2b-256 |
e1df80bea42472af460b2b18c3bb547ae5eaf55bea9eff63f5abf266dca51b5a
|
File details
Details for the file falsa-0.0.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 474.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d7aa02f407b473fe81a5e94d3cbaa5ba34e243da35593fbfb1b71351093eac8
|
|
| MD5 |
edf76e21d763ba9d8b8ed0ed817f5e8c
|
|
| BLAKE2b-256 |
f32a19d66b0b38232d6230ed163e9c24c55683f38348930e25c7e36188b9e7a1
|
File details
Details for the file falsa-0.0.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 650.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
731acd74b9b41e9bca388176c7e7be6ea48b5ba136f149f41bdfaaaaa53a40e4
|
|
| MD5 |
1fa291128c4ef376c9ad2781fe0ae66c
|
|
| BLAKE2b-256 |
466e7a0a4acfc0bf397fd6f3c749040287c75e6fc9677d32ec20bca8e06ae4e0
|
File details
Details for the file falsa-0.0.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 434.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5df6bedb01acf73134f565b0352493b981aa3ea84d09fd4e8d6f2c618042a1f3
|
|
| MD5 |
cf7e4331a23c578779ccfeec54e92d1b
|
|
| BLAKE2b-256 |
f9e80f51c6562ee4e0c572e3cac4c9ea338678a15e349351474e4f298184f8c0
|
File details
Details for the file falsa-0.0.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 436.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6177b18bb6e61f333cca5c73d1c60a809a688937090130f8baeea4363366b9e
|
|
| MD5 |
c21e8cd19c22799bdc5214b381121491
|
|
| BLAKE2b-256 |
909e304d3ce465ca33055ed22560e7694dd8418f200d1c6eaca16236aa24035e
|
File details
Details for the file falsa-0.0.6-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 275.6 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80908855b7e8144add3d5f9b1ff7ef58d2fc574a6e8f7ac755437a178058d2ac
|
|
| MD5 |
10824d5aa91f4be81b47710e1e891549
|
|
| BLAKE2b-256 |
a7e242d9b92f09671cacc629a000d08656fe4f0da4ec818f4841fa700a0651f0
|
File details
Details for the file falsa-0.0.6-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 604.0 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea73bd1b098198b0cabd94eec7952de37051024b26805a30906ed350d3b474a8
|
|
| MD5 |
1034114fe6e6c791b6aa63aaa5075489
|
|
| BLAKE2b-256 |
e9a464c6c7dfe0e73948ead7e19217e38116853fa49512ee91dfdf41e8f799ca
|
File details
Details for the file falsa-0.0.6-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 632.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b6fd2c5cc4bbcae5b1a28f533705eb95ba0e220c8b70c67c830e86309477fb5
|
|
| MD5 |
9ed363612ed07e631bf1509737afcd95
|
|
| BLAKE2b-256 |
416f57d82f555f288ea9106b7a7ffb1978d27f8ffc1bf52753b8c2c4298acc00
|
File details
Details for the file falsa-0.0.6-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 699.0 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd06795b6873926a507f685eb147a06fb6c7282789ceb550558c42325bcbc637
|
|
| MD5 |
3917bf1d2a4d89336cfd339017ea710f
|
|
| BLAKE2b-256 |
5457244227fd859a5173938501a17bd2ec81c09ce25a60472dceb1f54dbb529b
|
File details
Details for the file falsa-0.0.6-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 616.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22f0c8dd927e857480c83b4db1e4209021e0a301efb8e76b2d3a91ad747b3768
|
|
| MD5 |
c281388b94624eca75d3de09088eb0fc
|
|
| BLAKE2b-256 |
b0a332206b72a42c06d771cd18b1211321d2fa413695e4cc9616b72d80708252
|
File details
Details for the file falsa-0.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 597.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9cd0e7075aa22daaa970ca113502c51d1e0d89cf3322be116213099f61aa5fe
|
|
| MD5 |
55609e594f8f689dcec8961c03f09066
|
|
| BLAKE2b-256 |
7c621272b0c50203d0be2df3253e237f1ddbadce1642117d9dab4fb658fd241a
|
File details
Details for the file falsa-0.0.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 475.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4811ab6aa0b2a155180aac6b3800ae5ea800bf422bddf8fb11daa509908c793
|
|
| MD5 |
5d9cd2e4eaab1de3a78fc6ddf31db39a
|
|
| BLAKE2b-256 |
fa50cda029ec50341601c283b040748172ba9cacc0a16880e93e4cb6239a715e
|
File details
Details for the file falsa-0.0.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 650.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca667084eb89a07893c373bbe05492235482a214b23b13da39626d71c9028ce7
|
|
| MD5 |
7d7caaf39d5176e278f49c36669f72b1
|
|
| BLAKE2b-256 |
ed2979585d31bce867fa083d2ca11bb469a3530077407ea2549046d6e496df24
|
File details
Details for the file falsa-0.0.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 435.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc80e361b29d19d5739a6cb1ace1e00765f139e1d065c70693a644f7c4375089
|
|
| MD5 |
ad1355e5e3bfa986b5851c77cfec9dd8
|
|
| BLAKE2b-256 |
5ec257e1b88757e637865fb2390560f927fd9eb60e793d82bbcf18d411b36104
|
File details
Details for the file falsa-0.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 436.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7bb9884f8cf468e1de57f0fa59532ed99c8bfd41999cf85e57e78a9fb8fd0ca
|
|
| MD5 |
bbbd0f0bc53db5e039b48aa4ae75d3b4
|
|
| BLAKE2b-256 |
0a8ffb2e90057ae3f69b89f188c83dc4b930b34e6ecf89d7e5b7d99ae07e6b52
|
File details
Details for the file falsa-0.0.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: falsa-0.0.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 461.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37882088385512187511311d56a26226d45fd4f53dad081e50fdb07f587e0201
|
|
| MD5 |
96250d4b056b06d6153015f9d4bfea48
|
|
| BLAKE2b-256 |
72c94cc472d2e734bd4788ff5ce43825aaeba4715fc70f4900f2bfd6099b809e
|
File details
Details for the file falsa-0.0.6-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: falsa-0.0.6-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 275.8 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea831bfdcbca03c2ca220dc61b2a8de14526af9a9a6a014f275299aace25f5c5
|
|
| MD5 |
99f38240cadd98528968ea8191820ce6
|
|
| BLAKE2b-256 |
e770425e1ad3b447a86c4f246433020d6c5ff359f278120e57e08e4b0b91cd16
|
File details
Details for the file falsa-0.0.6-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 603.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
852d57713f169043d9ecbdb2ae6b8a93e87de68aa790e800f487fa61dfed1729
|
|
| MD5 |
83b4d234b14d575295330b84ed523c33
|
|
| BLAKE2b-256 |
b9fe8d691ed9f2159726828cbe0765c579c032d35eb647ccfeb6ab10ffaa2f48
|
File details
Details for the file falsa-0.0.6-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: falsa-0.0.6-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 632.2 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a3494b7c352e506c64c708b64e85afcb593419d541dbadf38405dc0fbc02f61
|
|
| MD5 |
87a83fd44779ffcca0cd59357ee9e98d
|
|
| BLAKE2b-256 |
df145081e53d8e2927f86af70007e7d424a8bc3992527f87db78d8f21541e89c
|
File details
Details for the file falsa-0.0.6-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 698.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a97cc63f77f635e9ec738584565edf933d31078e94825788c236864488e7b062
|
|
| MD5 |
ac8d441d0d03bd426a28dbad04c8a9f5
|
|
| BLAKE2b-256 |
262906a92316c7799337a40c7e3d8737827ea3590b1bdc66fb8341c720d96e8e
|
File details
Details for the file falsa-0.0.6-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 616.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eee10e87d74efe7a089db0a58c8cb6e02082b80618c8be70c75816e818d0194a
|
|
| MD5 |
2623da3f94210ce89d3da031a45194c1
|
|
| BLAKE2b-256 |
8c54bd69faa0989fbbdf61793dedff7d953cd3832580ef35398f9f5a43443b29
|
File details
Details for the file falsa-0.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 597.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
818ed089f8088ff9d170f366ad3df07c1458581d864ec3153b48be5bf06fc6f3
|
|
| MD5 |
bd547906ad8bced940a06518bf271d43
|
|
| BLAKE2b-256 |
4b3c44d9e23b01da33b094bd4ee4cdae4f667a1cf0e123413981d16509660609
|
File details
Details for the file falsa-0.0.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: falsa-0.0.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 475.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf5d69cce8670b8d8617daa0a874e5bcb0a3409d368bfb044354b0db9404ff72
|
|
| MD5 |
84e4e73fc70820471f6720efcbc4437f
|
|
| BLAKE2b-256 |
d7e5076c350bd7f6887463f28d7c49d97abb738daaeab356da5c5793720d32ba
|
File details
Details for the file falsa-0.0.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: falsa-0.0.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 651.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6682631faa42ad303730872db6dce7b809da94842546fbd15431ebabba2b99bc
|
|
| MD5 |
00a69de1e8e3c9081c8ec9d10998b9ac
|
|
| BLAKE2b-256 |
53dc212f5b3b7e7a99a3867af1d49745e393d79610aa4c2218c72b6a4c9e9312
|
File details
Details for the file falsa-0.0.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 435.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c685c34779b33e8db9d13517931d3ea6df785756fea26b7ac11a49059c1375ca
|
|
| MD5 |
8c46e21eb1aa8cde5e07f39343fd468e
|
|
| BLAKE2b-256 |
a434e42d33525910f37b165ba765a8548eca8079ee94ec4ca4001a3f13e7eab1
|
File details
Details for the file falsa-0.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 436.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2a17bf26161fd5fdde8db3bcb0f290bbcad679ae231842d53bfebd506130faf
|
|
| MD5 |
db351ad4196c314a3a3c8edd85f7bc57
|
|
| BLAKE2b-256 |
1cf7bce7df04f3ea86c88e6b2b82bd4cfce3d50b0057b68ae98fb1703730ad3e
|
File details
Details for the file falsa-0.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: falsa-0.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 460.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e48df7acf762af490fcc3bfe9baeaeec82d151669e111c7630b37d38707bf73
|
|
| MD5 |
e4c3c8f5061d061ac7aaecce1002d060
|
|
| BLAKE2b-256 |
11aa70afcfbb1d76ccf275d7fb1cb6ee99720039a11b9d66ed23219f6cd4209a
|
File details
Details for the file falsa-0.0.6-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: falsa-0.0.6-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 276.4 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
050bc5eb7cbd1c0c6551851af0d3ef6a6db1794123c49718bdf2472103facf65
|
|
| MD5 |
03aa032a0110af006ada10e219815673
|
|
| BLAKE2b-256 |
a3f495c01bd3fda06fbe711e69252ba99a99484a701ca426481556cb362a7121
|
File details
Details for the file falsa-0.0.6-cp311-cp311-win32.whl.
File metadata
- Download URL: falsa-0.0.6-cp311-cp311-win32.whl
- Upload date:
- Size: 253.1 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe0ff809e7246d1b06e03662c3a84f2e10d252590f62e06d0f937d498cda24d8
|
|
| MD5 |
6546f8457dfc426cd437fa881bc8c557
|
|
| BLAKE2b-256 |
fd203d74be0cc90d3d6d4edea625c5e57efa404a388428506c54f11cbd8413f0
|
File details
Details for the file falsa-0.0.6-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 605.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56e500c635ad608fe3cf7d2634bd6e3d736aa432dfe00498af14e470eb354254
|
|
| MD5 |
2ff9d16974eeef18bc738b49cf530642
|
|
| BLAKE2b-256 |
428eeb5a164f44dddf674c6c248da8d4f241dc8d2bf1fcff4db74bc00f9c0036
|
File details
Details for the file falsa-0.0.6-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: falsa-0.0.6-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 632.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
938f5170282f699638e0c7a941cc80235bd5ca8a8c5a19b65615aa0dc6fbf3f8
|
|
| MD5 |
4869de87fddc7e2070b1a61445423d18
|
|
| BLAKE2b-256 |
4b98bc733bc0d88fb975577b530dca848cfcfbae20010af1884822d18fed634e
|
File details
Details for the file falsa-0.0.6-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 699.7 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
828f151c6737ed4d9051edbf695738e4d758815c316b58fa18166e0ab3d1fea7
|
|
| MD5 |
bbac4c77cbc7acfcd346616ca0067b9e
|
|
| BLAKE2b-256 |
3109da0a47ef5f56d3b9466f24b0451d6f326c6637da383b3b95b07ccd7be7c3
|
File details
Details for the file falsa-0.0.6-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 616.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0ffaf1c24296b16320b11116420d221b4678f1c4942ecf88599b33b094e78c7
|
|
| MD5 |
55625fc7e7d2327bd17870a9c101d501
|
|
| BLAKE2b-256 |
85588d72300acf63c671f4ed8fcf6d74312581e6ad72d530676ec4a8c30e2b06
|
File details
Details for the file falsa-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 598.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b57b6ef70842776c5698498d04c1c38602b255083ee6822fe6d8a67aa32b3260
|
|
| MD5 |
1ac6282823cece09addf9fe1bf86b59d
|
|
| BLAKE2b-256 |
4638d7f9182a505439d893c9741acf12a9daa04ea2ae9c9afff01a65fc5619ef
|
File details
Details for the file falsa-0.0.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: falsa-0.0.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 476.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5dc08fbb6833ead8bf63106837615236e259dd05fc4d1dd4b1b91b949ba632e2
|
|
| MD5 |
35d24ab771383b09c602f16a7bfa7304
|
|
| BLAKE2b-256 |
eea30a064fedccc3462ea413c87d15b35da854878b300d432bd79a3404b4de36
|
File details
Details for the file falsa-0.0.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: falsa-0.0.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 652.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e44ecdff3361e4ecbfc67b84dc0ed04e3f73d37b20ebfb435c8d1ebca7b85bb9
|
|
| MD5 |
e847c48ccd4a84cac650e97663dc0cee
|
|
| BLAKE2b-256 |
1785814e049f046f25611be25352959be8a9a711ef384b46cba7c0797fe03882
|
File details
Details for the file falsa-0.0.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 435.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85d96e0a0c481f50023ff5aa18b4dd663cdad7b778d2f98ca7d21e3fa132eef3
|
|
| MD5 |
a88e715d9ae47fca746a69138518c7b4
|
|
| BLAKE2b-256 |
4dcdefb9c57f94d339a9dc7cf3ae555fa7dabcdf9c4c5d18bd1cf464b93e5457
|
File details
Details for the file falsa-0.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 437.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
048d6b23fe7d2457761a406c667110904634685bac4816732455ee0c4f38ad0b
|
|
| MD5 |
db316e9e42ff2df71055047d2011b550
|
|
| BLAKE2b-256 |
46619fb4f242b37ecf4b706703cdc1c8ca0e8333edab42172340d27680c19c86
|
File details
Details for the file falsa-0.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: falsa-0.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 461.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9305aabafdf1be131b157d97ba7e105da115eef0e02af73f4716bcae64a18041
|
|
| MD5 |
3cf0b434a01a2cfa2a27138d2a76e550
|
|
| BLAKE2b-256 |
61036199cc9011e8e708bef3e0420009b4e93be517f642184ee1f564b33b16d5
|
File details
Details for the file falsa-0.0.6-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: falsa-0.0.6-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 276.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c80fbce15b31f2e293698fae0a3c7476921b02c2fc7d0ebfc15c5807df4ee0ec
|
|
| MD5 |
f145fea0d8ab1f86d258c856843c4a94
|
|
| BLAKE2b-256 |
7a938da535416514f7433b58133b9e5e690366ed852ee043867ebb4752bd4eb0
|
File details
Details for the file falsa-0.0.6-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 605.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a94abfd1b0e96489658175a124deecdaa2108c86d0331693dcb52f21fa2bb24
|
|
| MD5 |
44a4bab9f5122b53c7bac763184ac942
|
|
| BLAKE2b-256 |
a4dbff46c705e758a13e374bc116bf6e2c96bfe4b59bc9a286f59195eb52d006
|
File details
Details for the file falsa-0.0.6-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: falsa-0.0.6-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 633.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc6f322942f6eeb593f4e99410989d4ef481ee638d98ef002e0b702ecc5b110b
|
|
| MD5 |
72c3bada1304e4a7ef6aed6eb278b87a
|
|
| BLAKE2b-256 |
f20fa0c3b9bd85aef57e9d7df15b536fc5b14cade6bd0ea6104874b9ba38b7c0
|
File details
Details for the file falsa-0.0.6-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 699.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e604ff148bbfacc94f210670d6cf10037b099afac3984b2c1602b9ed7cf0b3d4
|
|
| MD5 |
7937f4a1d4710c51916b2aea0a380890
|
|
| BLAKE2b-256 |
2366c00dcfc0f63315bf1e57b1da8da9b6f8c724110f348fbc4fdb2f0235f175
|
File details
Details for the file falsa-0.0.6-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 617.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27ddeed54b439d06b5bbe918e6cd9820a636017f946340a483d512ac832d4bd9
|
|
| MD5 |
dbda3fb11ca2d1c6671d5463d4778dec
|
|
| BLAKE2b-256 |
08f2a66b24c34a4dda9ca46dd42027af5bf3f808c06533086fad3b535ec8d179
|
File details
Details for the file falsa-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 598.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3c64f52be76adfdadbd55aac1725f69fa999e9173fade8a96df0dc3cd9066bf
|
|
| MD5 |
04db797289b5c3ee502c5117f16c42c1
|
|
| BLAKE2b-256 |
bef54148d0dc6c2b6b238823b6c23342f2c83a6321267a4b06ce24e0a5dfe95f
|
File details
Details for the file falsa-0.0.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: falsa-0.0.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 476.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c9aa3ccacfc74e25337afda92c3b74637198ae366122d34b834f067ab9ca9fc
|
|
| MD5 |
2a71ddd16ef3b8608f48a5dedb23bb82
|
|
| BLAKE2b-256 |
77a7e9e83b12641ee4b0cae9c7cac41c8216667080d775301b990a0e8260226c
|
File details
Details for the file falsa-0.0.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: falsa-0.0.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 652.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b865f3fbf22ce910639bd07b0f0b526143cd4657688fb6faad45fb15d13da694
|
|
| MD5 |
c444faacc58c4cab37e88584895d637d
|
|
| BLAKE2b-256 |
15f5828060e3c837a0536579470b5e40e4396192b8515f73b54a8c069955df20
|
File details
Details for the file falsa-0.0.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 435.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13f41c539328e09c3d717c4875aaae1dc2d411f8df2894570b75b98fb23d919c
|
|
| MD5 |
81036bafc045b145bf3ad19b2d3385ad
|
|
| BLAKE2b-256 |
91118ef30c4b51bf19464ef940c0255ea7028d0cf9e56c1784453212ed543b47
|
File details
Details for the file falsa-0.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 437.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb42c361e6115c0a517e12fcc25d92e2af9b2fe6973268d01a90188126b01163
|
|
| MD5 |
ab136ff327c1a0fcf2817e611b0d35e2
|
|
| BLAKE2b-256 |
9b7de25a74303c8402c646bba1c6b2ba21433c7e7c99d245a012e2e99af6009c
|
File details
Details for the file falsa-0.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: falsa-0.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 461.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d4960830ca058b1c8fefb2cc49a62aee43212410957274060dd3d315a6204df
|
|
| MD5 |
dfa3bd784884c6056a3887868e4a4d91
|
|
| BLAKE2b-256 |
26be55116ef97846f9cdb3d2dc5814e47066d6c6d5d52eb2d0e26ad968c16a60
|
File details
Details for the file falsa-0.0.6-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: falsa-0.0.6-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 277.0 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80a709caed219e58b497044f6373f11db0fc4333634f7c73a95b67f4f8c68728
|
|
| MD5 |
cbe85651e8756afe9769a33d9d2f1eac
|
|
| BLAKE2b-256 |
577b035b9311466849e0f52992fc8c4332eed9c75c2248290c6be8bac2a5a90a
|
File details
Details for the file falsa-0.0.6-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 605.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6663e11a0865d7de1b2bb6f898812a459c7c9dead42b2cea5ac9426a54ef5f7d
|
|
| MD5 |
e96134d01f7b45baef4289cf020ae136
|
|
| BLAKE2b-256 |
6a1522403038cbef3959e33432654304e048c7544e19e7c21135ec08dfe5da44
|
File details
Details for the file falsa-0.0.6-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: falsa-0.0.6-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 633.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
088c7378a5be61cb88f70af04f741b4245d24662df4ed61588072ccdab8a4dc1
|
|
| MD5 |
b8ba4ba6228d9230e8edfeceb560b772
|
|
| BLAKE2b-256 |
797d52c3a385c42b356cd979b9af0ed14fdaba62edd991c03a5c44bbb153e3a7
|
File details
Details for the file falsa-0.0.6-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 700.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f8819c594f1ec719f5da324cbf880d26d578764f0e0447b8dae8d12bbd3f8e1
|
|
| MD5 |
4a40d10b5d95c05e707d58d034e33e6d
|
|
| BLAKE2b-256 |
5815b1c3a74e3dae8fcc04fded3507eb808e867317178f8292b878dbc56650c0
|
File details
Details for the file falsa-0.0.6-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 617.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a821dc4d52a6dd919801968fadf4eedf3b82f70580344bd308bf73393835b292
|
|
| MD5 |
4c43d7331b45014526df7f9cd7532f1b
|
|
| BLAKE2b-256 |
54d1d7c999fa86a62c6ba65b167f542f312e4121688a4508ab3b8f11a879595f
|
File details
Details for the file falsa-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: falsa-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 598.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c4e999b46ac84ca749dbb83c4d7cfbb83ac147e61d9768b05856497257fd614
|
|
| MD5 |
b9efac089af2339f698f9defe5ed9c5a
|
|
| BLAKE2b-256 |
04725e35da6f10d371c5ccdfc7439e78a04da700e4f953ed71e11f04c7128543
|
File details
Details for the file falsa-0.0.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: falsa-0.0.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 476.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fe3dc051821369a60b5442bec919182e98b6fa37b94f1c4d5eff51d5bf1e83e
|
|
| MD5 |
2540d1d16ee431aa4cf579f32dc997e0
|
|
| BLAKE2b-256 |
bfa90f65260030bcc1a4306f3bb7509f8354e738f584e78582268af56bc5fd18
|
File details
Details for the file falsa-0.0.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: falsa-0.0.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 653.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c03427e201903723bcc7721e6f8da3630091d605b7ac97f7f256339eae0dafce
|
|
| MD5 |
dc872c9e28358e829b2afdaae99425f8
|
|
| BLAKE2b-256 |
a2185155f5c110afe34546792dbe114130cef15aab9633f279572a3e639b0cd8
|
File details
Details for the file falsa-0.0.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: falsa-0.0.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 436.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84d23fa01254f620ddb0e816a1bec0ada6b5cf0b7cd7bbc14ab066d75d276417
|
|
| MD5 |
85d444d5caf4885b9e8f89bfeaaf95cd
|
|
| BLAKE2b-256 |
510156027ac1fd8a6ae02344ea92438fd5d3c60685eafbc1d95f7f5522507ab8
|
File details
Details for the file falsa-0.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: falsa-0.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 437.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97e72b506fc8f31d5d557dd0bd5c995d6a922f9d38702894f914560e31947d5b
|
|
| MD5 |
52f4ebbae4a145368190eff5f4f68d6e
|
|
| BLAKE2b-256 |
6c16e5c5601c6655bdfe0128ad4a2e5a1a2baf990c74fd2ff2bb94fb2beeff4b
|
File details
Details for the file falsa-0.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: falsa-0.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 461.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb37fd4b322af641e942d205bdf15dd220da49fb901db7f2299659185cd5934c
|
|
| MD5 |
ffbebbbf16478aab4100556d3b8a4346
|
|
| BLAKE2b-256 |
5b14d5596c8a97490d921cc7ba25f20076e68d68cd80d6be126d7d5a5041807a
|