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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

yake_rust-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

File metadata

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

File hashes

Hashes for yake_rust-1.0.0.tar.gz
Algorithm Hash digest
SHA256 78d960be71957fec220dbd8e2168c7ef9f2f74e5374e3a875264efe0ac5695c5
MD5 0458e2f8bff3cecbd4ac64da18d04311
BLAKE2b-256 a1257ffdb516fc80da1ecf35b389e220c11b0ece32a50693de67ceb576c93afe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d0ec29b08b5fff94ec00f14bacc5d152bfdd68f18c00a68d0f9200b204ed5208
MD5 be9a6317a58289edfd7c41577fb51930
BLAKE2b-256 a32c31951679b088f5429f80cad355628b764a9845cb11817dce9fd77f1fbd76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.0.0-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.1

File hashes

Hashes for yake_rust-1.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e393ea21f6ca652641376749d4a947d60590c8d27561beb35ca198f78c9e9490
MD5 6391b5c14df6a9d8e335bc06883ab2bb
BLAKE2b-256 0f351893c1ef12e18e3db3f0d57e9721c19e2044a8992198c2ce748cd33ccc34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f3c7a353202789668ab98dd5107d16587ac53f9a51544c67029b16234c51d79
MD5 2426094b5f4ba2c5af94f13f8f6157af
BLAKE2b-256 2709c5cc6c3452ad9fe4bef0484c43f96f5b18315e42a3fe213fb11060a4f975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 93b5612628c767978c1ccd44d331d2317b1bccc5219cc75c13e9b7aa2b18a9fd
MD5 df56cffe9ad5cba133f3fc4a3dbfc94f
BLAKE2b-256 bfe08370ba3ff4ab86b0cefe93b47cbe43a853fe787456eb5d088afdb72808e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b2a48f1b778a79c8fa8c73b65e1c1a7501df147693f4dabb9dab47a15636410
MD5 18a9c7e112d39120436962039b9ea116
BLAKE2b-256 12b0f66ca428327b6e274c16ce3f53af2f07f2b72b1daa6e69186b5289a7bab4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50d685a98b4a9f1f338cac7e39192d3a4f01487f226a777d9e450aadc4ea0ace
MD5 28aee0ae25f535024eeeceb4ee8c8142
BLAKE2b-256 8781d5922a7d5097295a7a8a76ccc0aab2fe8a86b0e5b8455dcbd7afc0373d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 720ba0e6ce79f79cf3a82da54d281c3794aee71c34566d51ddf91d3ac4396fca
MD5 1128ec5350283b9c2008b035b4b84ed3
BLAKE2b-256 e7537bd771aef3b9483deb43529f1c0aa1dcffb5617d3889f45638fcdb050093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5db8e3bcd8bb9a45b35e9c68ccba34f27d0dc31786690c8b097ff38aa83dbf9e
MD5 e5d9660f0331fde35d5d0f715f77293f
BLAKE2b-256 f43ca30a2d586b3ca43c29fa1a5f91c9a3e008d9136312a2f9e63f1e1a8b2137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b409936949937f6159867dbf2ac6f3fc84f9bb431a30163029baa45248dfbe92
MD5 ff2c904a05bb2677d2d9dd2117158781
BLAKE2b-256 4d3b4cbf13c3b033f917d25428dca6c93e35b9d35a7c62d7f3a746af14073338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8637dd895854b62641e59134805a8ef149156ddf2ed3f01ddfe9d55819d9b65
MD5 29be256bdd0225c46ae50822729f561a
BLAKE2b-256 282c177019c7ef1fc2d6181e4a6deb62dc7934da14f501d556d7b1e713523b40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5be704a0b6d119df04d7417f51eca93ccb555e3591f0e248a06d0d39e8cb715b
MD5 56fbd46460bbd8708d271cb17f276cd0
BLAKE2b-256 9e2b58158a06f495fc118449ed202cb1d0239e0c9df987bedbc3ddb1264c69a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 db781f2b2edf317488435827d00ea08ebd84e998a969f72b6b93b1d5d0a3dff3
MD5 3314269d9ba7cb0aaa3d6132ee95d057
BLAKE2b-256 967728cdf3f303c8867339c5a607cc892ad8483d709ce8d71381e9e77a211f7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f97b8bbd4f6b3aae021e900667ec2c6111d44d5c61b0984e42e86647605f1962
MD5 93dbfcd9e77426599ed777aa1ca97975
BLAKE2b-256 cfb3c52e0b6516817438f25279e15c78f827e3d0422103afc517be0ebba36623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c2092a38bdfce3a74d15a9df45b210aa1627c45d983b3ec0d5fcbb8b00d15aa
MD5 50fd166fc57cfb03dd476b965b775b32
BLAKE2b-256 0b33dec41e1aa8cf068e2d62bd6c1052bf098cf23742c16205058c22673625d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 55dd21011eca4c855094cef684433742943ec8929378c1a896d3c5e07ffc9371
MD5 9b231f1aceeedaea41fee461867e2e3a
BLAKE2b-256 2b892a89430cef97112ef7653286172a843e390a7aa9daae69b698f129ed849e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.0.0-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.1

