Skip to main content

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.

Release files for yake-rust 1.2.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for yake-rust 1.2.1
File Size Uploaded
yake_rust-1.2.1.tar.gz 154.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for yake-rust 1.2.1
File
yake_rust-1.2.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
yake_rust-1.2.1-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
yake_rust-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
yake_rust-1.2.1-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
yake_rust-1.2.1-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
yake_rust-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
yake_rust-1.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
yake_rust-1.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ IBM System/390x Details
yake_rust-1.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ PowerPC 64-le Details
yake_rust-1.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARMv7l Details
yake_rust-1.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
yake_rust-1.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.5+ x86-32 Details
yake_rust-1.2.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
yake_rust-1.2.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
yake_rust-1.2.1-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
yake_rust-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
yake_rust-1.2.1-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
yake_rust-1.2.1-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
yake_rust-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
yake_rust-1.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
yake_rust-1.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
yake_rust-1.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
yake_rust-1.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
yake_rust-1.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
yake_rust-1.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32 Details
yake_rust-1.2.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
yake_rust-1.2.1-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
yake_rust-1.2.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
yake_rust-1.2.1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
yake_rust-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
yake_rust-1.2.1-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
yake_rust-1.2.1-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
yake_rust-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
yake_rust-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
yake_rust-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
yake_rust-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
yake_rust-1.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
yake_rust-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
yake_rust-1.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32 Details
yake_rust-1.2.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
yake_rust-1.2.1-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
yake_rust-1.2.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
yake_rust-1.2.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
yake_rust-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
yake_rust-1.2.1-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
yake_rust-1.2.1-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
yake_rust-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
yake_rust-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
yake_rust-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
yake_rust-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
yake_rust-1.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
yake_rust-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
yake_rust-1.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32 Details
yake_rust-1.2.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
yake_rust-1.2.1-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
yake_rust-1.2.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
yake_rust-1.2.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
yake_rust-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
yake_rust-1.2.1-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
yake_rust-1.2.1-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
yake_rust-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
yake_rust-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
yake_rust-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
yake_rust-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
yake_rust-1.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
yake_rust-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
yake_rust-1.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32 Details

Total release size: 91.9 MB

Release files / yake_rust-1.2.1.tar.gz

Download URL yake_rust-1.2.1.tar.gz
Size 154.4 kB
Tags Source
SHA-256 checksum
How to use checksums
2e7aa1cb6bae195168cd44dfd7e3a30d5e31b7bff6130b6393583b282a10e8f4
BLAKE2b-256 checksum
How to use checksums
4545b15909d6e8bb80d8f7928bbd619e3e61c9379cdbd5fec8c8a5c8b730f9df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp314-cp314-win_amd64.whl

Download URL yake_rust-1.2.1-cp314-cp314-win_amd64.whl
Size 1.1 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
d0d15e1689c100de15b0030a21e705e1c336eae404999e79495e478a189c898c
BLAKE2b-256 checksum
How to use checksums
a5996c9ea8307fc9c72bdcc0d2ded8b905370ca43439afc77206ad4310798ea3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp314-cp314-win32.whl

Download URL yake_rust-1.2.1-cp314-cp314-win32.whl
Size 1.0 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
b7501428c7e0d8dbbb11e30e48c7e031c35cdb4f33e14b05ac6ad402dc0238a0
BLAKE2b-256 checksum
How to use checksums
545751a86cb6854f062ff6a6d1c1158831455abed346f72f1b7ec5c86cac23df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL yake_rust-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d27d53679952bb998f71bb5a14be11ca628a8b1d63965123b2f50263cb10a506
BLAKE2b-256 checksum
How to use checksums
a4743a897577039e8a9bc6d234f913b2d2fa2465bd7f19193c109a43a5eada74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp314-cp314-musllinux_1_2_i686.whl

