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.2.1.tar.gz (154.4 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.2.1-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

yake_rust-1.2.1-cp314-cp314-win32.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86

yake_rust-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

yake_rust-1.2.1-cp314-cp314-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

yake_rust-1.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

yake_rust-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

yake_rust-1.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

yake_rust-1.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

yake_rust-1.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

yake_rust-1.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

yake_rust-1.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

yake_rust-1.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

yake_rust-1.2.1-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

yake_rust-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

yake_rust-1.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

yake_rust-1.2.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.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

yake_rust-1.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13macOS 11.0+ ARM64

yake_rust-1.2.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.2.1-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

yake_rust-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

yake_rust-1.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

yake_rust-1.2.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.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

yake_rust-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12macOS 11.0+ ARM64

yake_rust-1.2.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.2.1-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

yake_rust-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

yake_rust-1.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

yake_rust-1.2.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.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

yake_rust-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11macOS 11.0+ ARM64

yake_rust-1.2.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.2.1-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

yake_rust-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

yake_rust-1.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

yake_rust-1.2.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.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

yake_rust-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

yake_rust-1.2.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.2.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.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for yake_rust-1.2.1.tar.gz
Algorithm Hash digest
SHA256 2e7aa1cb6bae195168cd44dfd7e3a30d5e31b7bff6130b6393583b282a10e8f4
MD5 5662109b37630ca1d2ec8cc5de7b27a0
BLAKE2b-256 4545b15909d6e8bb80d8f7928bbd619e3e61c9379cdbd5fec8c8a5c8b730f9df

See more details on using hashes here.

File details

Details for the file yake_rust-1.2.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d0d15e1689c100de15b0030a21e705e1c336eae404999e79495e478a189c898c
MD5 47a75479acde1412a6b990c14378ddee
BLAKE2b-256 a5996c9ea8307fc9c72bdcc0d2ded8b905370ca43439afc77206ad4310798ea3

See more details on using hashes here.

File details

Details for the file yake_rust-1.2.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: yake_rust-1.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for yake_rust-1.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b7501428c7e0d8dbbb11e30e48c7e031c35cdb4f33e14b05ac6ad402dc0238a0
MD5 fd3a02d9ea18dd59b100a91bfc20cc49
BLAKE2b-256 545751a86cb6854f062ff6a6d1c1158831455abed346f72f1b7ec5c86cac23df

See more details on using hashes here.

File details

Details for the file yake_rust-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d27d53679952bb998f71bb5a14be11ca628a8b1d63965123b2f50263cb10a506
MD5 4062c34a3c03272c9a933bd73f6a5006
BLAKE2b-256 a4743a897577039e8a9bc6d234f913b2d2fa2465bd7f19193c109a43a5eada74

See more details on using hashes here.

File details

Details for the file yake_rust-1.2.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c9ba145eb0bf655536f45627625068cca84e6a87ce2cf972c07d7e013e572e0
MD5 9339eacb0937e28633e1f77209f7723f
BLAKE2b-256 96b74c0250e64e83eaa4514b60d19476950131ba0ca79721815b2a1a9ef47294

See more details on using hashes here.

File details

Details for the file yake_rust-1.2.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f01fad120b20d87ab19e1623926e0c9a6dd887e73f7b43102135151dcd2ecc1d
MD5 9954bd1508b51f7dfc224999bfebe562
BLAKE2b-256 9dc4770a7143e0df60215a9590864181869136379d2248c36ece2ae7e7c888df

See more details on using hashes here.

File details

Details for the file yake_rust-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 942149472cd9e1daf7be8750da947b61271e03e5a9904f32687571ccea9ab247
MD5 9034e0105b18a74bd144753828da3c95
BLAKE2b-256 201c41431a786b2486379870cdedd9a0cda1c52a9568741cd2de0286a3f0b10f

See more details on using hashes here.

File details

Details for the file yake_rust-1.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa2f9af370232f5e220b4672b5c7806ed5b5075cb8fd6dff1edc0a6d70d81628
MD5 95d2cc8a7d90b3d6df6958e46c30e9d6
BLAKE2b-256 eaf2dde292c9f516da9630747902a2a6566db2c83b0c567c896fc3771d234e83

See more details on using hashes here.

File details

Details for the file yake_rust-1.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e19e5769fa00be5e5f5ed605a1f77b2d30a0d66bb3619f99444608c3c13bda4e
MD5 9f1bacacfb5881f1f1bb90d7c54c82ee
BLAKE2b-256 1c4ced3bcb23533ec6ff146847e17a63e6e4d48373ea8be29d676c6ff8e6f3ae

See more details on using hashes here.

File details

Details for the file yake_rust-1.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6de6c4b8d6d73b126f58c5dc293167308c841c4b16fede23f5f537f05c8c3d3
MD5 71fae78877f397b3cbf3a194bc5ed7b8
BLAKE2b-256 2ef304ef1d3421b07513a306f2a3c4e3e2be95343aabc604c076f5d28fbc3f1f

See more details on using hashes here.

File details

Details for the file yake_rust-1.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cfbfe7c3019ea6cc81486aec4c40df8a428210049b6c5e6af55299d8c731116
MD5 5cdae4185275dbc55b031834e4d24482
BLAKE2b-256 75a555b833ebb06df6fb117a64aff330016811ea03bd7e5ef41b645079e6fc68

See more details on using hashes here.

File details

Details for the file yake_rust-1.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6ede46777c89f6a545b0b8bc0693ed552c1e3c5c792d8dad1ddce0c450ab7c0
MD5 7c46df3d2edbadfd765953c6562c844b
BLAKE2b-256 d31f348c75a084cb8d09b75df9584df2438dbaf77c0dbd736017070a1c5772f9

See more details on using hashes here.

File details

Details for the file yake_rust-1.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d6056174986e18556c9f23b309d4955f0bf372822389caea696f9d35a234b104
MD5 d3c31278406fb119c5840983d891212f
BLAKE2b-256 5e93255d9cf6b27c2089156cf6d4371a170b84e4d8a106c9481a10f3b8355651

See more details on using hashes here.

File details

Details for the file yake_rust-1.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4400626ff542732268c095e4c55a3b86ae8741b27a1891e1b941c275867aae46
MD5 ecad93171d36a88dd009a67f884c1c6d
BLAKE2b-256 21c9cb7634c588d3edf0c75be11134cf5ce528b571bc52e6185a670344c8019e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 09729ddf830eb212f528466be89c69bb58463dffedf2c4fe567316e4ffd6143e
MD5 281fa3af9b9c1c6aa10f8075469700d0
BLAKE2b-256 29753d81ea24cb857df5c9f86e26d23062b22598cc27e949daa5294f3c0fb159

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.2.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.10.1

File hashes

Hashes for yake_rust-1.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 70144efd68a255bb9034275d988788e35ebb3253d242b0ef8bec32d46fb78271
MD5 1c5245997c5e8a27afc83341c8f21ecd
BLAKE2b-256 c8d36d187eda5ac62deae08d0552165ab140589c0e01eff7403c2e8d6801a0c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6227b83d2e9f2e5456001d8bf5ec6f18e71a6a4819a63c331a7952bf45eb251
MD5 164f62ce23315000c43a533bffe2d49c
BLAKE2b-256 0f39e01c525c5ac27381c21db2da455a098847e19cee81d50de07c388bf483e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9a9d0d6046e6dc1354e4b99f852c8d213eb66a7a2beaf6164db189439d8b95df
MD5 2e803307501c392a591c0d7e06281b69
BLAKE2b-256 85a9a2036a6d2318c71cd569c3f883b0b54f5c63bd274794279c84de56c58605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 410995df60c7a79d01258d6e017f04e356f065dc02aaf4153e19026a1d76081e
MD5 158cae28ff27871c50bc0f16d32892f7
BLAKE2b-256 7b541bb366943dae3138327a2bcc4094c7ccd273a32c67dfd7bea8c48880b90a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bc260c21bbd1e487d31addbbe27194ee59ce5537f7c83664b5eb9d264dda7e7
MD5 740de7fa407173669b9c962424c0346c
BLAKE2b-256 adb9fd4a4026aa8af39079ead1bfb0abf764e4753cb781236804754c8c87cd27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8418b1454f09450840f3058cc1aef34ff4478f4bfe55d923fff2cf6e3076a7c2
MD5 36cb5be7934f1c3deffe7099079ce564
BLAKE2b-256 2bd377adda65337e5a82bd67987df0229f1fe894073db02c84be748ba9a9b2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86ef41d08a9783085e0b66bfca4fba92d6248e192c5f989c85b7b75a20cb1fb2
MD5 e10c84592a1915499c58692ca7f2e5f2
BLAKE2b-256 e658debca930f74f0d111363bbf54a11ee1b0d4001a333aa3654c35b29e27a56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 87b1e5d229d99a58a12816490ecb0f8196757d6fead49525b9a08c393fb94861
MD5 de765639e60bfb7b81767dea490accb3
BLAKE2b-256 0fd2a07655425bf859142d8168337ee890d802d21242b5a503708fa7252be4ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58f93518370724d17dc67c966bbd9d4e7e6774db3ce0168d672cc0e5d2ce9fdc
MD5 1768c4fe0160d3bd7ee0430a4467aa86
BLAKE2b-256 43433413def7efd6d830b80e2588decc82fe1fc946bbe177dfdc1b82830a1830

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78c20a37f98720b91abbebae461d08f9726b7136d3e137d0100c51dd8d835750
MD5 61d40048fd018f2793abcc7ba770be63
BLAKE2b-256 23c4191c809f06f54b788f62e1587a203408d310938a80d74aa8f353ed4636b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 53a0210a181c588db2bb18e1d44c17e23a5ea0d5b4c6906901a7589baf3ef10e
MD5 bed3ead3e034123f744dae78f56dabd9
BLAKE2b-256 80759118b442e29e5b2fe9f999497f7d9e8289501e65cd0c2722ecdea8404b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59e61029b4a7a8bc1a2ea7ab024ef147613bf50214c32d5787cf75f4df5894d0
MD5 61adc18be1dff10fa01584b1253ca4d1
BLAKE2b-256 295fc964f52df651534d41aea35ac1fb2b9724f8cb655f894719d6c1dd6035e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bda20994803697873ffec3578f46031af97a9dc1545a6ef79a7290e8cbaeb74f
MD5 2445183b04f9a61352822b6b85096e10
BLAKE2b-256 28d008cacfff16ba2010b6dd64c7aca713a3d3c2f615bcde7de32f194333b41a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3981208ec05ba4d0c70054fab59e60c1d4be987ae6dae79863ed91322d8be5d2
MD5 42fb4484029e6f9b8018c653167f491a
BLAKE2b-256 c275b21fecd785d5842c74c57c603d46899af9be7c63de147d85266cd15c52ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.2.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.10.1

File hashes

Hashes for yake_rust-1.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 68122a7be895ba0572ba542b601dcc512a9ca24bd44f17d6753d3e2786a324c9
MD5 58a467f338637e2f9af59e56a098806f
BLAKE2b-256 1c3df9691b0fdbb922fa964e3067aec815ca883950dcc6b2b44f4f9fc11af30d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1f585dc7987a39a607cdaeed8de6c471fd3a7c8a33e88c225d66346a1bce7aa
MD5 b5bd7f6d80dacfbabead2f47fe761b76
BLAKE2b-256 c597c6160d736b170ccfe2a9362fedbad539d10a6206702d718b6ddf66570b52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 530a94a66583936e34ef3324bc3dfb43e7c377fb8bd17f7a94c8121460092521
MD5 dfb2d4b05aa7c32c33ccc0ee1e7ef05a
BLAKE2b-256 0823b7a17ba70ce5462c3359662b850e21488fe1d8557f45599e22031d774802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a2b54711aa3922d51efccee0f5dafed354a92cfb9faf0644ab25cd4723ef2353
MD5 ea3f90b9ad862ca226dea2e77d727ba1
BLAKE2b-256 014eb910eeb55e1f7ec228e693eac8659fcc705e8c3003387a6dd1242a8ce9d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b55ac2587a28356ffeddaacacdb7d511e466b753599a61c07c1c7bdea09a3d86
MD5 a4e31451d7523611dbb297584b9af0e4
BLAKE2b-256 b82e5dfd890f45ec84932e7b8ed3bc58589152b8021504599782edeef2855592

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 294d77d775fd1edec0fe09fdd04d8c70b4d23d96f92b0cbbd9694ceb1bb2c062
MD5 1b27ba2d3c47d65b317e7249c484eb18
BLAKE2b-256 99369b45e2a007f3d696b08860bf9e64b18524d767f95edf4bbcaee5941f9a3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 667d2ae49f81147d115d37fa8c502ee407912898c262ea8169d187f71209a5b0
MD5 82b50a8c6a7f3e489a8b75c66805be59
BLAKE2b-256 79708a100ea67be954489f76cb63ed51cb3e4f7b4c82be1c902bde7ad7931852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55ec4fe26c364eef5d118c57d1a25c5da11c4440ccb3946bfd812506414293f3
MD5 952cbd6a9a426ed0fcfa2c3226e67a46
BLAKE2b-256 accf9767d872ab943168f32bfc96bdda3cf9eaac921967bd5fad214530eb7a3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a7a51fea4e10d31220479d2c6c77536d61cab7181238edb22df98ff0ddeddaa9
MD5 d195cf67b847aafdb68825240aab3c1c
BLAKE2b-256 fdde28f20cfcfe5600e897d1250b6bc9af670c2379332304a88173fc46a0b257

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fa32a1f72e7a25ebb8eac7d5cc2ca1b96ee0bfd68410c229c0b4c1169c5403d
MD5 abf03805ee818eae2a4ba205006029f5
BLAKE2b-256 3e263abd5b07ac92d30e294aa32e6a7bf7a77d8d6e6528e7c50f5d7309e6d483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 393878176806b05c964f7d910681e2fede9845daabca74bc1aa924c9e245dfb0
MD5 49c83c36cb4f1460cf9bcec692a3f7db
BLAKE2b-256 2bf4d4a6bbe2294b30186514ff5199d59cceee9c4133dafd451940a7e4c049bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a05b463c3a9f7bcedfd41d792a9dfe8fa2315564fddf3ffd2ab7e076cbc19f3b
MD5 860a8ec344eee117f04d775d584eeabc
BLAKE2b-256 922770454e80750242b4284c79ba68bdfe9527966526bc17ca0da77dd3cd4d22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 392f810e1ae4041d3ffcfc69fc0ba4c46313e622a4d785d7debb0614d7ff2cd8
MD5 90eb74650a265cab8628e99e7fe191c1
BLAKE2b-256 ab93fad2b6890849a75ad322518091691168b9e86667d2c8c8703980670f405d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3135caabc4931c8d4dfab0e2078d9c96d146cc3d17676afd988261f744e07e95
MD5 95f10a949eff9555941c87f004c01be9
BLAKE2b-256 6518006f260f14b44cae7d1961413fc8e2fd84ff24385fd42264977a8dfdff48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.2.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.10.1

File hashes

Hashes for yake_rust-1.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ec1fc952f6ffb6f21d3417bfc6c468e6aac927c61dcb673a00bf646d3720aad8
MD5 fd331ebd6afaf243ab041e9792b515f9
BLAKE2b-256 7b4dce92eb1dc3017e37cc2d213c2770d01a446f30ef6fdf7380e9e0ad310153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2ea3e0dcf467968b03d4ebea3aecd22af8f1b961e3194ffcade0e88823dff52
MD5 83fd5ae5dbdeafa37b8f9378bf781f21
BLAKE2b-256 6a8a751907ccc440c7afe09cc8af3e530bf6f8751fc2f2295105b6acf808b0d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07524e0db80df2132ad856bee1ad3c5c38b0b14d33273e3de81ef636dced7df1
MD5 292dfbf115aa489c6d5448784cacf75e
BLAKE2b-256 02a1e6a6e330ce7ebfbbf5b437507bcbd2eb21f24bf3b8e5f8f23a8c320b7f0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c549ff4dda245842d128a241685e88413ee74eb1a791fe26b92b4202303b14b2
MD5 d276a3b44e053617f1d4a4a0278c89d1
BLAKE2b-256 a89b8fe6f5e5813d1c76063115016aa5c5a51a7b8570053dd0388b595b2bb9e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1271abe7b688ee27e8b42b31a6be04b6838515f405e0a20cfe63f68dc8358d3
MD5 190f7de77fbad3234d9b5d30932b7751
BLAKE2b-256 56003e6c86bddffbf86b2f4f91d4741e3ecf78dfee0a980c7dda2bc4606ab42b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c72b2a586b2e39a95f82ce15784f31e7be639ba7d11858ecdfdaec75cbaafb4
MD5 50096b8fd3af57d3fb6bc7a35485b588
BLAKE2b-256 94e9a02b713e209636911e5994753d39c371cb77c0d065d078f476c7ecd964c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57ed2bea8c45feea2230ff81f9cc730249e6ebfdb054a23c90822dd6a6f035e3
MD5 1d2554851f5b6f39c94eb150367ef9c7
BLAKE2b-256 08261b1d9367110bf0b3f020499ca17ed40650524ecf32515dd9f4662c9764bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec54e8a24f0d9509f293f19a6fe59ca9e99a80be3194ef7c04ba44edd192c190
MD5 9602a47280c34c188faa2e54e259cbb7
BLAKE2b-256 e8294e961f4700420ebdc47741b3a7d3790a6079dfcd80a250bf57c6ba03e124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ad9dde79c14b5e6521f284ea6428235ae76b191b638ea328f4d30b1e337e6413
MD5 176afaf359eeeaa6a95707bc52240cb4
BLAKE2b-256 56ed6e6eaf1dd4a7c6ab958b4cf785056b325332f6e4f66a519fbe623d53e11c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5957f63e1e2a6d4e4157df2bc24b9a083b39c8bf07272429b714a51b6b7fbeba
MD5 b162ac4feafbd6ce498f5ff02b921511
BLAKE2b-256 970a96799172b296b44e08fe6f81e1325a0cfe5cffad99805305d018258f30c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4739eaecc27cadb8e06fabbb39ef251e59f7a934b405dd1484752e6e570e21d3
MD5 7697ab63636a513aac41ee166a1063e4
BLAKE2b-256 18a6c4ba94677143dd877929bcdb664cdc500ed71df5433a1805eebb9a3790f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 216439185787826a69d3b8f57569d717c29422f81b42ce65798ab9a5b635d864
MD5 4a9795274e69ab657c09a8174e778f60
BLAKE2b-256 bcbf89d88ad61a6f1f125922a47a3c613dae65fdf06fc9305460cb12256d3d67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b8327c906f2ccba76ea78b8a72f142e42f418d75fce97d4b7f59f2e45158c209
MD5 aa8199cdd5e783ac76a8da88899a0277
BLAKE2b-256 03e6a0f5a2567199b17b7d324f00bbb6c4e25d9af953e7dcdf981878b98e9948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2752958660ac7e4be73574feada9b91f76442c749a728fb1a43259d4394d21e9
MD5 e76826af222ca916921419f0ea6b58d6
BLAKE2b-256 e8e4ca59d132a2c0fffffce4ba6f89a0e8f4b0b9b70865565d5383bcd917cc90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.2.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.10.1

File hashes

Hashes for yake_rust-1.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 44b1ac878f5024bbef39c355c2f466ab8187592fa816a6911a8f2af49eb8838b
MD5 99da65d93dff16ea2c77fcb62d550d30
BLAKE2b-256 49d4b79d143bad8170badeb4a3cfe6d11ce7d7314e1f816da1e8dd51c82c1f56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b218ed533edb2cada84be63d5416847dfd8219edaea1f8578ecf49b8092c474
MD5 787d05b833df7e7d127fda0f3c5f03ad
BLAKE2b-256 076ed9bd4d414fdd326719188e17938508586e43ab333973339cdb3509cf561f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3053245226f3d3058ae13b9088ad755a17d043a7fe6ce2270b368bad66755b3
MD5 228873e2b24f9cf112bd3bfa57ced1d2
BLAKE2b-256 4c3f27fca254e399f85b583f65ae3cd61ecef2fbac60441ee62b86d3f0fcdb01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 09e24d6c931b8343329ec927d06fb648c30939bcc2d37ef914a9db65db3e5cdf
MD5 0022eae17dd575cbbd3aa9c2fe6e2eea
BLAKE2b-256 bb9995714097dbb0cfd67558830b834f8d780bde38b2e09d854c5724efc559df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b18d662612446fd1635d4b258b8b4b0a3f629bb9a2c93a75220216a9b79c4ee8
MD5 2f6690329fed695924a7a1ea44e1676b
BLAKE2b-256 5e3e356bf259e14f824ca32b8072b7a2d1b37e2ca7bad4787907f5da3ee7036e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53c0db45ff694511ba6812b94c35c152f5848feaa76cec086bf9cf6357de153b
MD5 ae94c5511501229b406e62f7ea0eafeb
BLAKE2b-256 4158869361e0dfbe56af7888d29027080411cfc4353c5a7e48fe97594d56afe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8067ef956caf813f7e17d81a30b35e6f0e71a34ee1e7c3327f5d921c24f39f29
MD5 0604059f6a64596ecc1ab71bc1d6e4de
BLAKE2b-256 46e5e6eba715cbdd8f3cf602b19b694ca25cadc5373ce51a2eac117f5e031ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21f3b59d17f7c4e81e90020f8a9457f0d6178e13fbdff3d29df720aa84eda052
MD5 6f441bfa8e138e7d7f5fa1e9e3f621ae
BLAKE2b-256 0a1456959f1823accd6948f504f3c8a8f79b3211ec03355a3759065afd9fa203

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1b0c05a16a0516d660ded7f6091bf4c948acbfcea6025db525cb39fffe28f1b
MD5 0f6dd8516f5f01bd46c262cf871798f2
BLAKE2b-256 cec7b858f8482deb4791d58c16f2b06045a9e337a0754c2ef87284737c1d2fa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24bfb3aff1507ddf867d3981fed005ce678340adc7bacad3a240e071243e5d1d
MD5 ec664b9b0a31df83cdfbf70de4515a69
BLAKE2b-256 eb38499f707cbe04e969aa706cb7ffba8c724298dda4bebd2cc097c078015e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 03deae0d95918f70f9c0eb941c1cfd21a39ff3c92bf2d6df0975a7437cad1d45
MD5 0a3983526a262e32ad40aa3c1416c906
BLAKE2b-256 eb1886ec25d5a2918713a95570ff099da8fd61d6029d6163f437c2009d66fe3e

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