File hashes

Hashes for yake_rust-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 24965f1ba43f22e11a0aab9173238530250a7687413aa6a97bc39f067dc4804f
MD5 c01e36457a160f646a3ff69308c597bf
BLAKE2b-256 0144367f63def8d55bd8b210b2d044ccc75f04a175d8cf9c3f60e11a6feb948f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dac7e3a9c297922c1f9d05c869d1ad5c3676f974ebf81ca39a0dcdac49db91a
MD5 e5340cb482e5dd18b23e384caefeaf8e
BLAKE2b-256 445bf0daab18a0c2b71ff102de2123a8eff5220f36519012dfbe0be2822c3c01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b0f3f07d502867470c6bb8544dbd4f843a7cdf4e019100e604cf0ad649dc0d2
MD5 14002eadb7303fdfa9ed081c12beccfc
BLAKE2b-256 7b060016945dd2e761860108b41111479127d516558483c33e93a4a70fdda814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2efa4f1b769a6cd84856540d3b116a60ef6448bfdad59d64ee867a323e1aca19
MD5 d4f865477aff791289a21481b561d752
BLAKE2b-256 4e4f5cad221e4597b49de48b3d510f1f2e0ce5fdb9b02d1b15db8bec01f4f470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a78419965eebb08aa70cdfe5648980d191401b748f66dc38d0fa63f274e6d38
MD5 1c7db652dc904e48ec5566ad7403c8c2
BLAKE2b-256 ad05840fb1c38c44d493ac9c0683b342db3dc2391706cc35e3071441f5a6d5ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa4bf50f5be51ba6a604abf06c4928b360499d8b277060ceda7d4a2b2f01400b
MD5 566d1c97fd7a4c83bc6cc32f5025bc72
BLAKE2b-256 249c383358f61275e404d3e57427733a0424bcc967d3097531f2064943647080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7baa029796ed1fe6a23438d4385e38cc86edacc48be12192d6261af3127f32f
MD5 3085b49eef97661474cb872b2caf6762
BLAKE2b-256 3b2cf87c17b3afc655b092e2b53385474b4eb0c57a17122a18643c8dc60fb1b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e098a01328b36c124db0cc0401e99da5c74a99ab021031d579f6d22b40d174ac
MD5 e37a18cd254a13c3ded714fa57eb8918
BLAKE2b-256 f1a134b4e420b198b7b1e60c721eb242db3a93b5ed44f3dda769ea9915b69f3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 73d4155b5151d177c1b0d716e699ce483b358510db8cf7f4a43cd2ea6cff3c22
MD5 cd70c6d93834d989671b5519875a0d8b
BLAKE2b-256 3f1c6904ae9af59d22d0e7af793755269ffef9e7d176d809612eb2daac44de60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 558bed49f345870989de41df0df90aaa4c249e3202956694e5b9c31ca6152fb4
MD5 5865b38295abc057858394f7a852c5b4
BLAKE2b-256 e6b6b5abbcebda414c71c2b18dd9a70bc68c0eb61e22022337051db640161e0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e139bde9cf5ea5a33ef4123ed17a17f9961d0bfb7ac92bab2dd0dd580793aac1
MD5 aa228c3f3aa7b930012cdd41c3b318d4
BLAKE2b-256 9cd47d12aa7fa81ae6dcd7fe107b2569c3bdd9505915250ecda8fa1b97b9d2c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 affa71e8b89c7534dc66313e51a5934fbbc9cb4afbdaaf068f24ad14ab86a03b
MD5 861d18cc807032487af5dafea6afbfa3
BLAKE2b-256 961a7f8532a5796b7e3c1a5b5b5910729e351847e0d95790b5056c719040ea2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93d7fd2f6ee7b14faa313d97b6115f973ce06014400e7bf49df83440a8438ad8
MD5 53963e8ef484c20e37d468735fb2f2c4
BLAKE2b-256 e532d3373fe419bb86cb64f74982f42f55cd0ed6c7a3be64f638aa4dc30ea6e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1af94334132749ef884ef00a0fba2f20b344b2d39df7b98a8477cf873fa7156e
MD5 624d58d7001b986544fbefcd2fa36159
BLAKE2b-256 5409076f220478a29ac38627aa57b609884129f4c0af37039e93380ec6a945cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.0.0-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.1