Download URL yake_rust-1.2.1-cp314-cp314-musllinux_1_2_i686.whl
Size 1.5 MB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
2c9ba145eb0bf655536f45627625068cca84e6a87ce2cf972c07d7e013e572e0
BLAKE2b-256 checksum
How to use checksums
96b74c0250e64e83eaa4514b60d19476950131ba0ca79721815b2a1a9ef47294
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL yake_rust-1.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Size 1.6 MB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
f01fad120b20d87ab19e1623926e0c9a6dd887e73f7b43102135151dcd2ecc1d
BLAKE2b-256 checksum
How to use checksums
9dc4770a7143e0df60215a9590864181869136379d2248c36ece2ae7e7c888df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL yake_rust-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 1.5 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
942149472cd9e1daf7be8750da947b61271e03e5a9904f32687571ccea9ab247
BLAKE2b-256 checksum
How to use checksums
201c41431a786b2486379870cdedd9a0cda1c52a9568741cd2de0286a3f0b10f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yake_rust-1.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.4 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
aa2f9af370232f5e220b4672b5c7806ed5b5075cb8fd6dff1edc0a6d70d81628
BLAKE2b-256 checksum
How to use checksums
eaf2dde292c9f516da9630747902a2a6566db2c83b0c567c896fc3771d234e83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL yake_rust-1.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.4 MB
Tags CPython 3.14 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
e19e5769fa00be5e5f5ed605a1f77b2d30a0d66bb3619f99444608c3c13bda4e
BLAKE2b-256 checksum
How to use checksums
1c4ced3bcb23533ec6ff146847e17a63e6e4d48373ea8be29d676c6ff8e6f3ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL yake_rust-1.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.5 MB
Tags CPython 3.14 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c6de6c4b8d6d73b126f58c5dc293167308c841c4b16fede23f5f537f05c8c3d3
BLAKE2b-256 checksum
How to use checksums
2ef304ef1d3421b07513a306f2a3c4e3e2be95343aabc604c076f5d28fbc3f1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL yake_rust-1.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.3 MB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
0cfbfe7c3019ea6cc81486aec4c40df8a428210049b6c5e6af55299d8c731116
BLAKE2b-256 checksum
How to use checksums
75a555b833ebb06df6fb117a64aff330016811ea03bd7e5ef41b645079e6fc68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yake_rust-1.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b6ede46777c89f6a545b0b8bc0693ed552c1e3c5c792d8dad1ddce0c450ab7c0
BLAKE2b-256 checksum
How to use checksums
d31f348c75a084cb8d09b75df9584df2438dbaf77c0dbd736017070a1c5772f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl

Download URL yake_rust-1.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags CPython 3.14 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d6056174986e18556c9f23b309d4955f0bf372822389caea696f9d35a234b104
BLAKE2b-256 checksum
How to use checksums
5e93255d9cf6b27c2089156cf6d4371a170b84e4d8a106c9481a10f3b8355651
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp314-cp314-macosx_11_0_arm64.whl

Download URL yake_rust-1.2.1-cp314-cp314-macosx_11_0_arm64.whl
Size 1.2 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4400626ff542732268c095e4c55a3b86ae8741b27a1891e1b941c275867aae46
BLAKE2b-256 checksum
How to use checksums
21c9cb7634c588d3edf0c75be11134cf5ce528b571bc52e6185a670344c8019e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp313-cp313-win_amd64.whl

Download URL yake_rust-1.2.1-cp313-cp313-win_amd64.whl
Size 1.1 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
09729ddf830eb212f528466be89c69bb58463dffedf2c4fe567316e4ffd6143e
BLAKE2b-256 checksum
How to use checksums
29753d81ea24cb857df5c9f86e26d23062b22598cc27e949daa5294f3c0fb159
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp313-cp313-win32.whl

Download URL yake_rust-1.2.1-cp313-cp313-win32.whl
Size 1.0 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
70144efd68a255bb9034275d988788e35ebb3253d242b0ef8bec32d46fb78271
BLAKE2b-256 checksum
How to use checksums
c8d36d187eda5ac62deae08d0552165ab140589c0e01eff7403c2e8d6801a0c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL yake_rust-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f6227b83d2e9f2e5456001d8bf5ec6f18e71a6a4819a63c331a7952bf45eb251
BLAKE2b-256 checksum
How to use checksums
0f39e01c525c5ac27381c21db2da455a098847e19cee81d50de07c388bf483e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp313-cp313-musllinux_1_2_i686.whl

