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

Uploaded CPython 3.13Windows x86-64

yake_rust-1.1.0-cp313-cp313-win32.whl (988.2 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

yake_rust-1.1.0-cp312-cp312-win32.whl (988.0 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

yake_rust-1.1.0-cp311-cp311-win32.whl (987.8 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

yake_rust-1.1.0-cp310-cp310-win32.whl (987.9 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9Windows x86-64

yake_rust-1.1.0-cp39-cp39-win32.whl (988.0 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

yake_rust-1.1.0-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.1.0-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.1.0-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.1.0-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.1.0-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.1.0-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.1.0.tar.gz.

File metadata

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

File hashes

Hashes for yake_rust-1.1.0.tar.gz
Algorithm Hash digest
SHA256 02089e0623a0453386af939dea9d745d1a57e4664f260cc9955442508ed42f05
MD5 a85f67ba6a8d22e5044cf19b6e349a00
BLAKE2b-256 7f90f9832df6d2a59ec7a4a2a864d3d8d9de360948fc39615cc218acfd7ae692

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1180dad4ce1904cd5904d240a3fd0b6f10a97ff73961f30cbf35ddf8dca79895
MD5 31d2687c95f2e458da742f68d3df063a
BLAKE2b-256 50178053294dcc5e873884a2f7304ae5591ed98396bb229fe04f915e83f3c64b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 988.2 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.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b68491a70da2d50b9c47a7f44d18e5c8fa94d8c0181ee77e9a5e66987bd00bc9
MD5 4411289f6bc9f312794f75074d25103c
BLAKE2b-256 939e3e1b565ab165d32777f7652750ff68454f8116fe1b1b608748fbd25565ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f82d0a1fe7590577c1eb938cc6942d84989fd7fe08d86f54ce02f3f5606c21be
MD5 eddc77dcf22be6632314870e30a6fedf
BLAKE2b-256 c9654d3aa4b37b93fea4c4be68948a288d0eae1fb605d8c35216f115bbb02263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2522f2ca50f0472555bd7a0fd62c14ec5d3717e99f04d3f21e09d4b6e18d45e6
MD5 a659b6e2f97dd71e4925c335684d1e3b
BLAKE2b-256 db703007a2f0f6b9705efe03d74073c57f347afd35ee6839c212931573494d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 518657a4f10ac67f7472abadb59d5c2011dba080929ee83d0f533eb34835747f
MD5 d4a83033a13b69534dc7aa1674162e25
BLAKE2b-256 7e3bd6fc996fa0750736a377462c249cb660bb354677171de10ae1e4c8699c45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f619dc4e13e4fb80dbd1b67fb581fefc38e2b1d550d884a450eb7e937ec9312
MD5 07e3418ed706491e780b371e79a83ec0
BLAKE2b-256 c0de138107b14f7c2569ccd09b08ddd69e3ec9b121334531298779f0e55c8790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fd0f82011b7bd46a81dc3af2eae276dc333608c3b4cb240d63ca3c63fa204b3
MD5 368db3444f33f83865cf4a2f67e91733
BLAKE2b-256 ba2cf8dda10f84b517b321ba96043f7fc80b33c0be890ecd8ff66ba2be4eda98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4fd76b15d138257ab77f53ac6f0df3cc030543a410e0c9aed102ad4462168af1
MD5 fc4f4a0a80a0298569a41761504212eb
BLAKE2b-256 8b1d5f09ac7e49900c6e3d36787bf9c3a7013855a1d489f9c6e43806d217dd30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 88311a1b71ab8a9b2216c21df5ac1d9fa96c55b83c189104a13da04457c4c7cd
MD5 42d095c4c4c7833ef90c62041aad2cbf
BLAKE2b-256 6ce77790de54e6992b985545b06aa51bf055cbc3b9e75cc24bb63cb5cecc009f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03d676a83e4d73ce7385af535e8f41f21e315df35b1470f931bec4eb7a81b18e
MD5 61b63b76552a845d138ee25c4a8a578d
BLAKE2b-256 bd8fc9959db018bbfb09d9052b7bc680bdb5b37f325273d1e992ec88f21c6c81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a128e991d00bb66e4eb3435bb111225f10330e2d095e71ae1e611104b80d7d3
MD5 e44d96e39fe7815bfc8ba405e61ae960
BLAKE2b-256 c3394900801c20fb2ac20c415f756ec0b7116b89f88993e6699d85629c4a0078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6bc2376166e4e7e8a6560786864019bf5f582b1ea23a07b16d844f2d7ed884c2
MD5 1875e188028fa46b06738086be730fcc
BLAKE2b-256 1222e63b17148396e39f6c90c51027a2e4488acc16b797ea76d54252bacddccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecd61b41ff956f28ae252ac2ede19b67aed5b2b4c7a0d932f006172d82a18e1d
MD5 1ff499b3e4fc21e688e0feec8988ea6b
BLAKE2b-256 382c9564c44bc685c5bc068a57debdf15fdbffac09f1d4de27c867a118c82572

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c307b7aab91ae1f5f09d4f4d03a3330d92d4eead82dee8ac4d73fec792fe6c8
MD5 c5f2a0778d032d8a2e1e154f40f203aa
BLAKE2b-256 1dd94daadb3f3979f1d7602a5cac47c553751d24f07b2eaeb0cf719ce0f7c980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 93d6771bd52893f6f8d2df62ad165ae316ab31140a8f0bc1d91ebe3ff599c864
MD5 10371227dde7a62ccb18241444221cd2
BLAKE2b-256 f6ebeed5aead1f27b321ca28de8ca04271d27d308644ede49409a540d470139a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 988.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.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 85c6ee232700bf2c62bf1179a239a52fef6b3ffa106845bd256a381764747106
MD5 62b4b331cab235b4aded293deba10fed
BLAKE2b-256 d08e3f622b3820e5108e3e45f21bb882c9f5541f022272498a4d2fd558de8b4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d40ef927b33c53a757a2361e23c62d9315e33497525ba8095b763a4aed24b30
MD5 b440746be39ee6c19bbea3992a2ffc4a
BLAKE2b-256 c786def0003aba16ad47db7a0ac7e4d1e2644a1ecd66cf08315709fc1f71ca2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e98ccd0e6ca3aadf068296da1658d8eb55e21110800f032189c60599f1de200c
MD5 a35889a54daeb0f4dfe2f1338440e474
BLAKE2b-256 62491d345ba4f31895055173e4625156ecf5a57cdaab64a2e2db00dbf00ffc30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15e851c0fb83d46b3581b97cbd2b33324e6e31d5ec30b429fa0937af67294df3
MD5 cf76f6e90db7affa752adf3d97b603ab
BLAKE2b-256 7565093ba12c2f348bf337e8e263a15bcab69a84b8d26728c5a717fdcabf9d4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1682ca397bd424a835fd8b425a194d100f01740f22af4d7c050040421723adf8
MD5 9e4f1c360e7a63f6603260e60ebaad4f
BLAKE2b-256 eb2a1fb3e0721c9fd754bedef4de69a483f0069b024984700752927a495dfb8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91d72fff5419dd4c7cc35163e1403ad68910b920f5e04e82f4d44519fb549d29
MD5 62838d1c2b654d301ee7527c7dd1b06f
BLAKE2b-256 2083691b55c10b8d9e155df5f144602e2710060a6adde27e6b53fbd6dfa7b200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fcb0c4d984953086f8eae86ecbc019f42c9e999efcdbfabd3143b018694f6b02
MD5 f14f825a0af10ca6bd52f134fbbd54c0
BLAKE2b-256 14836f1ce7a698c402c39a2274a97eeb38fce648a51e8aa8287ee4e777ca5e1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8fd88f78a4f1ee787150faafeea18b6befe99cc47f284f32b85c7648c8e8edb
MD5 e63b4371ae28c3701c0623730c1bd17e
BLAKE2b-256 15c04a8f6d721a79d318a1bedff3c157d076914233e7368ec875c45ec1315c3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e430b2655c2a59fbc46fb99c4e84b36a07ca7d1ce1bad4b0838dd061707e607
MD5 ee50b5e9d1f1211c55d5a4bf984031f5
BLAKE2b-256 155c3edea7d07894760c01fdbf2f7e4f6c7db7516c8c5d2d061d390053471f6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4be6e43b564e69528800befe2f84c7962cf473fb6d8c31d9996ee55e024b6a0
MD5 03d3993e63ef6d6901cf4668cc72a07c
BLAKE2b-256 eebb7827ad0fc438dd3f69a459bf46006c1c09a76bb3a8f4843f1b22b162eef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb98d168bcb4e38ecc704cbc623567e53e43e4588d3329e96e053cc36b7b1cd0
MD5 ffe8e0d9aac3d8a7700d2de2a322c4fc
BLAKE2b-256 65827048faec09a0ca791129ebdf1e9f688bf191028bde02377be9c0453976af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a774c9f0eaf9ec4fbf992c89c16ff4aa2c0436a610f5039f2e035e83d907c59
MD5 40e287b57ad65ea2dc3cc2930e852fa7
BLAKE2b-256 ed81c2d3cfde7027f3e44baa160a5df8201e80b7588b521dbe8fa005f946c969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a804c952deda2c76e0bacb249d95c16bd264883abaeebd71f752902b1b0c3380
MD5 047e38272cda93f20bdf8eb7dbb3fe7d
BLAKE2b-256 caacef61c998c11f181f709ef2c95cf27b8bff18a96c3687d2eb7992f391af10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b83e730ad76f843a2a5ac077e4894f0ac11c1f3df832ce1d4b93e8b622e7cd20
MD5 a128ba0850074c15e23c0cd90d403c72
BLAKE2b-256 0f76c7d337b294300a994ce2b54ee9744574cf433e99d73fc31a69defc16a8e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 987.8 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.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dffd48ca14e1cee3b59eb859d54ff5ce67b114d1c5be70fcb16a1798c4bc8a9e
MD5 c5c456cf32adcea6ec0192a82002c19b
BLAKE2b-256 d512dc058a12c9b734ce8707dc4cca265b2c4b6aa02f98c1487d200c4c0f2bba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dcebbb3e3198e549a7b13e9aee25de14c54a97e9c615489c632edd771c8bf5e6
MD5 751075174532b10f73233e5517ba810d
BLAKE2b-256 7913466aa9ac44dd4a9b0d535db5cc3b44879239b543d4267b6e584fbe4597a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ecdb526ea8c047b7ec7a97e3b68396a12902bb458c715d0571d701525f088f28
MD5 f918560ddcc2f3ed1a727f1f2e9cdf57
BLAKE2b-256 cfbc4dd36a3e1f861c43a052eadc9dad24fff10a7578199fc5f932298e685091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 512c82b257c5717935ed2c33688ccbf2856abf5d75f5d864327a30eb04179fdb
MD5 3b0f1845500c2d813150b33315efa5a2
BLAKE2b-256 d5d9374af667b443269b569134fea2e8f8d25964bc9a44a076fecd5b76c60b32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 848af84c2edd0156c907a69c13e62cc167bdea49c71e87f825b1490b3b8eb350
MD5 1fa1b33616da23cf18560817ada8a153
BLAKE2b-256 521f1a30e3fe8e7ad032cb7ca6edbf2429fd2525f74fd21476ad845f522fb8c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60176c3dde991e025af672651b0b2844270950a1be737fe8c7048c91119ef218
MD5 59fe20411ecf866649dbeb87a7b24c37
BLAKE2b-256 e721b0c0225bc2d122c0a22710a19ea3f5f83d2355fc459332766016ac7c473c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b2ff645dc286c8f65cb2c0afa63b283961ef0b48671196eb538146a451a1d1f
MD5 66c92cd4f79e215fe8a49ca27e37a0d8
BLAKE2b-256 13720b334d80f86b6f8f31a9c365f7b0568368f9273ba1556d95ff185aa1f44d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e5a6453b528612e05d8eb6b836d93209fdccfb9aa34bdc3baa2ae779d84b6dea
MD5 5776d775857031d140856aade4a8c7cf
BLAKE2b-256 7e82207d023265c4f2a5f535dfeea2600e60e543f0d36857558379b01313a96f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b336ed22f95ee6f95fb976bf3f8c0fa2fdf5143e578f7991c05e2aa2133779e0
MD5 0c4f1581c2c3a8195e8142fa10b56504
BLAKE2b-256 227384412a8e2749fffef9cfefe38985680c254208df9daa628a4c5655769a34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6245b41daec790032ea79fced708342ff5dcdd4b3710abf40d673044b03ea78
MD5 6784f10103aa71e838b8a106ab48568f
BLAKE2b-256 b3f5170393b7174e66bb3e52195f930b40fb1756f069bf283ed061e6b1304bcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a66da41c5a28d4d7d91642d548050e5d609be393217f69b4b1531a3855bf3f9b
MD5 cb19ca1d574efb111e1c04d780ebb498
BLAKE2b-256 3555bf59db702afe61aebc753b4bfa16d7c9312e94a6cd71549c06e9d7d6dc84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac0b7599c9ecd6d606269d9e4a6b9939414b0bda807c3f81a24443c7ae990d3d
MD5 5eadf1ff71c4913049553334b25b66d0
BLAKE2b-256 1fe566d9270da568edce396643ca4469948953aaad1d367aa2675ef4011b32dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6d0fc9acc819b66c69f336de1b90cd8e1739ba6b4697082c43ecfbe548e2a6c
MD5 dcc78cad9df4428deca93cae114dd3cf
BLAKE2b-256 fa1cb06e8f79c1742eee27af583d62c2b6d39288258afdaa608f0c3898c982b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6248d898a4e4269bb1cbfff0a9e81147c3d6232310d1c6578bf6c41ed982ded6
MD5 46e623af38ed08b0d0698db8c80c59c4
BLAKE2b-256 5cbdcd6ea461543bf1f18aeb1cd03d007281b603cb4159b20556617650fc8182

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 987.9 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.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d770783453634b1e9cff5366526d5647f6bd86925899c8e6d9e2c88b16d702f2
MD5 f2b2726ef413ca6355efc6eda3d3b76c
BLAKE2b-256 e31c3b3ad9a64b8ba2a3900e1b65bd33243a4763565fec9891afd3e10c44c4ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 29e1c93c1e1d4229c436ad14dfe53e2ca0322e79c35475d153d0ec8b5d839de2
MD5 6d053027d298d3b6123f99cfdd3dfb61
BLAKE2b-256 f6dc955a861062a4ad3b0381423561b9a24aa15e26bcfde9d581e431b5a31489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21f0efe28bbbd9ef05a167395f90d3433c581f0f10b0422de5909f7cde6b4b4e
MD5 b872434298942ce3fc099a1b9bbff4e3
BLAKE2b-256 b8fdc3c12d164579e8dd9bc37f7a4019ea7b995eb03f298e52ad7f89debe7e4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9e2a1ad1e39bac5eab4aab5a318dad8889cb6b903c6a21e47617fe7c82b1cc2
MD5 4d425d3b0700ca222761e8aaed1baa90
BLAKE2b-256 ac8125c5909b456240555fdf7c4235a0deaf78d6cb877bc19b915f49e0a6429e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af479a072120247d664e7e1f0af7ac8d0252874098422c6e809441cd699121d5
MD5 81df79044f3a2ee58cbd895d2601e117
BLAKE2b-256 4fea303cb9e71eeadae9fdf98c0ce114f32b4ac8a5e620d71ac97856c4fa9582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c029c9b370da7db432fe73deb23e53892cd27bfd4705e1dd1182a53785a84452
MD5 28000e9ae8d89f4763ae39ebb2dfb545
BLAKE2b-256 7f3b5f7551fa68235e7a9c7714671df4799c63b8c1ddddaafca59c51d8021f05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0929619bcbbeaeb627dd69ed229efa56ba4ad5ea2f1f4a69460387be8072470
MD5 031ea5f9890b706e831952bf68c1a324
BLAKE2b-256 5c9dfd234c31dc970c4762c2ee44bc7c4bfd6b1ff9ad99f9b19d644f779f6ea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 747d72b1ebf7d2cb34f490532102843d249d0112f6a73efd64f0d00999c054bf
MD5 c8fa5ab28a8dd941e378164d1e704e07
BLAKE2b-256 d5c2cf96261bc23e59bd063f5aba707669e320745f27accc8a9987fd06659169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aac202ce6cb0821606ecf2d77523fd200521d3753d0d1f318f66e042a3848900
MD5 1faed6581f88ee1ee27d120e51299fe6
BLAKE2b-256 d80d16fbe01fd2ce23123344a7e5ef1520cbeefc14b1d96a5d74c3b77b8da82a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2100534c72b7977f00b239c8715e3d959c2f06ac59d4bea3036dbb7da363e84
MD5 b048fdcb450c0e4ee4c546f9fa1d5c73
BLAKE2b-256 b753cb0ff26a2f93952fc385aee0b71b0fe3f8b88b229e6a6211054c02502601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 24f8ed739d957df2067ccf2dafbdf737cc91a0d90ae53ededfbe38fa10363210
MD5 cb6c3912c255a440a045af5d966370aa
BLAKE2b-256 f3311fabc49d68dc531b21edcbdcdcc05e6e1e1384a3c0275db1866117f40386

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 18bb0cd7fc251cb8d8065fb7979f4e58c27a4b6165dddbd9f8c7c599a6a1c317
MD5 f4e36ca5047e4c6eb4593ccef23a1504
BLAKE2b-256 3e9e4ed6991238504f5464fbd4a208d857cedb1cf852aaa978c88fb72a71057c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 988.0 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.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 357af75a924f7decea6bfd05fa19feaee00d84d9b022cfd416042e13d0322113
MD5 fc53d3669f68b37990911b504821aa93
BLAKE2b-256 264ecccc5031c56424e3c7c491badf745f76be0858bac5bc437f6ce0628db1ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d12857acb5880a660cac270ba9c78041bf7a72982b626f5465d0058745a5ecfb
MD5 2ac3bbc7dcca7e544a6a2faf6c54e924
BLAKE2b-256 02ee4fe12bb02a8cf9bf1e8b15d3723af989f2eb33b2b925f72f7ff98815ed80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 623cd396e6fc53deab85855d989eb341f10eb2d667f503c896415a5f41f0550b
MD5 506c4187d36ff49201f943281246675b
BLAKE2b-256 f2c0e44552ee970b74167fcde4b864faa4b7162053e4db859078e238ce349d22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d2f2af75e4f4cb247a02ce6d975418a0c85229104ffefa7eb4f81ae81ee514a
MD5 8e4d9c858677db7b146a848ec2f3dbf7
BLAKE2b-256 5018e8b8768971dda0568b279cd27bb5edb5a2b2b450a29ba12db2dd43eb642b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d873606d4c352132c586d05ec45cbd98f8f6dd7de8e8009c3833ef03f91cada
MD5 94c43cde881fcaa389b8dc86c128aa2c
BLAKE2b-256 2b88eea3242dcf4f5e2013e2bb5ed276ff3c858f879cce6e9e7fe7e069e7df9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b5df1680b13f96bd9d9b4e66db06e3eb2e3cfffcf92f19ea2575f9eb141812e
MD5 73204a9a7d789b2da63f42d53773f297
BLAKE2b-256 c83fe363ce50926dd65ddd1129359bac54aff4cff9e7a144f6b2e31438913591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9fbbbb6adb457c78b25acce467c53f7f7d00052e9a8b9fdc7b7cb662f1a2bc2b
MD5 42f6f3ae0e1be486c9515533b0c90e9c
BLAKE2b-256 a74a8216b1a415e7227e0c3942841eadd2b90a4ac17255b80e46d866ed18d8d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ee6d781c72ae3c83e4d0ad7fbb028d5e1f0df1e51a13ae5b523e618a28cb241
MD5 e480989ebc5ddf3d98a3451aead74b11
BLAKE2b-256 256cdea979319bbe870c389712d0b4b48fbb98285da1b82163974bba88f83bdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 550f9614e1360113f336605c0acfc412d6bf4579673e31efc269111aa562ee6c
MD5 5975d56d2b7bc9a80ec26c938818f579
BLAKE2b-256 9756b947d72ec97a8c115987e22c53bbfc19ebd28fb174807a85b9add493fb7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b859ba83aef2130f82d22d4cd28fa2b326324003e39e9a29f3dbe18f542e9966
MD5 c10e36099e8c932227f67a069e96a683
BLAKE2b-256 1798af00c033462d22b66b40e0bfc8f4b0ae75bc167912212a3a15302d019438

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4f54a33d5a2f57eded26d75a49d50aabc42653be54d8f1066243f4866068a865
MD5 0c0e37c1a6da3f01ca881f5f64597a32
BLAKE2b-256 f0108a1a37ac0a0185b86384adf1e72ef7e654e9caf724effc54fc56215bad11

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