File hashes

Hashes for yake_rust-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7e917c81e2dbc1eaaa68f9a863227632cfbb88e5821ab93209df769e3be52f77
MD5 7b062f5b6baaad1edc8b2c661d17f205
BLAKE2b-256 655aa473c1dbbee0e003db661ae4e5c86b58bc3f4772e444e9bdf56827ad429d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69c5de8998cb71eb1e44e3a30278e3f1775f257755fc7971a89d1b1588628f87
MD5 3730fe329a11c06e00835eee42fb88dd
BLAKE2b-256 f3e2a747c71858d0ce9389237837ef112cfc6e5f1e2a714be659f923f3503058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b314f32474b715075a71e97a43d808f4a9b63cb2490914c3ef700dce52575b5a
MD5 d667e57422a1228240c876d441f2d805
BLAKE2b-256 36fd023bf44e85069b5114f0fa5eeedbea3ccdc2e553838111ea04eecac9e4d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0bb629b21d676d1ecb445d9020ad153294e29d827b2eca4d420797be6ecb995d
MD5 a424fc57a31830a0445280f8bac8f535
BLAKE2b-256 d2581236b3f11237e3457ed6380d1dcb107889e1405b2dc314c83aa69bc0928d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bce29f36e0cda26fd89bec41739a9cc249e868d8111ab6280d76d5f63f4b85bf
MD5 29901fbaa988f3e870e78f84089b6eea
BLAKE2b-256 3ce1b4062a4185fcd302b78f824f9c0d94d9817276b933f99aa6c48989cb482a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fa6dd089bd368ce1129b791f183d6a7f2ab329c6571736b575bc1ce571d38ec
MD5 1bd661487b5b42a246452b947b8fea32
BLAKE2b-256 5904ad42e21328a07c7e1bd4a0f50f314e3aa124d633b891293704d434b18fba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c7d1e1fcfc3885ad87db26e247aafbb627dc98726005bfb16ca70aa50653047
MD5 5ce445045b6375f348375e75cf164b68
BLAKE2b-256 a7e10b9f660d571fc631218fe87b7e6a50acfdc52ddab8c630c7290ae5f80c02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14679592145ff35dc321f207112e235207c37d745bb88f4bdcc4366fb75b0e8e
MD5 7420dbad05ee2a7723d7363f4c312ed8
BLAKE2b-256 c6a0f4dd2fa44bc482dd5538c3a5063510ef426edddd53ac8342628b6d82ec08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f3f672317cd983f8f06461c5b82e47812bd0be404fbe57fa19b4e6fc700f9ad
MD5 71a18ce7e80e2c00abac932f8ae26f2b
BLAKE2b-256 807d20c706891ab672a2486264d6cc414af399ad8a1eb553ca09eff0f695ef4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b61283e80563eae79f910fe28e2c16a11fd472bde8b48f77bfa81284526be941
MD5 e4f7e6416b7250a8c88c816e51f64810
BLAKE2b-256 d173b9edd7944ddcf74c878f1e0b070b6b4f4406def10b3318e6814799804aba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 90d741cce984c7043d291fe70f9c8d5994cb668336043d8e971a84846d13e36d
MD5 2661414c20a1df65b6afb2d907fb6b57
BLAKE2b-256 a169f9e9870fd9c77cf5a9b25965d02e3a07dffbf3eeb65b8b65b4ca7a20eea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10480749ffabec2891e60e408c966ec3af7eb2b1e7247e92c34ff619e9e38ce5
MD5 d41922d4c608f42e0d219a2df99c1742
BLAKE2b-256 ef46768164668128b1e0945ab9ecd54d38b18b173638fba6ad398f6ee80191ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 12951ee0c970102ac356d32834f5b2a8faa81676621c9816c1cf1d2a6989140b
MD5 b6f620d1401025d8826108fe3c0419a0
BLAKE2b-256 ba6a7ccaf2d354360069ac42d497012d83e3f467233715246e709bdb2938bfee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aad65484cc24b8f8a270e6a8755eaa6159df87003439a6f7e9e7a1a360c06525
MD5 3231217971ca835f60ba8e75c31fe03c
BLAKE2b-256 75f2748eae0c33a58b599551b4e628826e88956e3e6bd4b46ed36673c2fe8b0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.0.0-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.1