Download URL yake_rust-1.2.1-cp313-cp313-musllinux_1_2_i686.whl
Size 1.5 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
9a9d0d6046e6dc1354e4b99f852c8d213eb66a7a2beaf6164db189439d8b95df
BLAKE2b-256 checksum
How to use checksums
85a9a2036a6d2318c71cd569c3f883b0b54f5c63bd274794279c84de56c58605
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL yake_rust-1.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Size 1.6 MB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
410995df60c7a79d01258d6e017f04e356f065dc02aaf4153e19026a1d76081e
BLAKE2b-256 checksum
How to use checksums
7b541bb366943dae3138327a2bcc4094c7ccd273a32c67dfd7bea8c48880b90a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL yake_rust-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 1.5 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2bc260c21bbd1e487d31addbbe27194ee59ce5537f7c83664b5eb9d264dda7e7
BLAKE2b-256 checksum
How to use checksums
adb9fd4a4026aa8af39079ead1bfb0abf764e4753cb781236804754c8c87cd27
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yake_rust-1.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.4 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8418b1454f09450840f3058cc1aef34ff4478f4bfe55d923fff2cf6e3076a7c2
BLAKE2b-256 checksum
How to use checksums
2bd377adda65337e5a82bd67987df0229f1fe894073db02c84be748ba9a9b2dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL yake_rust-1.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.4 MB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
86ef41d08a9783085e0b66bfca4fba92d6248e192c5f989c85b7b75a20cb1fb2
BLAKE2b-256 checksum
How to use checksums
e658debca930f74f0d111363bbf54a11ee1b0d4001a333aa3654c35b29e27a56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL yake_rust-1.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.5 MB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
87b1e5d229d99a58a12816490ecb0f8196757d6fead49525b9a08c393fb94861
BLAKE2b-256 checksum
How to use checksums
0fd2a07655425bf859142d8168337ee890d802d21242b5a503708fa7252be4ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL yake_rust-1.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.3 MB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
58f93518370724d17dc67c966bbd9d4e7e6774db3ce0168d672cc0e5d2ce9fdc
BLAKE2b-256 checksum
How to use checksums
43433413def7efd6d830b80e2588decc82fe1fc946bbe177dfdc1b82830a1830
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yake_rust-1.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
78c20a37f98720b91abbebae461d08f9726b7136d3e137d0100c51dd8d835750
BLAKE2b-256 checksum
How to use checksums
23c4191c809f06f54b788f62e1587a203408d310938a80d74aa8f353ed4636b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl

Download URL yake_rust-1.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags CPython 3.13 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
53a0210a181c588db2bb18e1d44c17e23a5ea0d5b4c6906901a7589baf3ef10e
BLAKE2b-256 checksum
How to use checksums
80759118b442e29e5b2fe9f999497f7d9e8289501e65cd0c2722ecdea8404b74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL yake_rust-1.2.1-cp313-cp313-macosx_11_0_arm64.whl
Size 1.2 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
59e61029b4a7a8bc1a2ea7ab024ef147613bf50214c32d5787cf75f4df5894d0
BLAKE2b-256 checksum
How to use checksums
295fc964f52df651534d41aea35ac1fb2b9724f8cb655f894719d6c1dd6035e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp313-cp313-macosx_10_12_x86_64.whl

Download URL yake_rust-1.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Size 1.3 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
bda20994803697873ffec3578f46031af97a9dc1545a6ef79a7290e8cbaeb74f
BLAKE2b-256 checksum
How to use checksums
28d008cacfff16ba2010b6dd64c7aca713a3d3c2f615bcde7de32f194333b41a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp312-cp312-win_amd64.whl

Download URL yake_rust-1.2.1-cp312-cp312-win_amd64.whl
Size 1.1 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
3981208ec05ba4d0c70054fab59e60c1d4be987ae6dae79863ed91322d8be5d2
BLAKE2b-256 checksum
How to use checksums
c275b21fecd785d5842c74c57c603d46899af9be7c63de147d85266cd15c52ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp312-cp312-win32.whl

Download URL yake_rust-1.2.1-cp312-cp312-win32.whl
Size 1.0 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
68122a7be895ba0572ba542b601dcc512a9ca24bd44f17d6753d3e2786a324c9
BLAKE2b-256 checksum
How to use checksums
1c3df9691b0fdbb922fa964e3067aec815ca883950dcc6b2b44f4f9fc11af30d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL yake_rust-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d1f585dc7987a39a607cdaeed8de6c471fd3a7c8a33e88c225d66346a1bce7aa
BLAKE2b-256 checksum
How to use checksums
c597c6160d736b170ccfe2a9362fedbad539d10a6206702d718b6ddf66570b52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp312-cp312-musllinux_1_2_i686.whl

