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.1.tar.gz (153.0 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.1-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

yake_rust-1.0.1-cp313-cp313-win32.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86

yake_rust-1.0.1-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.1-cp313-cp313-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

yake_rust-1.0.1-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.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

yake_rust-1.0.1-cp313-cp313-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

yake_rust-1.0.1-cp312-cp312-win32.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86

yake_rust-1.0.1-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.1-cp312-cp312-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

yake_rust-1.0.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

yake_rust-1.0.1-cp312-cp312-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

yake_rust-1.0.1-cp311-cp311-win32.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86

yake_rust-1.0.1-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.1-cp311-cp311-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

yake_rust-1.0.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

yake_rust-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

yake_rust-1.0.1-cp310-cp310-win32.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86

yake_rust-1.0.1-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.1-cp310-cp310-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

yake_rust-1.0.1-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.1-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.1-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.1-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.1-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.1-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.1-cp39-cp39-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

yake_rust-1.0.1-cp39-cp39-win32.whl (1.0 MB view details)

Uploaded CPython 3.9Windows x86

yake_rust-1.0.1-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.1-cp39-cp39-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

yake_rust-1.0.1-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.1-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.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for yake_rust-1.0.1.tar.gz
Algorithm Hash digest
SHA256 bba31d19cd9d7205cd1c9454331cae52a9d64016aa02ef4c2c023d699f0d40b2
MD5 de232248a52dfe238e1618be8c9b3c87
BLAKE2b-256 77c0aae6f4341a0197a942b842f208ae8683724a187daa6101d6fe0f13d0b78c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b3b72f0ac47dc40491df07c81b01512e656ef4ae2ea82dc4019e0f5a70a5a707
MD5 9a902943589a53e1c6ac704e74f3db8a
BLAKE2b-256 533f10dadd2a693e078dfb2f11c5243d9ee5e0ad352a24ec691c673a58ac2027

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.0.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for yake_rust-1.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ac7668a65085717c7f94413d5258e6aeef85c52b052280f363523bf7d500a770
MD5 a8acccc9ee5eb4646282aa4c37083174
BLAKE2b-256 74d5c92741195181b38519e31bb24e2d4a1779ddcf95b3a458a7a8b53be434ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86b88d3c9b3bd754b7e5f5f4ff2613f43e9622444ff975b380f7cd28148d12ea
MD5 3ebaf61543a6dde7a571c70893ee3d3f
BLAKE2b-256 cc9c5aa097087af7103234712b4085ccc621749175c9718b807cb134e7153c90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d282f15e9bdf50b1e47a3ba4fe77d621a5b5946156383a00b3496759587e233
MD5 c8fbd5aa34e170d4ec8b18b60e908864
BLAKE2b-256 a89f82d1cd686988d55a89e2920ddd39fa1322af8a646d03763918bac8341580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b97e8aada2bef7774379f903a66c66fc9e8eed40e6877fdf4f6e4bd75c818a5
MD5 7d7225f0f940084afb0f869e788f7ba5
BLAKE2b-256 9dd8184fff909489610d302359ee4670f0f85a3c4d385a87bf865a7c5f4956be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3bbaa8e3c9c6363054dd4eb2c82527535b14a4d7b542beda67f9929dce14668
MD5 72890075c04d7b0c75cdaf7553ae91db
BLAKE2b-256 b36b5f80dab691a73f48cf7ad790e24603011a1a4e64303209bf5b7cecc0db98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 526ddc2bd44a1d1e75aaf83c9f4efcb5f4ef64fa2d9032c62da1e18b151940a8
MD5 5bb30976427e4683964bcf7ee623d1b7
BLAKE2b-256 af42b737281c91c2f06a653d590277931f4fc92dcabfb6ae07de9e232f7971b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b632d166e28ab0788e9b1622afdaeab58f32635b6d838e0d991db57513d8cdf
MD5 8b3e039c6f29ad20a9ebb23bb8976970
BLAKE2b-256 c98692d5a4663506cf564b8e4160fc46800f4df9a7caf1877c742282917d19b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc74f13eab278c0f240e975b7fb10c204b695612f834192455cbac6ca9b49dca
MD5 8e761476f9aa3db56aa0ebaa5c1c1df7
BLAKE2b-256 8de8adae4b652ef85b1f41e9a20227f7ee86bbc049144ed6d9de4fb8efb4ce44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed22db1accd4ecda2e5b1750c547d36b9e873b15614228759ded7dd3c1c212ed
MD5 a86a3b71ef0e31f687c1ff5088c8a695
BLAKE2b-256 c77a0b61b05a138d3f1ff7368f6c8ea4601ba7fb5e943e992122cf737562ea01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8294c7d077361ea7524654c9d6b48c1231ae34995bbc0ce69ad9853000235f68
MD5 05981fb9ab4ba75f102f95f2715c214c
BLAKE2b-256 b2c89c72adf24c418d703a5f9c5d69b5f33f1a6b603986fd5b31a0074011d5cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0f80955782ca3482a803266e3543131928f07a4b677ab4bf0f9e2839641872a6
MD5 4d80f91d67538ff395daa1415018b241
BLAKE2b-256 1946b8f3a54106cea3a289b667eff6e20e68394ccc1010d01ae5caaec8155463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17b0d0f9c98156ef34bb1e4ae59c06d86715eedd2ac621e62bcdab89b8cb1052
MD5 ea3701e82af498fc3651594e32b21264
BLAKE2b-256 7892781a7c0194f60cc606fb29eaf5ec66385e8d740df5861179c5984d9d0395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a067f90e4be6a4c8c59ddd4f89e079bd08413959ae92fa271754ba0942f17136
MD5 56f1fc1d45b0a81da9aef7b460042afc
BLAKE2b-256 4eff93f0b099d302f6373c016731e00b377eecf553d74b35a32064d8577001f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8f1dd179f5c863e5f32207a0af7bcbcf423adadf8d8e1c8c68f4af10eba0a52f
MD5 01e2985737b4ce5fd2946f026b23fd83
BLAKE2b-256 f045f16f6a77df3df1f6ee9a79494d31f5b2892eb4b173bdd2def225824f2926

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for yake_rust-1.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ed7eda0de95f5626ac6593d0d4f4096a9c17d764ad42c886b4881f16203513e0
MD5 e1f025774df943c41356692a3086ccd4
BLAKE2b-256 245d75a4e5ebd6413c68b196a0dfca203a7ea8231838c2da4e0aa172de9e0dcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b4140421f3a793a872d436f95998788d8282628dde61b835afe29744e72fb81
MD5 522c063a405fd4f0707d261bbd56802b
BLAKE2b-256 e0ebb056b0f26d22103957d62c63f04f6a4cbc69bce2c86866bd46787a344a00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de2537c849f9400b9c69e4333fe9b39e46867d91b7018f97167a51c18af5d8b6
MD5 6c9b44c0d78993d7d4b1100fcedc0a56
BLAKE2b-256 e8dfcfe88fc579ced5409b9e49aaf2814b16adfde7dadc4dd03c124613602b17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b6a2eb3fed60a006e5908d37f2b7d862b6fe82b375046eb41df2ee1395d3c13f
MD5 3151abcbca99bce1de31e2a37c792a67
BLAKE2b-256 899aee664704b8cc97361fa83d86c8479e9e026792e7f26658879c27ea2c3970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ca8862a3432867eb504c8d6e6fd6aca7621b28b785b5f935ee50f0c3ced5bb8
MD5 6217a55550a6c7922ed80209f2704037
BLAKE2b-256 c6d18d57d3e79dadcbbc3082192156bebe3e64acee793697b05dca0f1e899a45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96d023135dc518cd2ebde8e7e0a9df1bec4a763ef1b678442d37fd03c6f8fd8e
MD5 54ca39ce930f7878975631310ea4ba04
BLAKE2b-256 14404df9cbebeff356e2a5eaccabd76658b823e7d073d392dfd2b788fec5fb01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87280121a856fb9858433ebb376175762900e6c0d3cd492d5be043221337d6c3
MD5 5e5621553a7e7f910965c23a0470e35e
BLAKE2b-256 878f203def8ac950943dcf35f2c2fce8eee1329f7298913596afea3e62b3e7a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0d968d0f7f33c6e753e5919f9c7ac7472882207a7e66880bbb6596e5277b1ba
MD5 70ec7647da865b6239987dc69717da9d
BLAKE2b-256 a5e093fd5661f8f16835e9b2baf526173b96106cda74d9eb1b7b28019bdb709d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c35226323839e7f2ac1a83f13858a2c64f9612c6928ce98f85e4dda9776048d4
MD5 e55b8092c91db6f5002a3f6257d539a6
BLAKE2b-256 dc8754e7b2e350bb87c25c1dde8dfd687a018dddf26bd1a42b97511e373af874

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fd244113eb8ea392ea307ae9d3246c197f6ee86f2960401a75bd3be2570541d
MD5 49334cd2f11a2ccce97c96a29f3ba827
BLAKE2b-256 2dacf7a0eed7ed16eb4cb9d8e295f6b1807577c39a08048918f47502db8a06dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ffefcb278ef54d77b804558996ec59fba08978aa55429eeb787c8d111cedea39
MD5 9e8a39feee17274b23e1d9fe1ee4f6c4
BLAKE2b-256 2af3c2d5ca31e7410e51aa87e0024146fcf2e555f4400854a298dd3520240773

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea1b0abbf80b2c05ed57ce88005f6527214761cd5e517b96f479f3207fb91b41
MD5 f8866e0a673dbd1b575f0ac51b0b0ebc
BLAKE2b-256 742542a90d68674ab1fbcb79119fd9ef28937b7c1bd32d2b5044959b40b734bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3adeb2b6c385167c82fae36d53e2cb6e58189bb38fa1591635358bfa8f469c22
MD5 40121c35c3284cc78c9eea5515002ce2
BLAKE2b-256 57acd52cb7b33ded88b77a5c2ca01b0a9f60afa961f3e9f3ff96e8f767cfdf32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4f5bbd1741fd9ba77eee0abed6ebe23ab620954fe91506905ae55a8a0f928941
MD5 3ae4b3e08dcbdde4e01852bd44a5f5b8
BLAKE2b-256 a4cce88f65f01fabcf69ee98abb741decec80e8081b7d168b71038b973e6ad36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for yake_rust-1.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3e49e7d0a95e38fa71753612b6b50753de0fab3c54781074b4a7999bc5284121
MD5 ec8b36cc75775c11eea1a3fccbc58f6a
BLAKE2b-256 fe063fcfd30dc8dcb5b94b74a75fe0aa34e75763c8c96a17b301a43dbd18857b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a0ccb2c3c4cdd8ab9d58a2a30478056e792b960e8bc2ba336198252fa46ea2e
MD5 86be4d9943a1086ad6337592e4204f28
BLAKE2b-256 bb7d228e1297d5078f66eea856592f51409b05d012d6ecd9ed257eb628c62236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87c88c4e176ce8572740f7db16cb22028cd36d150ed2916df9e20e582615de95
MD5 ccd4219993d26a7ec6b7948f0535a5e8
BLAKE2b-256 49ea2613f7af61c01e89da3b73fa266ef1c3728d6dded71d8044663731966c54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad5310ed179e749aaf3f4bb8fc7f0a9a90b3f2160dccbcf50827450dab2b16b3
MD5 5ec97d2a7425c441bd1f27bc4758d68c
BLAKE2b-256 0bc6ecc8bf5c885f7118aad6561f7dd6161e2607af65aef88f1e8bb815d4b1ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfebd430d43d50790e080bbe3b99479ce1a00edcf934f710fe76fbe1c59a037b
MD5 f78a187220920561471ccc33204c117a
BLAKE2b-256 36b09fb4ec2614dc755380dc9d0e808857fd5abe5a975004c6bc37999bd6539c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eda8a83e2c837c66d27192904b6ce213bb1b74c2ab4465378bda59015feb1d49
MD5 3b64d0563b7ab75c171998a7de4db257
BLAKE2b-256 f6da6049179724e77a87ab539c78070238d785dedb8bdb9a16e2e746f200cdb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cdc9ca26c2c5d30dfeb147c35a4a6cacb63b0d7fdc47c5804c53ac8338c12567
MD5 2e228dae9d3bd6e9d71a4e4ade5a717e
BLAKE2b-256 29e5069cb5385af4c69577c590437a633c19c66ae285ab5aa950aa233609e72b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 57f8173b5211c3f1ce78be2bdcfbae8dbb29b716085030c0be4eb7fdf0d6f122
MD5 4b321367424ca51f9a2ea27354fc573a
BLAKE2b-256 862e4401ba1bbcb75dc35bf2b4f3e39af0b173f80ca06617ec37c51624e8092e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b9e88d7154e02e8097a7ff6010227eab033677e3ff64b3a6ed220ffb71d23db
MD5 fb4283762e61d02f1be7947e04ca23fd
BLAKE2b-256 3674398adfab53f2f5c4eb24d874c4ce4df6720b2c9174c1dc912a80d86e7dc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2809e626943425d31e15e3c85ae04560c9b3affa421c5125889052ebb6b7bb85
MD5 a18e5f49711759fd847a14f7561df591
BLAKE2b-256 4943118c9042be4f59c6fdcbbab4c40b7a1cfc77fc012d9583b712f26ac12fbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e8850be83c5ff2c515e01bcbd01f7478d16c330bde8b2747033c1e8848b4a40b
MD5 3e54018f307bff16750b1dbc6b32bea8
BLAKE2b-256 6a990829ff2dffbe34f094eb9234f92fc771b040ff5f20ef471b2a61b6074343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccc61939b965168b85d7443f43ded32cfc127db4ea258b088198f76eae7e8e69
MD5 18c78add865010a6f8c953cca19e03f0
BLAKE2b-256 eac5ee22be255a2c309e7725177fb73f62246f81d9d2d822ef51b52461624d51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10e8798d58ced4ac19b622cd66dced98e884b4e4ebb4500894cddc8edbad95d6
MD5 c1e01ba09d58ae51dd2cde5d76769e78
BLAKE2b-256 d0225f58682d3d34ead3c79a9397dafb02cfde0f4f6deaee0c138d83ad042a55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1b13357d3b654e024aaf18c629b50e6069c410a32b5904867cce1afd59efc7ac
MD5 269b9fde5f453c60ed8083120f3b17f5
BLAKE2b-256 e0265ffc26786c4d4078953091149fdbc54399db549495cdae5301c99d3093b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for yake_rust-1.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cf4e99758753239a5bbd766c807a8bd2c0b7cb492e6745f4c88530b98a4dd7fa
MD5 56de37dcbb2182aefdb2a1b90068545a
BLAKE2b-256 98183d82e813ac1fe6f00d5b9fa971aab873bae44d23a858b573c5bee5567724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7cd270e8d07bc1fcfbc3030132340976a9a798b174c60f551871bd69ed3d8d5
MD5 38bef4680ffa3d9cfe95f7389c6679df
BLAKE2b-256 107689f84644dcc7d618fb8ccf79c0792720df0c6906357d23af0f8225b8a197

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 54fb627dadaa7ede83ecae06f408c1beb1a5279d45bbf1201c595ef678b97d1b
MD5 94ceaa27ae30d34e7cf0acaf5c4e8cd9
BLAKE2b-256 3dfe070cbd8bc76eb5c745e591c14592343880784eb4a570983bd65f7d2b8274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b4f220e5efb2b0ddd6f1f64b179b7b277233a82d3e121c435e56d47f9515b1bc
MD5 b3737556b99e3ba8156484bdff2836ed
BLAKE2b-256 32ddd214d47912549eb9a3b7afb762df74aad440330211e4085bf0396bcc09d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d75da9ca3ba8b48ffb988f566fa6adb4497217224726771cfe41fa494ee839a
MD5 ff3c8921d582e98e7c9be754a422e346
BLAKE2b-256 05f3711ea2b995f817b3f481dc8a0c442df9865e3fdd6e5317329fa5c73e91c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2cba0384c09520f302afdbc5978ae1d8fbac359ebb83db4abe5ddc9d0c941b8
MD5 83c6e3daefe3a4311bb6a27a2406e763
BLAKE2b-256 097973a5293176cedf65fe980b87f990bddc8c3a659b7338dfd483fd71e4bf0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e24f4ec59b507774bab7113881101cc0f0bfbc800f0c11268d70343bafbee11
MD5 19f44f06a7e42d9a1b826971dee56b23
BLAKE2b-256 6c396d8e92ab40661245baf5fa50308c73865c405bcde5de32307f3ca8ee2212

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59e18d2c7bae8478b92e1e2de7a23f24b99956c35e09f894823eae1232481df3
MD5 a15a3e2e62ec139716601cec488123a9
BLAKE2b-256 36c2b02e2bf87218abe7084141aee9c870b2bb933d7ea5fe3f220306eb1690ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8409d01c4e180e6e1240ca341c3eabe931991a23f3263980e1b27370b1233f8
MD5 8de5a179027cc9e738b4f0413e049607
BLAKE2b-256 8ab05b56184173087faeecb8359f860428b340c59eff70c1f8963bd8d5d07af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54959cd8678b02a9295cc30914bce0793380a9eac281e436e0496baa3d83d067
MD5 7d336264c21a4c9d64aefc6221a1ede6
BLAKE2b-256 007f103695d3b03ab06bcae346e7bc9a6ee60633271ba7fb6cd29c6adc3f9366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6372292f1d5ddf81f2ff6b8693530af7c22cafb309a3081fdf955161819710a5
MD5 b0beff2effb94cd14dce134484456b00
BLAKE2b-256 89623ee8841dfc38e14756904d11da1f4c78b686744b6d5b0c4539f6b069da7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.0.1-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.2

File hashes

Hashes for yake_rust-1.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 750234c76577acf943f969f312fa793659071f680e0664717304d9ce318b901f
MD5 9c94606e7d6e2491270d49a775570fe4
BLAKE2b-256 5a01c54f4b60bbc59a177bd1f466514239f678becf1605ed7be2701f25764025

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for yake_rust-1.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 420d937beb0cefe28ba9189335a59cfcdac8866990230025aca0feab747aaf3d
MD5 25aa95217453038a2bcadb48abe65be6
BLAKE2b-256 ce6f7f9e2b0f38b5dd8df1456965b49a7d8010641598e8469dafe3d85db5761f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3bc3c0082e5577c3710427a4554c3ef3a9476212ba5382709c9a9e25b7f3fd4
MD5 56fe7f86bc9cd0d36d45276eba18b67e
BLAKE2b-256 d4a6491d87d81f9d00c2e39bf58d61a3b69802ed85ae5d5d15eed0b18a2eca5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f255b5fba0336739e70ca46f201e6ca8949f3931d8eeaafd78c46fc8e12db064
MD5 1cfd5ea7d6360cb2cca6fe58a5a1c3b0
BLAKE2b-256 de0f1a0153ec2258ead4a68fbcb1d2d001754e89f542548e58b8da1f370c702c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a13edfdb2fe8743eb97669b3e3288c49b7a105293731372f8010c7be9a1e3b3a
MD5 6d4ce9b5a56219690d670b6e38fad5b6
BLAKE2b-256 c0b0b6ccc66123ab385444f847068e10f7d3d5b2b634a33db00e341561ec56e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8982c0c2ad68c1b0790a3b854bd1bbf0b53cc5edcbdf3d3effb4dd86b37bce5
MD5 71c5ab9a0ea86d84257ae41f2c966e16
BLAKE2b-256 0172338043cf03f53b3f7a530adf5e8214a50ff10256b07c020813c14565e1f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0deb4d69724d1bbe622681038e4d70933ce9ff8bc11d0429228a870ac83d72e
MD5 9d00bc91e67ffa7944290126a5a5b6e6
BLAKE2b-256 f1cfadf77bea7e722c856f4d2b344df4ade69d29f00dceb5079798db53a8c1ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 598c208845495c606ba3104337e939ffbb6e3ee7262a95720a210c62840d3d1c
MD5 7afc8c1c532f415066614eb400111002
BLAKE2b-256 8ddd0f5de43967931d20f5d236dbd95232fa0229cfce0f7d245551787fee6173

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23efce1a2b70e9ef0e80a96fc3d24f9449049c47109485ddbfd02a5deb0bc2a9
MD5 819f761ef6ab58eb60b359caf0a88869
BLAKE2b-256 e01b17194af47885d402b31811f88eb1364836a390397aec5a3baebfc5d9e9af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7faa1bffa8df095e413a374bf71e4ad4714a9c1fae1f0f3c0f61099d6d4802e0
MD5 aa5969d71b248b24dff683bce3b0f9de
BLAKE2b-256 db6675cf489ad14047662aec0ae3d8b4612d0f3cf35e499698cc5f098df6f8e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fddc376bf03862ab2363c8ad8d70b0e3ad9df7a5fc9f16b6d01b7913b6311c63
MD5 a1ff12535fd1178522b3839dbd4102e6
BLAKE2b-256 b3668ff5db8681bb66add9175fcfb00ec5ffdcb49a87cd629308d1896ab4c693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f4e28a410cf23984b9c5b54ec2e52338e5e5dde8c99391d0a96d7733d1b2acbc
MD5 0485e7e889543cc49af60bd7f725ffe2
BLAKE2b-256 6d9b2aa27afee6f89cbfa87f52582f5109473c39baa1d0b514971c75f8febfc9

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