Skip to main content

Python bindings for feruca, a Rust implementation of the Unicode Collation Algorithm

Project description

feruca-py

This package is meant to provide a basic Python interface to feruca, a Rust implementation of the Unicode Collation Algorithm. There is, at this point, only one function available: collate, which sorts a list of strings in accordance with the UCA, and with a choice of a few "tailorings."

There is a strong possibility that the Python API will be changed, depending on user feedback, benchmarking results, etc. This initial version is essentially a proof of concept.

Below is an example of how to use the collate function in its current form:

from feruca import collate

strings = ["zebra", "éléonore", "grok"]

# Tailoring options are "default", "ArabicScript", and "ArabicInterleaved"
strings_sorted = collate(strings, tailoring="default")

print(strings_sorted) # ['éléonore', 'grok', 'zebra']

The default tailoring follows the "root collation order" defined by the Common Locale Data Repository (CLDR). ArabicScript modifies this such that the Arabic script as a whole sorts before the Latin script. ArabicInterleaved is more nuanced, mixing the two scripts such that Arabic alif sorts after A but before B; bā’ sorts after B but before C; etc.

In all cases, the "shifted" approach is taken with variable-weight characters. A number of such options that are configurable in the Rust library are not yet exposed in this Python wrapper.

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

feruca-0.1.1.tar.gz (11.4 kB view details)

Uploaded Source

Built Distributions

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

feruca-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