Download URL yake_rust-1.2.1-cp312-cp312-musllinux_1_2_i686.whl
Size 1.5 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
530a94a66583936e34ef3324bc3dfb43e7c377fb8bd17f7a94c8121460092521
BLAKE2b-256 checksum
How to use checksums
0823b7a17ba70ce5462c3359662b850e21488fe1d8557f45599e22031d774802
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL yake_rust-1.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Size 1.6 MB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
a2b54711aa3922d51efccee0f5dafed354a92cfb9faf0644ab25cd4723ef2353
BLAKE2b-256 checksum
How to use checksums
014eb910eeb55e1f7ec228e693eac8659fcc705e8c3003387a6dd1242a8ce9d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL yake_rust-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.5 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b55ac2587a28356ffeddaacacdb7d511e466b753599a61c07c1c7bdea09a3d86
BLAKE2b-256 checksum
How to use checksums
b82e5dfd890f45ec84932e7b8ed3bc58589152b8021504599782edeef2855592
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yake_rust-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.4 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
294d77d775fd1edec0fe09fdd04d8c70b4d23d96f92b0cbbd9694ceb1bb2c062
BLAKE2b-256 checksum
How to use checksums
99369b45e2a007f3d696b08860bf9e64b18524d767f95edf4bbcaee5941f9a3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL yake_rust-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.4 MB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
667d2ae49f81147d115d37fa8c502ee407912898c262ea8169d187f71209a5b0
BLAKE2b-256 checksum
How to use checksums
79708a100ea67be954489f76cb63ed51cb3e4f7b4c82be1c902bde7ad7931852
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL yake_rust-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.5 MB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
55ec4fe26c364eef5d118c57d1a25c5da11c4440ccb3946bfd812506414293f3
BLAKE2b-256 checksum
How to use checksums
accf9767d872ab943168f32bfc96bdda3cf9eaac921967bd5fad214530eb7a3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL yake_rust-1.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.3 MB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
a7a51fea4e10d31220479d2c6c77536d61cab7181238edb22df98ff0ddeddaa9
BLAKE2b-256 checksum
How to use checksums
fdde28f20cfcfe5600e897d1250b6bc9af670c2379332304a88173fc46a0b257
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yake_rust-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5fa32a1f72e7a25ebb8eac7d5cc2ca1b96ee0bfd68410c229c0b4c1169c5403d
BLAKE2b-256 checksum
How to use checksums
3e263abd5b07ac92d30e294aa32e6a7bf7a77d8d6e6528e7c50f5d7309e6d483
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl

Download URL yake_rust-1.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags CPython 3.12 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
393878176806b05c964f7d910681e2fede9845daabca74bc1aa924c9e245dfb0
BLAKE2b-256 checksum
How to use checksums
2bf4d4a6bbe2294b30186514ff5199d59cceee9c4133dafd451940a7e4c049bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL yake_rust-1.2.1-cp312-cp312-macosx_11_0_arm64.whl
Size 1.2 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a05b463c3a9f7bcedfd41d792a9dfe8fa2315564fddf3ffd2ab7e076cbc19f3b
BLAKE2b-256 checksum
How to use checksums
922770454e80750242b4284c79ba68bdfe9527966526bc17ca0da77dd3cd4d22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp312-cp312-macosx_10_12_x86_64.whl

Download URL yake_rust-1.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Size 1.3 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
392f810e1ae4041d3ffcfc69fc0ba4c46313e622a4d785d7debb0614d7ff2cd8
BLAKE2b-256 checksum
How to use checksums
ab93fad2b6890849a75ad322518091691168b9e86667d2c8c8703980670f405d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp311-cp311-win_amd64.whl

Download URL yake_rust-1.2.1-cp311-cp311-win_amd64.whl
Size 1.1 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
3135caabc4931c8d4dfab0e2078d9c96d146cc3d17676afd988261f744e07e95
BLAKE2b-256 checksum
How to use checksums
6518006f260f14b44cae7d1961413fc8e2fd84ff24385fd42264977a8dfdff48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp311-cp311-win32.whl