File hashes

Hashes for yake_rust-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fe509207da82f0e23d101dfbb8e2a1562c008c32a4725f7f74d51b5f14cb2f57
MD5 44c3d74d9912cd4baa7b448ebbd4ec0b
BLAKE2b-256 641ae9a6f47a764e5bf0a23f0a431a51054275468978280c9002d087a44c8fec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83707842e8f805f397723cf3eb9fc31f46ad60667612fc17ef4acf445761e29f
MD5 0796e555a407a7202f3cda2c33e0d26f
BLAKE2b-256 5cd0c8ab240cc710efb0921e2998d51870e7de3803a93f3849824f1026cd1fea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ec3ac6af6cc18c278e3bf791cdc44d03e190a9b5422787a66abdf76ddbc390d
MD5 d90cd38cc913a3bcf4fdcba9f55dae74
BLAKE2b-256 57130487deb852b3047f7b4a30c4ea1841dacfecf580abd4526881bcb36319bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd330ce08be9cc890e5d258be2127c1da106d2ad5b33b62568328dbcf6647925
MD5 b654a2cb1485a13f17ef5294e27f0d13
BLAKE2b-256 cbb1d10b408f14f68670d91b4ac96bff13046da641f522d43f4527f34ec0b3b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8256774f02f2d81daec62cb73b96e8e5ca739ea55ac6d62b22ae12c475cd491b
MD5 05eeb365a7c4a2e7c3fec60b40794b2c
BLAKE2b-256 6e34434439870b3079740388544a490bd32beff7947a3fd6c59c5296580a8ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 969640ec289150047fbd6401865c99eb6c06b3318867c3c156e4937cfe5c27ca
MD5 bcee382d321ad14fc904d8d0660eff8e
BLAKE2b-256 214717e965196dd2df36c96ad704a9afcf3417c8cf51c7ee5981c167825f91db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b54d084630dcfeccdbdd5b85cc3fcad9a9eb3c68eef7b04c5b7ee663898c1d42
MD5 1da419fa475d3b85ef7c26ddbacffd22
BLAKE2b-256 d479e5e850690ac589646f7305a5555e7263332681c87f14b2d222ded2489081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4526abc77497f999351a8bceb0e8f7050e3ce65bc7766463ee26e7c21b9422f3
MD5 4f51f9d6a37eec59e78527c5934d9779
BLAKE2b-256 2247c1a7c4e9a52b5851519cc28529b58f04702559e1446d01f1a0810296bbf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f69ed686e30589317de9e0677455046631834fab77685956bfaeab0bc69a7ff
MD5 434cbaee81b475bfdfa1059164b7f805
BLAKE2b-256 9b1f2b9cb24429801e0477ae0b887cd5deaefebd917b49ec20b2e00acb5f22d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b64a95191d4cb81e4e03ca31d229dde740bdc106826428b19a4de5c2c5e62e4b
MD5 f6c2a50f48c69c009f5a3410176ce5ff
BLAKE2b-256 b351b3ba199d0c6a66e8fc5d5835898a796ca401f3d4b7137d2df9d4f5dc0e1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8eb547e8dd2ba49995f0d12747373d0fdb2e6c0624ffcba060710f44a2f0cf97
MD5 f0a6281b8b6ad070e73c2045c57a8a46
BLAKE2b-256 2f1805949a286730e52c3728873bc699a61fddb1a690999361596ee4692633d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cbfafcccdf8d9026606f26f5cfd843a9486eb0f456e0cdeda78bf8527ab4f6dc
MD5 d6ea15a88ed780a440b26f46a99a2a53
BLAKE2b-256 3e49c76a10a67bb8216610546e2f182d4e03916c66b5f5486002b108f5be10a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yake_rust-1.0.0-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.1