feruca-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (970.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

feruca-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

feruca-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (984.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (779.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (985.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (790.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

feruca-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

feruca-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (970.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

feruca-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

feruca-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (985.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (780.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (985.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (790.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

feruca-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

feruca-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (968.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

feruca-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

feruca-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

feruca-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

feruca-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

feruca-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (777.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

feruca-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (982.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

feruca-0.1.1-cp313-cp313-win_amd64.whl (843.3 kB view details)

Uploaded CPython 3.13Windows x86-64

feruca-0.1.1-cp313-cp313-win32.whl (628.0 kB view details)

Uploaded CPython 3.13Windows x86

feruca-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

feruca-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (968.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

feruca-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

feruca-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

feruca-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (982.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

feruca-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

feruca-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

feruca-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (778.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

feruca-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (983.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

feruca-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (788.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

feruca-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (967.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

feruca-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (951.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

feruca-0.1.1-cp312-cp312-win_amd64.whl (843.5 kB view details)

Uploaded CPython 3.12Windows x86-64

feruca-0.1.1-cp312-cp312-win32.whl (627.9 kB view details)

Uploaded CPython 3.12Windows x86

feruca-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

feruca-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (968.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

feruca-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

feruca-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

feruca-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (982.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

feruca-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

feruca-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

feruca-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (778.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

feruca-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (983.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

feruca-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (788.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

feruca-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (967.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

feruca-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (952.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

feruca-0.1.1-cp311-cp311-win_amd64.whl (843.5 kB view details)

Uploaded CPython 3.11Windows x86-64

feruca-0.1.1-cp311-cp311-win32.whl (628.9 kB view details)

Uploaded CPython 3.11Windows x86

feruca-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

feruca-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (969.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

feruca-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

feruca-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

feruca-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (984.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

feruca-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

feruca-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

feruca-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (779.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

feruca-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (984.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

feruca-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (789.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

feruca-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (969.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

feruca-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (954.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

feruca-0.1.1-cp310-cp310-win_amd64.whl (843.6 kB view details)

Uploaded CPython 3.10Windows x86-64

feruca-0.1.1-cp310-cp310-win32.whl (629.0 kB view details)

Uploaded CPython 3.10Windows x86

feruca-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

feruca-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (970.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

feruca-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

feruca-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

feruca-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (984.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

feruca-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

feruca-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

feruca-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (779.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

feruca-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (984.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

feruca-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (790.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

Details for the file feruca-0.1.1.tar.gz.

File metadata

  • Download URL: feruca-0.1.1.tar.gz
  • Upload date:
  • Size: 11.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for feruca-0.1.1.tar.gz
Algorithm Hash digest
SHA256 d5e884cbff6272db606d3b2aa1bc2f707c9da0ff4c674cc2b044b4c41a6577d7
MD5 2907d401cc9db5b26af46b70324a8c3c
BLAKE2b-256 b48fc3cb5d10902010fa626792aaaee560589ce914f367cfabb9b517d87f2444

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3cbfdec82fa010fa0843501e8911a462506188c898dff68aa8668d94197afb94
MD5 ff05263e1b4d723116a9597d3b8b207c
BLAKE2b-256 b08a07815ce915c2f0a8d8a1e3f382d5f9c8b5ec17313516622d915bea380498

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d7c691269c1dac1adda68e5dc1ea5be3a17463195195a100057aa12dc5baf35b
MD5 d2993deba51f525938bca8eac490db16
BLAKE2b-256 603a8093170b11218805732b4abe1766b6c19cc2b4e4a71cb77a8e0e019b63ec

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5742ffb97a73456b36e1a7092d8fb06ded04d9a16a3568de14a2cc594a431df2
MD5 c3f83880aec348cb72b087e62f9820ae
BLAKE2b-256 55be5cd876af5cf5274b875d4e67e1122918bb59eb403ae3adf285a51d179ad6

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0ed120667c5c15e6336806f9bdfb68314ef24564b45ac31e3c58c54d28d24c7
MD5 58eaadc1b87d481185b5e816e3f90cdc
BLAKE2b-256 7d0861be6509c25de0865f8671bba5f9e2642195a308fcc0587baa036174eff9

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e9ad8d82f4c16bc1431e689783332d2519da8ab9b6614a9da6b8f1fa00b7eb3
MD5 26e239c6de995c1221e525a324e8f125
BLAKE2b-256 6c8f049b2f07c62b08755de6ba1eea8696e2c655ca28cfe38bb4971994d85b05

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84d1e36ed51c0e5d6f1a856f4924930bae5bb98b61797598f2f9d03b3bb73d3e
MD5 b7fe4e79f567b491cea0f5c2d83407fe
BLAKE2b-256 29895beacc00af11cc85c42d42016fde8f3ec4dd352569e8a3809d6e094dc670

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15b91e4b3e22095c1c119daa2633f87e76010f770c14a2b310e6c4681915ffa9
MD5 31a416ca842763ae76f88cd93eba4ad2
BLAKE2b-256 e48e5c56fe3a9a3e37aefc924047d04fd6482fb66c15a55e0c280d2931cffd66

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c4f1d7c17d5b2f3c059fd7403e2bf09bf055e0d87707e5abfe1d0ee7972f6ed5
MD5 6d4cc7af3d2444f55658f41b44d78cb8
BLAKE2b-256 0da646b41d2b65e4388040a211c1605b2311c44e234a40bf8282996d73f3b272

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03d37934ca3d7800045138159dd52082b840122104c97b105a24fc86180bdf47
MD5 91686389cff0e9ab971d450da94da05d
BLAKE2b-256 dad8bc5b018531a52faadb04ed87fd1111c88a5d178b222a882296b1c244c14a

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ab9facb30985a2f17856c704ca5b85d26cc74c31a20bfc40af8e0734c0e1913b
MD5 bc92504448f7866dd632ba9366210a7e
BLAKE2b-256 fed5119338b058177588f0050e4b6328e3509aabe1f7c57a368f0a5b139119c3

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7667b5de182e3f6006329a6817df2693dd92c438645050e986130b4a90a4d2b3
MD5 29a688fdfdfadaee237eeb5cecb2cf2d
BLAKE2b-256 0e6795794c8783c759ffdcd7e271e5b9445f4e432161eed9bb9beb0a27b7cea0

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff420cc5d52dcb9910c43d3f1c6e152f65aa68ec735bae1f46d34656031498b0
MD5 f48ab08e5b12e31359d98f6d26c54ee7
BLAKE2b-256 4f7d674ee3c5b0e8fc394cb3b7c17674fef330802093b8a014f2848b346ee6d6

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e07e387d4246c42b63b1a331f2a34dc1d5122baa344c8c0bfd51223bbffd5e5a
MD5 041b6b18a5f6ea412f43d8b2522c91f9
BLAKE2b-256 1dc876c182a55ab441d6b717c0564996b14015ef63dcdaae46ddf54f4a9b7814

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9162c7f6a7e239a7efaf3c3e25e2e2283fce14fc3c353197c5c34bc79c770dd
MD5 1a8dc277fa5940d6390a3539d2c4f5d4
BLAKE2b-256 4e300ab7e057be77379764fc339828764b86531192cc0732499bb02172f19d13

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9d0db06c90ec8a8200ed717bccacb0130c01db9ec160aefe27cc5f8402f03c7
MD5 e1159dd55509ec0483a9bce8d1761f3a
BLAKE2b-256 4ba0deeafd00c1cdb466935cda781cc1fd3aa8f8640717798255739f4802d409

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2765dfa8873978a1561c16b3b50ba1c2687ed5231a045f469f5eafd8761daa67
MD5 30573066d608852755ca97e81c105085
BLAKE2b-256 949530d2b5500b6f99910fe9fad0c3c6853ffe0515e33553b548b0dfc061ce22

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 414ec41632e60df7bc95c1c66894c9f44d443d497ea812a46f84357be44e9ae0
MD5 bb326c9499440aa0bb3538501eb3479f
BLAKE2b-256 eb9839435401ce666fd2afb330c9427ab251b02a5e4dc4fcfb79259446fe415a

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a2a65605a1c6f85a3e858c789cc5e5b206fb74d985c371bddd1c50629f58f5d
MD5 174123f89ff5af7339bf6c071adb6f0e
BLAKE2b-256 db412b1ed00b33dcd41b00ac3eb205214ef25b19fa716dafe5cb40c38ed40926

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6d9e8384fe6251d443bf8d291572b2b1abd1238bdbce1f110955674e0469028
MD5 90b86cac07943da11d18e52a4bbe5de3
BLAKE2b-256 6e84bc37fe72fde52b5a82d3467d7b93d359c66a6ec261afda7c894bcbbfa7cd

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f03f1ef06226c2eb5e7dcef1a354492e2f071813d0287af7c9e506fb4a06908a
MD5 99a1a519f881fbad64caeaaa7f9a5893
BLAKE2b-256 ba10d7a7b6f26337c3682a8397a02672533bcf93ee8746d4d828b6f43e83080d

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef193c5de95dcdffe29c79c83f29b20bf0f7ee66b65c510fbc09f12186abe4fe
MD5 5f45f03041db755dc26451595c82f615
BLAKE2b-256 cdb0e83c62c17832fa71a38cb0e4dbdbfb496e564b23254c4193c28405e7377e

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 394dc6166cd3114d5a1e7e3a674277443f4af37c43e9f1c82a170e16de905352
MD5 e5202bc76c8c9d61ac2063fc8c9e1522
BLAKE2b-256 0b2ba5ebc42c072a03875872b4afed9e90cbcee4ab006a17614255f926fc45cf

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce1f53ca40ec9dc392409e75ddbe7c315efa00e2602105aae21cd5d03098103f
MD5 c62398489fd168b84724a8accf163d14
BLAKE2b-256 4d6d79054919ac6520a20aabda019b64ee9bd3501632f203c1359b5f399c3edc

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44b288956316995aa05fc43fd6ae388d5a0ff089f88e36d91f797ec068927f47
MD5 81d64003be53babdc19282fb3ae493e3
BLAKE2b-256 f0a8f2b0ea1f1df33321f40d5a3839b58b9d8794a40f1ca791acba6aed94811c

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63d9bba3386b3e90647ebe26dc40d8bf1493604c51bb9e41bb3941cd76b37e97
MD5 dad1de27159dfce5d3664f771628550f
BLAKE2b-256 66dd700cd24dd09432c8cd4b37a963178052d643911bd889a8f5e565d3fbabf7

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc5a3a62e85c599d02a4dc5d37e55b9235f23474ff7c9d5f45ac357b92e107eb
MD5 7a2588b921c4c9b9697705ff054f9eb4
BLAKE2b-256 a6c5e685cb2e2e77d107aefd0c5d422e7bb840451429296d0a0a115b977b2581

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 86b16546727994dbce6d9192f7a0e34e162f884e6efa2722fabc09e9cc88cce1
MD5 8682da0a5717e7f80fcb026012278baf
BLAKE2b-256 5d8348a4c98350e76b3a131f46492ac2468c371bdd65a744898db15005f16751

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63b5a0e721f36ddeb22ae943bdec2c819b85893e1147bbcfd638227526b29a3a
MD5 a8945bf83765984d7125eab3199cc1d7
BLAKE2b-256 75172080b2b02cd52ed5917e24a90b6394fffb9df27f31e6d42bbc9821637478

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: feruca-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 843.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for feruca-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3e2b95d2cb5c7ff3c2633c9649ae0f61a6f3a2ca9b2a7459db9bbb3134c1aaaa
MD5 ca84081c5c23d74f6a89ea63ce053e03
BLAKE2b-256 f3e26f9556aef2687490365b113ff93229933459569fd1cfa085dd7cfde1051b

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: feruca-0.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 628.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for feruca-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cd0832085bdb94b47bac3f8f44619bd85064b6cf263aa5817375c754615aac9a
MD5 d72d8b63520fe93fb9d03fa433d51975
BLAKE2b-256 7b872553c35febde2ee24879763cb56c9db901a24b428f4ce9a410bf5b5fecdb

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 901df69a28f7567593ea06015276e1ec48f9dbf7df21d313b8c813109ac23b29
MD5 286b05a8afd002dd7551dbe5e446aaec
BLAKE2b-256 c84b94dd9efca6b954321828ed3d2b67c33ca0f3779d94c21615d2672b3f4417

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e51ca59f1f29c5fb5e475e90dc2934d0a97614b2e326c5038db91401b18033cb
MD5 09d6f87577c12cfbab33f9a2b74bfd34
BLAKE2b-256 74795e8449d34807bfb647ae61ee123fede07f67ed730cfed2b94a95ec94593b

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f86ef4e732b5a6426d37620b57ced5be96eec5557c94560966ba9ca42807e7e4
MD5 7ee1c175077c76c6739328b8c0dd2ae6
BLAKE2b-256 c62e7f0ec2b0cbadb7ee6586cd89bd7c1be9f03a182f115749b9077292e23e69

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d3d45ad5f6cd98cf745a3026ab8f1bd9fbcf2424678f9dff5fd638f7a5edeb9
MD5 511ae18ac98fffbbf0ddc18964189da3
BLAKE2b-256 51bc73db6a48c65f3ee454436f88174e82d1d1b6ada4d9948b5a87262e899da3

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 673fb8195fd21bb1f396fb86e4aae519abfccf73235aa94f6d872a1b0b46ba7d
MD5 3383a46815e7e6a96186f01690ddb363
BLAKE2b-256 a43a7bcf0d4d9bc9c48cbe70e3002bd879424acbdd15e032c2ab85d2a947b391

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f36424345ca7647cce80b0e0421bb34c6c1ed28ee8413ac0314b19b96b140ad7
MD5 8defdde7dcf5a95acf3ce1e168eb0ee1
BLAKE2b-256 bbe36db4e269ea45420317c499ad8b7e8323dca93ab3c244e43fcf419cce00c5

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 917a3b4e7b42ecd0d37c10356b8dc8579bc60100f3d4b16f6abe2df22baef9c1
MD5 32393997728d7eead8c59e8c27548aac
BLAKE2b-256 46a62fd1997f38c5c0975429f0d4ec6e9db9ba7366b0b472e1f091b67a0ecbaf

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c06281c03c665525db788df75b61e87562dceff3eb3338999484c7125fcce248
MD5 38e0d1ad2017284cd192c3093aa2ce48
BLAKE2b-256 93eb57e6b9e3d9c55ea23791de7cdad3d7bf7b1ac9a7c47d15208f65f0e937ac

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84589e350c84d385ec0662ee3417ee54e0e38588ded9801b7f76b49f1d23d148
MD5 c06534177de249c3b79fc4aec4a88062
BLAKE2b-256 906e5fbd177a644763fbca5a2837c506a4a790e46b462f0d4dd689e0bc4fdd45

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8872613c9f22d53ae6a204964fb7c2be5867bc55e0433d3c2f785fcba8771667
MD5 3b675ca2d2bdda5df7f2e7fcf1e3ae48
BLAKE2b-256 f2212bf0934d017e8badc5abb0b8bd8d4d8531948eab807d52408c3fc90a2473

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 421600d243dda0038016e0bfe859a5b1d1cb2ed0729f569dabe5fec6451b729b
MD5 b081ab7b0d93b403d4ac4aeeb54e00ac
BLAKE2b-256 73f0c83948d1a7ad63b6cb7acd55e7354d2ec5bc7f7993d839f167ce4fb4f86c

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ad48649d36f96449567baaee147a88abfd5f238b7f946900735d59980300b054
MD5 a0eaf5e3dfb596dc84dab50f35b2dbb2
BLAKE2b-256 221b271b01859734ea3e70f7ad37fd1631eedf0faa5d4cb41e0dc2a749a1f027

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: feruca-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 843.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for feruca-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a690e597c044e2cc980d08f6b42582fa0c7e91e35ec368e0d8b85156cfd049df
MD5 616d087be0da7f0391b512657b6d4d27
BLAKE2b-256 c84694337c806161f8692c67d26e6d5a65b0244c4447061a430e930a85df843f

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: feruca-0.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 627.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for feruca-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ceb5620022117290040e0f5e9229d63cfc75f8af2589305f2b8d56fdf59cb553
MD5 166246084691362c82e24f1a37264949
BLAKE2b-256 7ca63641519187a7337ae30f97fd05abbef49e57be90f0cd6c665d8118ac1c53

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 049893dce7719218fe420aad4d2c60a7a7777b226936b42d03c0f5a16111faf3
MD5 ad62099f760e4215f703fffd90e0d1c2
BLAKE2b-256 881715b2adad9c3ef6965bcfba342edf38362249cf2031e1438985e499575662

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0035951cb30edc21d5d9b94df1edbd25a3379f0bdcdd35b54d7803ad5321cec9
MD5 d67e477ceedb0a65d25f69bbf2fe1658
BLAKE2b-256 ec0a6460199ae37f92699e66881277cedefb70394c2c4ec50150e26ca45ab7ac

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c926fd10447736a53e1a18b620573cd330e70a7ef4a09e1a691cd7aa02be58a0
MD5 fdb8da815220228729d9785895111c41
BLAKE2b-256 c0b0d7bb31a32be54377daab5349e47234f97e0d8eae766521e7d2e75ceec1b1

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98131885055527f70d0891857d0c0752e99c62a862b4982bb62e2c880efeda64
MD5 26c61076354b81a5765370a95f1eba0d
BLAKE2b-256 4cddcc7627e06616f1384afa15bdd93164ea5dbd5a271d00d2bc131c2eeca8d5

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46ff2c554ed22e26f5f02ea748b58047b73547da11733343b3b21a4c0665f3c9
MD5 f87118f7b1217b1f3e7ae0d79248b093
BLAKE2b-256 09fa4ec77561135f25269f77e5b5aef8c6057ff5792317f13e420789748123e4

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d138e8d60d8ef78114920e845c4a9fe776bcad15c9d1978801c6c2879b606f6
MD5 721a5003118680fee2c37362c9647edd
BLAKE2b-256 ff6880cc961658feb45806502200f768911ad0e2da148f2c6fd0a665603577e2

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3241752b1863b971747284fe35530d9757ef2f1ea16ac53ff2d6c4901d8d55e
MD5 8896aa98727ac47f5e2e704589371c7b
BLAKE2b-256 add4aefd710851af797d610236f4cf2434b0ab33a2434e87f5e92d2255d219b0

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49ff571d7c9bed417d12060c2c1b49c26ad099c7476691d9b2bc87450aebd36c
MD5 9288dcec93bd6e2d10194e907f23f270
BLAKE2b-256 2626903bc212c784de2d0e203b3dd68f4b580cc193f560c4fd8b24b1db9e1501

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 819aa0d872ee16cbe2f81955097f07fca1dfac975e41a3868bda7d5a57e9c781
MD5 9d2a536bba8d5253e5b3ad201005ada5
BLAKE2b-256 c001552f3d16dc9b33cdbf71edaa88069fffcefbcc5d9b092efeef83f2b9af44

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3992ce7553c56707f30657ff1d937c19cc53ae37ef26622affb8805e8daefcf9
MD5 fd30c0be299b2998c629ae6922923813
BLAKE2b-256 c649801cde6afde15d2f7819bd7c296fe59f9a51000a0f586a4172fe99863ba9

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82017a4891605e60ddefdf7d11a1cdb0e9e07a9d3726f90ffe16588b8b515567
MD5 2e2648c35dc01ebeeccd5022c30ff1e9
BLAKE2b-256 bae888b46a4025c0379f94eed49bc3918d457efc2873ed9a3390114ddfb7b14c

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a282502ac16ccbc387ce1154576a9933e541e3a42e098fee644a01c5920b2f40
MD5 bf3bf266f5b3a9d6b706975063170d5b
BLAKE2b-256 e1967c45b601ceba6beb0423a95a4f7b8e13a5b15fcb8df3d74f416a9f8380a1

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: feruca-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 843.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for feruca-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b3005a4b494f4315b4d9b2e489a1ffa1df981c3b2f908666189ffe4f2417a42c
MD5 df0ca58577e257879cdbd57fb1b80bff
BLAKE2b-256 23b65c765c41c2750bded61650f71761029c3808fba25e3f6f44128b2d1a465e

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: feruca-0.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 628.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for feruca-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 99c5872b0554dbea31c5657a81fcd55d32dc69f320384c90bf32ab1d2bd1635d
MD5 3431c1aba51ab315060904035816f5ee
BLAKE2b-256 7431068401846828210d34f018cf0dcee8982b9dceaacc73ac225fa571562109

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 949917177a36f13216ff565d2f2bde715f72a6069428c8d0fa54a0a76c4e7940
MD5 8f6853dce06b1faecce22ff187811508
BLAKE2b-256 432bab8ccc20ffd936e253e28aa52d4fc8e17070e4081886e461442700cc63e0

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6e2cc890fbc28cb5dbd402438a830dd3b752b3d21160c723c8545945378b6eb
MD5 ee80c555dba61c9c5aeec8737342b13d
BLAKE2b-256 185481b5248fbb57b585f7688aea00751a65c7c3968573251061bc66e120dcab

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d77b3fbdc637dfd1427333de896815f5a0a8cc6bb8aaa251ae44e2a7ddce7205
MD5 41460be613162c8ecdf2524b0f489ed3
BLAKE2b-256 b3e77dcd73efc231f7959d99cb6c9c4f71bbe406c7cbe26e3a89c55fa0409d83

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb56b701c85c23b0f45cdcc45b69090c49a6db2a79eb3ee7b64706cf1ed390ea
MD5 3f2a7fc6256a8e1b0e9d99caa6da4bbf
BLAKE2b-256 457bed06fba9e86c132bf78f94359bc671fee62b28eec41c184945e428d4d4a0

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c63476060d35214f4718cbcec7fea0c5c488ae62c111c6f3e29e870ac972a5a
MD5 451196f82fad7022cd19e6957f5a1dac
BLAKE2b-256 c90724ad41f63d8341a58fe7689d8a7ff5006c825f64ff7311c802358d3bcfa2

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0c405e0e909b7e0f334989640c54dce2e25b844fde5302f756d95be30e7b09ff
MD5 9475fa6ea7b6d471187130e66efdfea0
BLAKE2b-256 cb497929f42a8f7728ce4b034d2a0f55af77e8ca58d7c6cce627d7441b333798

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 650b3edfca9fee500ab2e1b545fdfdcea0c84e062cdb3dc7a91e6083b97e235b
MD5 f58c3d5381dd86936fb03acdb0360b5a
BLAKE2b-256 92438b328f809c7b6a40bb35ad8cc9da3fa8cc14b0b4a47c0bf9c52f4c1c6ad8

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9f5051b40b8cbf1ebefd1b9552649435f233bf3152a6657dde896bdce86d64e
MD5 624c08a279a7e6f1c64fd932c74f60d7
BLAKE2b-256 7dbaaf82849fcd37444e338df5a6c7d130088c3bc5defc053adb00ea1d802bb2

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 193a5b3ad797e86870d9c508fe902b5d1ca50b754b2f424cffb6f17671ccd5a0
MD5 f48b699619f51b6ee95ee776579ec165
BLAKE2b-256 2f685a0075f11171f4472a042e02a88c7b59786de761f86612ea963eabf07ac5

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8c16db536234bbd8d897ee47ab4ca46d6ce25129dd5cd275942792b956f19218
MD5 1ae98cea364b2a46ac56743f28d6578e
BLAKE2b-256 8011d5bbadb2b838d523fd68008b63b4b3666113551d8f19c3067adfd8767bf3

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44d471ed87f10ffd2dfccc986ea6dcaed8c67009c9696299f45feea14cfb2404
MD5 0d1880d1751d358852a93a0e1f73650b
BLAKE2b-256 2b99beb780c9ae83f4b9d4972be51e7d538fb15cd38175bcab3f794831ddacbb

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f464323f265791182c72e8366980a92736ebb2121cd3dd3bcadaa48bae8e3eb
MD5 5200c07571bceb5da4752ac96d1647dc
BLAKE2b-256 ad0956d79660a7baa5d63d19f26bbde9e5f0db9d0940c4843744fb2d4d95544d

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: feruca-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 843.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for feruca-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4580d0d8b7848eaf2fc35cbea78480f743045353916208ffad4d56c347a37346
MD5 0930344a67f6fe487449e1671a8373fd
BLAKE2b-256 5bc08350f2f2b1d727c9d28cbfe29c12563bbe680e30f09e91fa4ab2883aa4d4

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: feruca-0.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 629.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for feruca-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 164afc640df405a688d311a4c17b3936e2212668a001cae3f682673c2965da10
MD5 24c6088874b40565446f54eb6db2debb
BLAKE2b-256 11203aa841b57f298b1469a3a47dbec7ca77dde952b3748dfcf4b19a4dd00576

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b53864a8f5e008776d8cb0b5b0c4aa2313db603439b39c9e4df18f4df1d97719
MD5 684f47ab051767df80d3e4f8043e60bc
BLAKE2b-256 832f9c3753490ee55f1632252a49d70de56070dbd52c4d51e78b33523bdb2a06

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b043741e44c32e9d283106b08929bf2afc47f221ff98baa645ebde028a3b76bd
MD5 ca9786cce652b1611ef363d117497356
BLAKE2b-256 32a50e0d6dc2109215af029c33df6ccfa06f27f2c48d5d0ad7a5f300c221a357

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 085e0cd9f4833bafbdb4a45434d78550bc5c7eaf538adc5bb0cca0a180cef88e
MD5 2a177bff86b46d3777cde2729a500003
BLAKE2b-256 54d03a162e48e4984e841da0d80a18c57dc834e957fc2f30c1c5b7936928f94f

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b57ed2442220fa2e9677e680ff38f986e7c2b07144c96f210f6af4acabc1a9c3
MD5 607916d3b42d59157eb921f45ab5da9b
BLAKE2b-256 c4c51df901ae5948fb556ebeaab5ae9e2e0f42aae857af03b6b8882f0c688d81

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e9ed0ec82cb6c9774056428758c78d735326ec72603ef798fc50c056c780b17
MD5 bd37481e603db6a11ae531d9fb88b51c
BLAKE2b-256 33a9d3b99301f7791199146aa1fbd17d4a15bfde29ebb4380be0d7504715e34c

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 122f20d9dda84bc659f38081f555ab762d16ce8b1ad28e67b490678ea9e47b3a
MD5 2b12b22ddff27df557a5fc1f97c116cd
BLAKE2b-256 101ffa126bdd6d2a44cd57f1ae946bb1c42ff3e638de6900eff976828445d06b

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5fc54f5a589f15e9dfd76feef7c78c7782847e53011621b256fbc2d1dec36ac
MD5 d7a19daddec336443fd22236508e8530
BLAKE2b-256 62d5c4ee54972f15faa84ccda13d5316733c8ea961c151cb2d76abd75787902d

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5fa8591a3b647a5d73823945524a3d5a3533e4bbf5a53268684991c931c6db12
MD5 c325fbb576152f4a7c87647473d7a648
BLAKE2b-256 b40e0ca371d7a511d313d821a2c8e473ef971b55907fdefe08a4395632f445b8

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 971d9dfb831b52a5b2b076d6512ad2829c9b4cd0f8ad12412161d56d5d5b13a8
MD5 b398731101e82ee535949135ed869c61
BLAKE2b-256 3bfb6adbfa654429999d11132e8dacf559d82c8e295c4c2cddfbaa4ead9b7fbe

See more details on using hashes here.

File details

Details for the file feruca-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for feruca-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a200bb9e8257c2bad974937201deece2ec6f3a75ae49f41ef75de15e3fcc6f8
MD5 359453c282fbce8778a80b14313f6bcf
BLAKE2b-256 cb341c0665dfd345ad0f9a498ff16046413656c6e3c2b9c84fcb067de470f3de

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page