Download URL yake_rust-1.2.1-cp311-cp311-win32.whl
Size 1.0 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
ec1fc952f6ffb6f21d3417bfc6c468e6aac927c61dcb673a00bf646d3720aad8
BLAKE2b-256 checksum
How to use checksums
7b4dce92eb1dc3017e37cc2d213c2770d01a446f30ef6fdf7380e9e0ad310153
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL yake_rust-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f2ea3e0dcf467968b03d4ebea3aecd22af8f1b961e3194ffcade0e88823dff52
BLAKE2b-256 checksum
How to use checksums
6a8a751907ccc440c7afe09cc8af3e530bf6f8751fc2f2295105b6acf808b0d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp311-cp311-musllinux_1_2_i686.whl

Download URL yake_rust-1.2.1-cp311-cp311-musllinux_1_2_i686.whl
Size 1.5 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
07524e0db80df2132ad856bee1ad3c5c38b0b14d33273e3de81ef636dced7df1
BLAKE2b-256 checksum
How to use checksums
02a1e6a6e330ce7ebfbbf5b437507bcbd2eb21f24bf3b8e5f8f23a8c320b7f0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL yake_rust-1.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Size 1.6 MB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
c549ff4dda245842d128a241685e88413ee74eb1a791fe26b92b4202303b14b2
BLAKE2b-256 checksum
How to use checksums
a89b8fe6f5e5813d1c76063115016aa5c5a51a7b8570053dd0388b595b2bb9e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL yake_rust-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.5 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e1271abe7b688ee27e8b42b31a6be04b6838515f405e0a20cfe63f68dc8358d3
BLAKE2b-256 checksum
How to use checksums
56003e6c86bddffbf86b2f4f91d4741e3ecf78dfee0a980c7dda2bc4606ab42b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yake_rust-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.4 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1c72b2a586b2e39a95f82ce15784f31e7be639ba7d11858ecdfdaec75cbaafb4
BLAKE2b-256 checksum
How to use checksums
94e9a02b713e209636911e5994753d39c371cb77c0d065d078f476c7ecd964c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL yake_rust-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.4 MB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
57ed2bea8c45feea2230ff81f9cc730249e6ebfdb054a23c90822dd6a6f035e3
BLAKE2b-256 checksum
How to use checksums
08261b1d9367110bf0b3f020499ca17ed40650524ecf32515dd9f4662c9764bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL yake_rust-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.5 MB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ec54e8a24f0d9509f293f19a6fe59ca9e99a80be3194ef7c04ba44edd192c190
BLAKE2b-256 checksum
How to use checksums
e8294e961f4700420ebdc47741b3a7d3790a6079dfcd80a250bf57c6ba03e124
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL yake_rust-1.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.3 MB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
ad9dde79c14b5e6521f284ea6428235ae76b191b638ea328f4d30b1e337e6413
BLAKE2b-256 checksum
How to use checksums
56ed6e6eaf1dd4a7c6ab958b4cf785056b325332f6e4f66a519fbe623d53e11c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yake_rust-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5957f63e1e2a6d4e4157df2bc24b9a083b39c8bf07272429b714a51b6b7fbeba
BLAKE2b-256 checksum
How to use checksums
970a96799172b296b44e08fe6f81e1325a0cfe5cffad99805305d018258f30c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl

Download URL yake_rust-1.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags CPython 3.11 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4739eaecc27cadb8e06fabbb39ef251e59f7a934b405dd1484752e6e570e21d3
BLAKE2b-256 checksum
How to use checksums
18a6c4ba94677143dd877929bcdb664cdc500ed71df5433a1805eebb9a3790f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL yake_rust-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
Size 1.2 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
216439185787826a69d3b8f57569d717c29422f81b42ce65798ab9a5b635d864
BLAKE2b-256 checksum
How to use checksums
bcbf89d88ad61a6f1f125922a47a3c613dae65fdf06fc9305460cb12256d3d67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp311-cp311-macosx_10_12_x86_64.whl

Download URL yake_rust-1.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Size 1.3 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
b8327c906f2ccba76ea78b8a72f142e42f418d75fce97d4b7f59f2e45158c209
BLAKE2b-256 checksum
How to use checksums
03e6a0f5a2567199b17b7d324f00bbb6c4e25d9af953e7dcdf981878b98e9948
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp310-cp310-win_amd64.whl

