Skip to main content

Python bindings for the yake-rust crate.

Project description

yake-rust

This package contains the yake-rust crate with python bindings.

Yake is a language agnostic statistical keyword extractor weighing several factors such as acronyms, position in paragraph, capitalization, how many sentences the keyword appears in, stopwords, punctuation and more. For details, see these papers: brief, extended.

This crate is ported and is as close as possible in results to the reference implementation. The input text is split into sentences and tokens via the segtok crate.

By implementing the keyword extraction in rust instead of native python, yake-rust has the advantage of

  • speed - in tests, it typically outperforms the reference implementation.
  • concurrency - yake_rust releases the GIL so that multiple threads can perform keyword extraction concurrently on multicore systems.

Furthermore, yake-rust is fully typed.

Installation

For example, to install it with pip:

pip install yake-rust

Usage

Create an instance of yake_rust.Yake with the desired configuration and call its get_n_best method to get the n best keywords from a text. (Note that n is a keyword-only argument for the purpose of clarity.)

>>>from yake_rust import Yake
>>>yake = Yake(language="en")
>>>yake.get_n_best("News from the inauguration!", n=1)
[('inauguration', 0.15831692877998726)]

The yake_rust.Yake constructor requires one (and only one) of two mandatory keyword-only arguments,

  • language - ISO 639 two-letter abbreviation for a language, e.g., language="en" for English.
  • stopwords - set[str] of custom stopwords to use. If language is used, a default set of stopwords for that language will be used.

In addition, it has the following keyword-only arguments for customizability:

  • ngrams - int specifying the maximum number of ngrams per keyword.
  • punctuation - set[str] with punctuation symbols.
  • window_size - int determining the size of the "window" around a word when considering how it appears in context.
  • remove_duplicates - bool saying whether to remove keywords which are considered duplicates of other keywords, as determined by the Levenshtein distance and the deduplication threshold.
  • deduplication threshold - float which determines the threshold of considering two keywords to be duplicates of each other. Does nothing if remove_duplicates is False.
  • strict_capital - bool that when True (default), consider the casing of a term by counting capitalized terms without intermediate uppercase letters. Thus, Paypal is counted while PayPal is not. The reference implementation sticks with True.
  • only_alphanumeric_and_hyphen - bool that can be turned on the drop keywords that contain characters other than alphanumerical characters and hyphens.
  • minimum_chars - int for the minimum number of characters in a keyword; shorter keywords will be dropped. By default, there is no such limit.

Leaving the defaults should bring you as close as possible to the reference implementation. For more information and precise defaults, see the rust crate.

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

yake_rust-1.0.3.tar.gz (152.9 kB view details)

Uploaded Source

Built Distributions

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

yake_rust-1.0.3-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

yake_rust-1.0.3-cp313-cp313-win32.whl (985.1 kB view details)

Uploaded CPython 3.13Windows x86

yake_rust-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

yake_rust-1.0.3-cp313-cp313-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

yake_rust-1.0.3-cp313-cp313-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

yake_rust-1.0.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

yake_rust-1.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

yake_rust-1.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

yake_rust-1.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

yake_rust-1.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

yake_rust-1.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

yake_rust-1.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

yake_rust-1.0.3-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

yake_rust-1.0.3-cp313-cp313-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

yake_rust-1.0.3-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

yake_rust-1.0.3-cp312-cp312-win32.whl (986.0 kB view details)

Uploaded CPython 3.12Windows x86

yake_rust-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

yake_rust-1.0.3-cp312-cp312-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

yake_rust-1.0.3-cp312-cp312-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

yake_rust-1.0.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

yake_rust-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

yake_rust-1.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

yake_rust-1.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

yake_rust-1.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

yake_rust-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

yake_rust-1.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

yake_rust-1.0.3-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

yake_rust-1.0.3-cp312-cp312-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

yake_rust-1.0.3-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

yake_rust-1.0.3-cp311-cp311-win32.whl (985.6 kB view details)

Uploaded CPython 3.11Windows x86

yake_rust-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

yake_rust-1.0.3-cp311-cp311-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

yake_rust-1.0.3-cp311-cp311-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

yake_rust-1.0.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

yake_rust-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

yake_rust-1.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

yake_rust-1.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

yake_rust-1.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

yake_rust-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

yake_rust-1.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

yake_rust-1.0.3-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

yake_rust-1.0.3-cp311-cp311-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

yake_rust-1.0.3-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

yake_rust-1.0.3-cp310-cp310-win32.whl (986.0 kB view details)