File hashes

Hashes for yake_rust-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1bd65cc52486a98c45f81eabe496c7d9b501cc6c64056b32ed9ad7be5c628340
MD5 560d3e6fda3640fa71e9dbcd307ead5e
BLAKE2b-256 62fcf55f423280bff2225829371e0516ca6b3084d38b45de0b54c3abaf5056bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00059aa6f05bb50db0ef2091c18767f2ca13d61bb324f7a4e4eb42037fa12d95
MD5 9465d7f8679250da61104f02d2e8c9f5
BLAKE2b-256 fd2008870426ced38cabc5a5a1360e471f638fb0d85d460822d30d4ca2506ad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 413d57f336c91e8fbfc61f0349c9695a65efe93ccadea684f5606d89b124a903
MD5 5b9ac2d5683fdea5de5f09f51cad3c34
BLAKE2b-256 36fd02a47a71bcc63a752dee1076488e1986fcb72a64d87c95d15d9dc9138966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b68c5bd767365fd2a0a139c247f24a6fbb3f8a7e8882ea81210d236a912eca58
MD5 3fadebe0461bb45191cebbba3e8f4afa
BLAKE2b-256 e509ac9391f03d4e09ee0f9732e11806c38560bab3fbe7addd2751a55175a210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 786a469ac69e2487e265c2446ac16e0406aa51456a5dfc2ccb61dad3c47e389e
MD5 3cb05a0e8e9beb717ba44cff562a42d5
BLAKE2b-256 43a1f6d6d97642dcd92f7bccafebe79033165fa42152142b8c97f8af10621be5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d44aaa1d51c0f47bc86cc33f6ad47bac9ca14d0653e8b51f4dae6db40658aaf4
MD5 80296a2b4958a8a4cf9ff39a0ec29fbe
BLAKE2b-256 4c37f0d0d07cca9a1e4f0267958ac54b88ddc79e63ae2443c00f8aaa85880341

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac1bdf3a51063bc97545aab2de2374b02fbf654bef72b3fb01088b8e5e980d46
MD5 76e70b14eb5214cdf44f9d18573e2b96
BLAKE2b-256 80ae5e4d87840abb2aabcef2ff32b47d0130954856bb7eb8ad9e5c371d8c3c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e6ca526a10247e043c9dcd7b740dc1e692980605c67e86eb89661829f27e3cb
MD5 aece2f976f92bea95dca17555c193503
BLAKE2b-256 94fbdf8ea6a3177d67e0ccd94deda79041233e564066c5ee8e7b9fa4687e96fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c0ca184f007464b38e8c1f90923bf031e37c897727b3662cb8b63bb9723e033
MD5 6a6c0c6c37eb825f12359d6d3560e6aa
BLAKE2b-256 1b745835197c4df020e6ef866a1b1d4d7aad8b8888febe5d7a882687d13bbaa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17d67bdefeb788984ba784f02ccdff5d5663768076d156f60185ab87a03fd4cd
MD5 637e3047e08bd73bf0e51455f1903d7a
BLAKE2b-256 dcb57fc4704a0ce1d9f946f91d54372c6f8da1fc95249cc8524ec39b5613eaa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yake_rust-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e0da04f86db37b7b47e8d1348b27451e5062b5e37ab9c7a34a2f83f86ed16a6
MD5 2d81a46bb17f3443116fa0b1ee397791
BLAKE2b-256 edae51f76df6d210202dd7fe7c9e767f378d03399bdde11250a72d531fccc2c6

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