Download URL yake_rust-1.2.1-cp310-cp310-win_amd64.whl
Size 1.1 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
2752958660ac7e4be73574feada9b91f76442c749a728fb1a43259d4394d21e9
BLAKE2b-256 checksum
How to use checksums
e8e4ca59d132a2c0fffffce4ba6f89a0e8f4b0b9b70865565d5383bcd917cc90
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp310-cp310-win32.whl

Download URL yake_rust-1.2.1-cp310-cp310-win32.whl
Size 1.0 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
44b1ac878f5024bbef39c355c2f466ab8187592fa816a6911a8f2af49eb8838b
BLAKE2b-256 checksum
How to use checksums
49d4b79d143bad8170badeb4a3cfe6d11ce7d7314e1f816da1e8dd51c82c1f56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL yake_rust-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1b218ed533edb2cada84be63d5416847dfd8219edaea1f8578ecf49b8092c474
BLAKE2b-256 checksum
How to use checksums
076ed9bd4d414fdd326719188e17938508586e43ab333973339cdb3509cf561f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp310-cp310-musllinux_1_2_i686.whl

Download URL yake_rust-1.2.1-cp310-cp310-musllinux_1_2_i686.whl
Size 1.5 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d3053245226f3d3058ae13b9088ad755a17d043a7fe6ce2270b368bad66755b3
BLAKE2b-256 checksum
How to use checksums
4c3f27fca254e399f85b583f65ae3cd61ecef2fbac60441ee62b86d3f0fcdb01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL yake_rust-1.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Size 1.6 MB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
09e24d6c931b8343329ec927d06fb648c30939bcc2d37ef914a9db65db3e5cdf
BLAKE2b-256 checksum
How to use checksums
bb9995714097dbb0cfd67558830b834f8d780bde38b2e09d854c5724efc559df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL yake_rust-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.5 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b18d662612446fd1635d4b258b8b4b0a3f629bb9a2c93a75220216a9b79c4ee8
BLAKE2b-256 checksum
How to use checksums
5e3e356bf259e14f824ca32b8072b7a2d1b37e2ca7bad4787907f5da3ee7036e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yake_rust-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.4 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
53c0db45ff694511ba6812b94c35c152f5848feaa76cec086bf9cf6357de153b
BLAKE2b-256 checksum
How to use checksums
4158869361e0dfbe56af7888d29027080411cfc4353c5a7e48fe97594d56afe6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL yake_rust-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.4 MB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
8067ef956caf813f7e17d81a30b35e6f0e71a34ee1e7c3327f5d921c24f39f29
BLAKE2b-256 checksum
How to use checksums
46e5e6eba715cbdd8f3cf602b19b694ca25cadc5373ce51a2eac117f5e031ee3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL yake_rust-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.5 MB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
21f3b59d17f7c4e81e90020f8a9457f0d6178e13fbdff3d29df720aa84eda052
BLAKE2b-256 checksum
How to use checksums
0a1456959f1823accd6948f504f3c8a8f79b3211ec03355a3759065afd9fa203
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL yake_rust-1.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.3 MB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
f1b0c05a16a0516d660ded7f6091bf4c948acbfcea6025db525cb39fffe28f1b
BLAKE2b-256 checksum
How to use checksums
cec7b858f8482deb4791d58c16f2b06045a9e337a0754c2ef87284737c1d2fa1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yake_rust-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
24bfb3aff1507ddf867d3981fed005ce678340adc7bacad3a240e071243e5d1d
BLAKE2b-256 checksum
How to use checksums
eb38499f707cbe04e969aa706cb7ffba8c724298dda4bebd2cc097c078015e3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release files / yake_rust-1.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl

Download URL yake_rust-1.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
03deae0d95918f70f9c0eb941c1cfd21a39ff3c92bf2d6df0975a7437cad1d45
BLAKE2b-256 checksum
How to use checksums
eb1886ec25d5a2918713a95570ff099da8fd61d6029d6163f437c2009d66fe3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.10.1

Release history Release notifications | RSS feed

This release

1.2.1 This release

68 release files

1.2.0

68 release files

1.0.3

67 release files

1.0.1

67 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page