Uploaded CPython 3.10Windows x86

yake_rust-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

yake_rust-1.0.3-cp310-cp310-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

yake_rust-1.0.3-cp310-cp310-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

yake_rust-1.0.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

yake_rust-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

yake_rust-1.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

yake_rust-1.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

yake_rust-1.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

yake_rust-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

yake_rust-1.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

yake_rust-1.0.3-cp39-cp39-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

yake_rust-1.0.3-cp39-cp39-win32.whl (986.4 kB view details)

Uploaded CPython 3.9Windows x86

yake_rust-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

yake_rust-1.0.3-cp39-cp39-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

yake_rust-1.0.3-cp39-cp39-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

yake_rust-1.0.3-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

yake_rust-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

yake_rust-1.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

yake_rust-1.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

yake_rust-1.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

yake_rust-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

yake_rust-1.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

Details for the file yake_rust-1.0.3.tar.gz.

File metadata

  • Download URL: yake_rust-1.0.3.tar.gz
  • Upload date:
  • Size: 152.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for yake_rust-1.0.3.tar.gz
Algorithm Hash digest
SHA256 81093561c903ae6c3cfae4424f5505cfa39c147980d6734301d56e09c4117fa1
MD5 ded60c97025ce1e0b666f9cfadccfe38
BLAKE2b-256 f60792b79001a46b1a6ca721fd9dc278c5277867e46b0430272153221d3d8cf2

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e8a94d9b586d26959aad8ef30d6c2ff77c67a25abc0ecdd988ac980f5304a86f
MD5 b15df9dd8f1e4f0f37db92d9c0758f42
BLAKE2b-256 63b75545485ff71d012d20618d372db9da897e2494c50bc94e141f2639827eba

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: yake_rust-1.0.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 985.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for yake_rust-1.0.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7363332ea356295cb0f0c97132bbe6047ced96d787d3bd07586681a5a07e2ada
MD5 7cc487860ed6ceac1be39bfbce268b2e
BLAKE2b-256 64b755b90070058008804ce7ffdf435884a0a33a7e4291eb965451a0bb9ec935

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 def66d691f6132925ec5751f6a38f17d60ec2ca00775d2abb659eb1eccecbf6c
MD5 3edda0be9c269a1fa9cf5690bbef703a
BLAKE2b-256 035771fce62fe2ec2fd4c2e49bc99d1b72b6b3678b63063d553df274fa78bd55

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c58ce1fb7c694d674ddc542772c1bf96dde28a75516bcb025d0b6ab4a80d306
MD5 74d87d72dd095b800f6068061760563b
BLAKE2b-256 f0e7b2cd817a2d60701655e63c432da8ac222927e124166b61e96efbfc346b14

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cc131577fdeb05adfa871fdbd9d0b85010427c5a4ec711f7266e3a397e3b2bdd
MD5 634dfca3ad8cadbbb18dea4c3267f84c
BLAKE2b-256 65649de964ec59ca6db01d4734b950fd9617c7dfedaf4088b33c8183e31f9914

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0040e033c2c3db7bed75fef7f6975b7c7977841bff81e8e80e0a6addf7edb8b2
MD5 0f66e9106e9afa413a60540661c1aedf
BLAKE2b-256 5f648873c657d461763be774c55841392d0604b7734a2dd569d85d51243501bd

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36f5adc5545f4954fe204c496fb878dc10a926d51f1d9dd5087982ebe9ba0f02
MD5 69dbd4a29e8ca91ba97b06bcf97f4480
BLAKE2b-256 24f9407cbf835d63e46f58ec47a84f29bb03f5a7b112b7da5a2b7ae365729b20

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65c4efe0414dda9cd3c50d16bdd50900934a0d8adeb481eb40cf9182bfbdd7c0
MD5 6fe5b07ea3788c9b613b473226df1496
BLAKE2b-256 a3a931116263e8f76c3d10d67901268480d27327ecec40c22b175ae0b5931420

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7510fe2a16c4d287496268e9a373e218a9a026b1930e066e10e2d7f6a2db8e66
MD5 6be49fafe1f4330cbe9a6f478892848f
BLAKE2b-256 f1e859c76aa9e479b870d4cc1287c7287c40b912a7e38bf508b95e7ab7cf035e

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8536cd8d2d94e5dced5918c551dad3381054e9ec08328daa753d25369da5b7d8
MD5 5887f02eba0a2984575e1985d69f6498
BLAKE2b-256 9fdee99dba912e0e2a0b71b8be52bc6146bc685bf5387c7eacde0d6ed5076916

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfa3827a722c2ac3a0ad03f2b000414fdded180b7c4091603b73e36c63f055b9
MD5 b429d28350d3f67c1e4d2d481c056053
BLAKE2b-256 12355ebf92de8fc34f6568a09a2d51f10dc24900a757955f2b2a19cb67610fba

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 983a4b973b117b8ba4dec2197e1b1077966102063a14fb6172f76a79707f2759
MD5 86a9f401c7f449733109d7bbf857a2e3
BLAKE2b-256 fd862a349caa741f6c126d300ee6bfe3d83aa3688c0071655b556831d9d09c9c

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5eff8bf60909294b99c81e591f45b1479cdbdbef707efcfa3159d24c9e84f3a
MD5 b0b4daab06d309d9464ca1e803772fac
BLAKE2b-256 910bf557fb880cc2f8b1f9cc9415721d2ca15b8f3800dae338376b3b5708794b

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aedbb4af3c9e9470baaf7fb5084dada3ba94dcc142c0c115447e3cec9f2a0e89
MD5 ef74c7ce8becaf777a34471bd32604f6
BLAKE2b-256 eaa56935ea193ebc2fa465d1c15860b3eed9352f34a46f7912d59c7650a4104f

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a3e385c19a03be9f5978fc20a2a487babb87afc55d10b65c396f10f3dbafb997
MD5 5078ba98c3fa5532a815b4e1d62cc654
BLAKE2b-256 ddda66bca6cf292b1323657c7a4c59471c1ed946c57a92870a178937450b400d

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: yake_rust-1.0.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 986.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for yake_rust-1.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 92ccceebb29964b2e5beb2e6836a868f2a0850807330fcde221d188d0b62d307
MD5 827f3b2f210282a59892fc40794fe798
BLAKE2b-256 9510a85bc9a85cad2358df5e5b9cb4e80d7493f7ee356ebc0bfa8a6ca6a44a48

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f19713be31f9444eedf5118ce826767c6dee7d1b1f17ce498149912f2830646e
MD5 c579e06ef522f75a86fabe6d718a61e6
BLAKE2b-256 5cd6b387c68e9702d6a9c29754ceb4156ec5317158100f38f257611e1d9a3e65

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 581dac3571f296cdab5d26822de5a6d72e7e8d9f05a32542e72d89ea60690ef0
MD5 ec5f54a8c73fbac12278ca8c369b3666
BLAKE2b-256 09afeb7833994d17be5a18151390a80ff9c045cd72bee677c99361fa8d4ec244

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c97335f8ebe5ae6db6b48e91aa5d10ee67cc3aafc5273864b81744583ba14f08
MD5 a636ffb6dda3d1460424afe1553a3ea8
BLAKE2b-256 ebdb440f02fbd8abc2de65da1ae64f9f63951c6a18e252d647b9e3e7ec678378

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d88042ec248878a0346565caf9afb7ac868c92e431e565c465b365efad45dee9
MD5 1b217ea3d752f4f1e9bf27fe8b0f23a4
BLAKE2b-256 4f80c1d59b44ce9ef3797bf3ad57cbc64fb8e5deb93f483c2fb7e690c0291d9c

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1dbd662597f9f1a78226ab347a5ce64af20941afb05b274b45e57f7cab9c71e
MD5 ce432d6bdde77ffb4236675b603d9a28
BLAKE2b-256 22a865f6007d0c77bc8bbb937454dccd1442a18583b1355e2e1bab8ba512ed96

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 786f6b7585d75bae2cb74dcbeb983b834a5d43017ffddcc397b0bd3d9d4fd71c
MD5 a6f94dd4325b171cf94125bbaf6ef73a
BLAKE2b-256 491633b4adf35b8d6545c499cfd2a1748e419d62df6ecbdefe5465b869f6f920

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b8631b6b4a8073b62e04c6a771f978acc8d42aaa28f72bffb950ee404bb30c5
MD5 927576b60ae1555bd182b36a88de45a1
BLAKE2b-256 38fcb881d8223849712191d06cd5601e2a976d6b1ed0bc262f8048024df1e551

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aaea934771b543f2ecd8c18229567a6b965986bc11be221b522765a70d4cf457
MD5 90a9f94e430274a350757f5cf909e781
BLAKE2b-256 b9cf1eed86d0f9e753b52228f2c54e59bb62127715c4c2d987b68dc7d4e42795

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7d50f24b1c0a2ef52be52f410fb2251654c410b6d7e589d12c916821ff703c6
MD5 efd3f3c50c7a5a58b7814e48aa8188f2
BLAKE2b-256 3754ae19b39a1360d539e12f2e7021da1a0672cb08ff2f4441cdcc5c879a80c4

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 15707c882b866dbd291b5752a31486e10940edd6e5bf57e5662f116c35be637a
MD5 fc5365fbc007f5ae270a49a8cb0371ed
BLAKE2b-256 82baeec67b6c810974cdfbdc42290a6dc3dd92ea13e870f6e8b8cc259e929fc7

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eea4efe512c3282bd28aae81f4fb00ab9c51b1c97d067edfaf634fcd1d0e6816
MD5 3be06c9fb7126a47e5b8e285118b7d0a
BLAKE2b-256 df0f5d92210110c38a45c7638b1838eea89538cd46512ed9d66c99a3bcba5c7c

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9534e11544ab683471003ef3dc05766c83c1de049b68efc9a1efd9186dfd962
MD5 a025f53a093e73c9e221779081d243f2
BLAKE2b-256 b90cd4457551f1de862c639c028ea9ae9497c2f410f0ddc45bd3205595549652

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b87ba4dd4d2b130f1cf9619809f77a916ef192eac41432d506c2682cac669b76
MD5 2a6a267ea5e38a8e9272082c2a2a4e7b
BLAKE2b-256 5e06905084ad79632b5ebcba7d95b24fd42133ff76ebe86bf3ca2fe411bd04eb

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: yake_rust-1.0.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 985.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for yake_rust-1.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 696b159a62c42e493abe8564ba1473071a270ee21757ab531e5fb44a27cdd171
MD5 25a804dc5c99d280493248357ff2080c
BLAKE2b-256 ce4ad1409e368156e045e010ca6d414d249eb3c2fa2af8f0171893715ea95d96

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8628646940302f6fc18b3a541314c1dc321fdb69c1fbc4621a865724ad1e90d7
MD5 bcadf4ac56121096933b781d084ec1fd
BLAKE2b-256 e8ae96b4062406b7f9956dac234df6415e2d34defb9db370d3bde32ad60415f2

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de4dc65a5278a2648d0efa5982fe179e4e0de4ed28c43d10f95be3c3ff4db0cb
MD5 876b21427c2486f7b9585c7e61a64a22
BLAKE2b-256 ae9d8e56cae465892811f69827c61454bc3e30f232b0162266e9526768ea98cf

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6994e92503fdb313cee397188241ea7c2492128c89af2f596bfa940bee91c6eb
MD5 dbd42eb24a3d12294775fd3b89311bec
BLAKE2b-256 c2ffe23eff479435811d5ba45524b79a8098e7832bcaaad252702486e4ff6528

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c60482ab9abd7d6047aaa3b9112d5e8acb448629e78180ba63df3402ade4b3ee
MD5 08e534080c960119d51697be2dfb9426
BLAKE2b-256 d9900da8671b48a7f9f1d1324563fb09f090b3079bd769bd7b252d2e2d8ddb2f

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfbc4ce6e7dd4a5cc52eb6a5ed44381bd405e481a876e8ab0777c2dd206679b7
MD5 64fc4c1187324656754531f5a74d81b1
BLAKE2b-256 9e563a2a74ccee3ff56fdcd25affe23bac181b25bbc884531310e01933a65aad

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ae663998ba7636c8cd5eefa9165ded1953419ed479adf639edc84b220d998d1
MD5 b015750458eebd6b7190c415d9228861
BLAKE2b-256 b1ab13185a0f495531faba8f513cc5611b892235247c1e4527341f46ada65914

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54cfb3b4f7cc8bc2321a49b7a9ac03f31684cd61dbde3d5a8df75a07760b1d2d
MD5 b6d790b05c871979bf604a7d8e3e7473
BLAKE2b-256 7057dfd324968f5dedbe82886a31da32e3992bd6b66e2876fb4c52597c10a36b

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ddb89cfa69803bf4eef09d2a1eb650d07711d486b7493dfb6ed8ba50acfce1b2
MD5 ed822274db09280a9f599da08efcdefd
BLAKE2b-256 6b3c7b801d1ac717fb219a52bf119579371e34e9bbad8590330f05074b1e417d

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d98c8fbc1fa120c46751ccc592ad34653beff4269df36f8b916a9d00fdea6c1
MD5 f023a7721a0a17179e5d0130cef2eb9b
BLAKE2b-256 e86a28f575d585465e44f0eb39136581f88eccb6ef9051e0b81022da19e0ff72

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7dd03282b8f2099dd158b484f9fd700caf4e9d12164850475890ababea8e9896
MD5 331a5ded13734526e64ddbef794d9ea0
BLAKE2b-256 0636558baef33360459d511982f2fe8cc1d18c78ad55f18caf26c4cd6957803c

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c80a4d3d49d3d9baf3ee5f4dd2c5cd9f706f4ab0813bd2ae0cc9a774903217a9
MD5 d7208486534d285048c14f81723d2bda
BLAKE2b-256 78ca80ad7db569ee184512f3cf0da32ef80e401a91fb561de2546b546e322644

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3bb51b4708be70f3af3c53af03c4fe5e444bfa67dee7ff54b2b364a327b119c
MD5 9a5d998d6ea172a6aa499154b073da31
BLAKE2b-256 95f0dc3056e9da7425edd11eb7ac82737e353d5ef3242287d61dbd76f8afd2ec

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1f518250c98226283209b20cb2f31ecbcf2caee87f4f682f1861cd77edc4bae4
MD5 632f6207cfb261b8be6febd62c0a7290
BLAKE2b-256 237e4a7051a6c73834994e1386a689c6efd43bfb40ed4f497efdefb209deb80c

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: yake_rust-1.0.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 986.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for yake_rust-1.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b6a7f1ddab6c085ade87b714f2b9a2831f13704a1fdc12fb39160a1bbe17b53d
MD5 4db3f0f4095fb40c418d435ddbfb04ba
BLAKE2b-256 75f713cd682fe29c65ed6ad3b3ad25f102745dcec14eca11d12f61e2e3798ac4

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d563d94f9c4b24ded15a34e09bea498a57ba47c2b9a90abfc4ef374a635a0e5
MD5 026396b245bc72cd0624a5e517651cf3
BLAKE2b-256 220b52c0a5f1668aa2e4443286622f64ba86ef5d8e5bf631445fe3fc0a417d79

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea4ecda01c4adc02ace977923810feee0ed72d11ebcb984ad3e9555945805558
MD5 44af51a08a378cfcefe7afaed498e376
BLAKE2b-256 80cd4c6b7bab0dec299e49c42a6ddbd082b08088afbf61848dea2c5a87be504b

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 70343d403b99f16fe960335358db26930af2cd228c928dc2646b39ad0ad003e4
MD5 bc4afbe45bb01b6eab7a1666da5130a4
BLAKE2b-256 c5ef8b2a82526f13015b03ea99f0c2b04090d47a4026fd46d10fb6bedbc2b44b

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c07efe7ff283aef947747bda5b0251f12d6964607b7af1f8cf6aaaf681d34bf6
MD5 9cb5c5905a5c33033f35c12f080e91b0
BLAKE2b-256 d39553925b76ac0ac13753853bd0796a499819b483ce2f0ffdf67997498e8dda

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16f6f0a63029fe4e6930e9d2ae0a94aba3a738f3280f6a96de0eb7de8d506ec2
MD5 0fc3727f2cd031048690322e403bf96f
BLAKE2b-256 09a6011ca608230b96ba1c004f4d4163d36238069c6f8af18da843f279f244dc

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8087484daf4ec81c4d017066e4a2b843b50f740a86d659ce295d1f23851ead1c
MD5 5ba1fca54ccb4625e5582098aa750841
BLAKE2b-256 812cf446a2629ca6a79f901b5ab6ead71d889df39032f66d2aec1fb88e2623bb

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0add7425dd34134fcf591eb813b0f2c64ec5e3424a5b45c2ef24f8719ce4f3a9
MD5 d339693020acff59d1ffd8ded1b7e610
BLAKE2b-256 5774eb07207af1b62a07fb0816fedf9a01fb67ac55aeaa4df31b513fab6e408b

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cbbdde364fc1c8d77caf78b3f18c1fbe12e2ae622f256598ac9458cd6cfdd993
MD5 65b0295692018eded8e057748d7b07b8
BLAKE2b-256 d3398aa73f2ee76304f56e4f92d6adcd146b23610a3f410b423da49b55138e5d

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65a6fda6a855928851f268efb78f7801a55f97e5a5796e23f3a06c764d52ea6d
MD5 9a64eb82796f43877a9cac5a44b30271
BLAKE2b-256 92707269c444ca34ba12ea90ed2c1f1ad50ebb03a965d5e65512b08c1f0cc61b

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9047217fd7432ad80dbd175696dc02ea9b93b61ff5f9d6d3ddf394c7d138981f
MD5 59923c0ab86d9943d141052feae6d92c
BLAKE2b-256 87c04b726ad9d8cf17f5db30997aded57614160ad90e525f0428102e445128fd

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: yake_rust-1.0.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for yake_rust-1.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 43ea3f34d01656b8f73c003dafcde8a9785a9c0eadf191b25ccb9b2d5af85dbd
MD5 f9c8298cf58fe49d746afb48a4589780
BLAKE2b-256 6678bedba2bcaf6f8007189af4393d7eeceebd6aac644b61bf423d93cec13389

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: yake_rust-1.0.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 986.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for yake_rust-1.0.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 77ca8e6e40c4f868bf54407c4d8363a341a6f229766365e863113ffc2a56eb4f
MD5 a46f1c3eee00e16aa7ab2bf70874b6c9
BLAKE2b-256 391ba0e0ed584477ca421a0e7080079fb0f91efe48eeaab93771f3da0aae1797

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61506878d75c54610f680fb80b69eff14ad297960ba0f11eef6e0f6f10889245
MD5 fc0ea136d83fc83455080648bf6b842d
BLAKE2b-256 2caefe49a6d916df13fa53c6d9280ed0701cd275a033fd5f75076f46c4315696

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4219761a712cec6609e4792de2cd95950fb8c7a229aef9f3a8ee61620e1dd50a
MD5 61db099ab8d6ccab447697e3d2207ebe
BLAKE2b-256 2cb04aef0dfb1994b67d85c828b4c55d3ebb1d3d45ae62b2f9df7bf0ea2d8d5b

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f394e04fdeb42bd5d4e6985ee6e743681e1294b407614c446b9ff6f2f02fb2c9
MD5 8e4ebac94c2e2a40b071701158dbd9c5
BLAKE2b-256 bfd0d332feaaeb2418562d72fc81a3efa807ff89bf2e70ddab2f8de2bfe1e552

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78e5abf8a2ed3772641089f9d3093dd4dc8154bcb1c3cdc68dd112b0122bd699
MD5 8bd7ec34db794ace921feb2afd7628a3
BLAKE2b-256 9bd5fdd69c36b3d0de296e9817879e657392c423c5fc2bdf73991c8989320b0c

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58db9f0a8dd2c1b77e9e55d4a54dc617c8bdf43a96fc1fc1324d9ae573d3906e
MD5 006f10b68688f0e93ef1fc088b61895b
BLAKE2b-256 ed6a275a216ee6e3a5ab58b204da269d34e30cf1f169dcce48549ca0390a0c8b

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cb5d7e186e1a1624ab192c698029ce24993c97b95663e1706cbabe6feb3ed4cd
MD5 4de846fb6a0065b6f0292cd6151d167a
BLAKE2b-256 e5c9bec3f244b7c85f4644d4ee32a0252495494a362a6ea3248099c47a9e0b16

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81d8d30a344c19e471ad044c3b1a2fd34d8403197709bee58a674f828669681d
MD5 fd1c9991ee5a2019c2d77bd5c4270ad3
BLAKE2b-256 19bedec945ea849ca3d565d2671344411d294de8100c8fe95705053c93f46d25

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94dbea52f28b396abd1caecf367d84890d275cf0ffe8f447159468dd8eb9da9a
MD5 51474c4e55eb4f9d9dbf9e66ac5047a5
BLAKE2b-256 bd63fc8863bfbf2258e80dfe6abe481743a103eb4d83c9feeb83a1263bded688

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4ca1f4a84d03fe21027bdd4581fca4007bf5bd756ae2764a784b62c9f9f26df
MD5 4759b38a4db0b1cbef25536d8b70ab37
BLAKE2b-256 c45f7a40c80e5b7488de8fbfa9cb7285f2c1e2634b611eed35cd05a6a3fe24b3

See more details on using hashes here.

File details

Details for the file yake_rust-1.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yake_rust-1.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f5415ee1fc890a54524e5f28c992a3771e57d922e3dd95d0aabc35f8c84387a7
MD5 a519658bf4647fb6b8dab1f7306a82d9
BLAKE2b-256 e192c3211832f4a8a9a6cfa71020aea2efab2a8006a2355a6dea7195d1ed9063

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