Skip to main content

Calculate the surprisal of words in texts.

Project description

Bikkuri

Calculate the surprisal of words in texts.

Tests PyPI Version crates.io Version

Usage

Python

from bikkuri.ngram import NGramSurprisal


unigram_surprisal = NGramSurprisal(1)
unigram_surprisal.fit([
    ["lorem", "ipsum", "dolor", "sit", "amet", ...],
    ["convallis", "fringilla", "dignissim", "massa", ...],
    ...
])

unigram_surprisal.surprisal([["lorem", "ipsum", "dolor"]])

Rust

extern crate bikkuri;
use bikkuri::ngram::NGramSurprisal;

let mut unigram_surprisal = NGramSurprisal::new(1);
unigram_surprisal.fit(&vec![
    vec!["lorem", "ipsum", "dolor", "sit", "amet", ...],
    vec!["convallis", "fringilla", "dignissim", "massa", ...],
    ...
]);
unigram_surprisal.surprisal(&vec![vec!["lorem", "ipsum", "dolor"]]);

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

bikkuri-0.2.0rc41-cp314-cp314t-win_arm64.whl (150.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

bikkuri-0.2.0rc41-cp314-cp314t-win_amd64.whl (154.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

bikkuri-0.2.0rc41-cp314-cp314t-win32.whl (146.7 kB view details)

Uploaded CPython 3.14tWindows x86

bikkuri-0.2.0rc41-cp314-cp314t-musllinux_1_2_x86_64.whl (363.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

bikkuri-0.2.0rc41-cp314-cp314t-musllinux_1_2_aarch64.whl (349.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

bikkuri-0.2.0rc41-cp314-cp314t-manylinux_2_28_x86_64.whl (290.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

bikkuri-0.2.0rc41-cp314-cp314t-manylinux_2_28_aarch64.whl (284.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

bikkuri-0.2.0rc41-cp314-cp314t-macosx_11_0_x86_64.whl (258.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

bikkuri-0.2.0rc41-cp314-cp314t-macosx_11_0_arm64.whl (252.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

bikkuri-0.2.0rc41-cp314-cp314-win_arm64.whl (152.2 kB view details)

Uploaded CPython 3.14Windows ARM64

bikkuri-0.2.0rc41-cp314-cp314-win_amd64.whl (155.3 kB view details)

Uploaded CPython 3.14Windows x86-64

bikkuri-0.2.0rc41-cp314-cp314-win32.whl (147.3 kB view details)

Uploaded CPython 3.14Windows x86

bikkuri-0.2.0rc41-cp314-cp314-musllinux_1_2_x86_64.whl (363.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

bikkuri-0.2.0rc41-cp314-cp314-musllinux_1_2_aarch64.whl (349.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bikkuri-0.2.0rc41-cp314-cp314-manylinux_2_28_x86_64.whl (290.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

bikkuri-0.2.0rc41-cp314-cp314-manylinux_2_28_aarch64.whl (284.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

bikkuri-0.2.0rc41-cp314-cp314-macosx_11_0_x86_64.whl (259.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

bikkuri-0.2.0rc41-cp314-cp314-macosx_11_0_arm64.whl (253.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bikkuri-0.2.0rc41-cp313-cp313-win_arm64.whl (147.8 kB view details)

Uploaded CPython 3.13Windows ARM64

bikkuri-0.2.0rc41-cp313-cp313-win_amd64.whl (151.1 kB view details)

Uploaded CPython 3.13Windows x86-64

bikkuri-0.2.0rc41-cp313-cp313-win32.whl (144.4 kB view details)

Uploaded CPython 3.13Windows x86

bikkuri-0.2.0rc41-cp313-cp313-musllinux_1_2_x86_64.whl (364.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bikkuri-0.2.0rc41-cp313-cp313-musllinux_1_2_aarch64.whl (350.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bikkuri-0.2.0rc41-cp313-cp313-manylinux_2_28_x86_64.whl (290.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

bikkuri-0.2.0rc41-cp313-cp313-manylinux_2_28_aarch64.whl (285.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

bikkuri-0.2.0rc41-cp313-cp313-macosx_11_0_x86_64.whl (259.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

bikkuri-0.2.0rc41-cp313-cp313-macosx_11_0_arm64.whl (253.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bikkuri-0.2.0rc41-cp312-cp312-win_arm64.whl (147.6 kB view details)

Uploaded CPython 3.12Windows ARM64

bikkuri-0.2.0rc41-cp312-cp312-win_amd64.whl (151.1 kB view details)

Uploaded CPython 3.12Windows x86-64

bikkuri-0.2.0rc41-cp312-cp312-win32.whl (144.4 kB view details)

Uploaded CPython 3.12Windows x86

bikkuri-0.2.0rc41-cp312-cp312-musllinux_1_2_x86_64.whl (364.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bikkuri-0.2.0rc41-cp312-cp312-musllinux_1_2_aarch64.whl (350.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bikkuri-0.2.0rc41-cp312-cp312-manylinux_2_28_x86_64.whl (291.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

bikkuri-0.2.0rc41-cp312-cp312-manylinux_2_28_aarch64.whl (285.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

bikkuri-0.2.0rc41-cp312-cp312-macosx_11_0_x86_64.whl (259.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

bikkuri-0.2.0rc41-cp312-cp312-macosx_11_0_arm64.whl (253.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bikkuri-0.2.0rc41-cp311-cp311-win_arm64.whl (149.7 kB view details)

Uploaded CPython 3.11Windows ARM64

bikkuri-0.2.0rc41-cp311-cp311-win_amd64.whl (153.0 kB view details)

Uploaded CPython 3.11Windows x86-64

bikkuri-0.2.0rc41-cp311-cp311-win32.whl (146.6 kB view details)

Uploaded CPython 3.11Windows x86

bikkuri-0.2.0rc41-cp311-cp311-musllinux_1_2_x86_64.whl (366.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bikkuri-0.2.0rc41-cp311-cp311-musllinux_1_2_aarch64.whl (352.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bikkuri-0.2.0rc41-cp311-cp311-manylinux_2_28_x86_64.whl (292.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

bikkuri-0.2.0rc41-cp311-cp311-manylinux_2_28_aarch64.whl (287.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

bikkuri-0.2.0rc41-cp311-cp311-macosx_11_0_x86_64.whl (260.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

bikkuri-0.2.0rc41-cp311-cp311-macosx_11_0_arm64.whl (255.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 38a57a7104ecea5797ab312e58c55c28a8dfbddf66e1bfa3b0f5a1c90bff0104
MD5 864b835e10a93a5a5f1bcd77189f0b91
BLAKE2b-256 398eec21caa2b30d49311aac30cbbf1b760e21bfc137f5520fa3d7b787e38918

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5f2afac06089678fb82982a6924bf08745d62baf48be9703d64334c057143be3
MD5 a3d32d5fee91000f2bfac13109a6a46d
BLAKE2b-256 f56374ee5d8f861f4d68c7be240b33b401476b3bcacd59f4e8df195a82b96680

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314t-win32.whl.

File metadata

  • Download URL: bikkuri-0.2.0rc41-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 146.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 65bf9e45406c81887d35804d6b8e07bfdb3845c45489d19fac89c648a523d68a
MD5 934c5ef12781ca08a54c7ba65ea72959
BLAKE2b-256 fbd703469d1bf777fddf5164cfd53f4ec414fbaa5a386ce4ef460824e4574022

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc14fe7c97adf19457931bd12d949e379aa5f3acbdf051a6b1f97786b453e6a9
MD5 3263eb2db60bf0dc17e282dd3b915e50
BLAKE2b-256 dd7c49ed8e1dc637f4ab6102d3b53ed822b53d039cf8c25746245b34e380cd0f

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04254799d9d8042408486c13dec7c70edaa3344c73080fa6f6d8a3681f69a9a7
MD5 c6a300399cbbde6f8e341d8a1a999e6b
BLAKE2b-256 119251412cfac4ee2fa485f2124a3bc98287634da414e66d667aab27dcb1f551

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2fa056de3c031394ffc605d5aa215660e64d53246147a9f533ec5d80fa2c3e4
MD5 0ab995bf7a58a3ae716c02c0c00d5dbd
BLAKE2b-256 b6935fa23dbc8c5ac16ef9e888c69aaaedc18e513615da539b3f6a0f49a6ca55

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee1ed1ce05ae38a4cc940bda56b8595d7e9c5df4fdd484b4205cdd44942e1eff
MD5 b5f15f02ff8fb92f54f05ef627b31317
BLAKE2b-256 9d9cc97ee1af7584534d940c46cc62e2d614ecbe79fb5a62d2d812c337700a5a

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 1fd54f0470db525f3f05f3822d2cb0e5f244d70a69edeaa758bb871a57a3fb92
MD5 6e4821a67d9f8ae364fe422e6df6a1ca
BLAKE2b-256 04898cc79dd108cef2f863a477827f009b664dae775693d68d2c3cf1652b9aa6

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ebf9cb9272909fc4ad71a2b039b5af91a1ede5523595434e2cf80273e774a72
MD5 69dfb77f5d86d71416fb02abed8ec4ea
BLAKE2b-256 6e675f1ebbc8f5386b3da54bb26315d6f8720620889e185e547eb0548adb1aae

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2a836e4c20a29acafba83543d165aa539d71b61f3de983434a88cf1da7b06e8d
MD5 9f60fd675e8f6691f13424bf75482724
BLAKE2b-256 8228c98fc4deb1914d502d3aa2914601b0a0ab98b1ba6f937440ebcacb3051ce

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: bikkuri-0.2.0rc41-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 155.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 10a8e5293260f088a1a4f814c5651f41075567d6901300f44076c36c69847c3a
MD5 89f4dee1adac46452437c1fad9ce01a1
BLAKE2b-256 71f156d94883b3110f8895d2551d3e08e1a9cacaa2db2f174bd67e511f8522f4

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314-win32.whl.

File metadata

  • Download URL: bikkuri-0.2.0rc41-cp314-cp314-win32.whl
  • Upload date:
  • Size: 147.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b7304b79253ddbf63f0d968b92b80eb03a850f3cd4d265eb8c7974f10ea6f77f
MD5 8fdd88518580ca5a5dc7dec3e389a262
BLAKE2b-256 fcb2d0a9379872f83f7749dec47c8332acaef5f8f83b281a3ef96e983e530c6f

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 956c7f47977d69351c95b9307bfda22ec9a2bbe397c8ff8421e8a2769efa39f4
MD5 bae7975268c07ba2a2610510da74e263
BLAKE2b-256 dff5abbea15bb483775d2ae5db35dc9097f383ffda6b1f6d94365dc28e536cda

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02bed94af219426d0eb355beecd73a53b0191b3366bbac00249dc6209aec48a8
MD5 68fb0e44765e8d6bc7871224ae698c02
BLAKE2b-256 a505d2fcd71f632ad307b50d5684ca599f8f2c73ed57df753de1550d7910683d

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf7771491b2aba4cb3f69b3a5dd8ff1e7410bcbee9b804e121e7225875511dc1
MD5 4a48fd024767950e97f288622040bbae
BLAKE2b-256 6b75defbf1d295e9f1e07e26b448b0c90de64d0b5b4de157d15aef3af28f3a9d

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9ad854a6ddcdf78f9ec7848f991d83dabf6027120538509231d9083bdf95bd0
MD5 5b1867ca3a1c1baf17f4b000620c7b2e
BLAKE2b-256 2083ffbe1011196eec971dce520d3e54a9bbb126421c607610772312a97eee21

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0971ffdac18e03cbadc0d1f38752d8a5041b6704eaf409757d3871ab579f3211
MD5 fd538f394b9db8d5da96f2b35b73ce3f
BLAKE2b-256 6f9ceb0268864dcaacbd99a051e043294fbc24a261c049e8665f2e43bbdd27e7

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd23922f2b3210005c8ac49ecf5b62e987718ceb313949f5ba4b847f2768edc5
MD5 106ce8e7a6c35834eb3c92b01dce9311
BLAKE2b-256 8adbd40f6b9d98498937ae77dccd74e07fc359649e4ffb9634dfd330d4ce538d

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 debe61b525e4b7b07aca2148801f993a67f876d26444bfeeedd4d710fd8cb231
MD5 e6bbb120f3a763ec1e9e3caac5c1b94f
BLAKE2b-256 8473985c76af8b489582a703ea995ec59040e8f1c9e35d35b8ace72289af0a79

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: bikkuri-0.2.0rc41-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 151.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for bikkuri-0.2.0rc41-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b7d847b6ab416aeef2e10f2fc71facbaf6a76998c3daa38ec6a76d5efb8b150d
MD5 bd84a624c0900f6d12a036147271b502
BLAKE2b-256 5538801e80866e83a16862f213f0ce6526dd4fd70dddc4ef7149b066b35c0071

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp313-cp313-win32.whl.

File metadata

  • Download URL: bikkuri-0.2.0rc41-cp313-cp313-win32.whl
  • Upload date:
  • Size: 144.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for bikkuri-0.2.0rc41-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bfb1d2493093e6c3876eace24f783b6cae3458da06941fe0c174e06be4e957be
MD5 02f82389f68ed31c742c67d1c876854d
BLAKE2b-256 4c593b482b18734214f67760e59f2760cea162520f2d1219a86c43e384e1b39f

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d164663f2d244dd9c2e455c791527f640a3b8f73f2cd4a8a2a9bfb104538dd66
MD5 b061f12e93b3fec7eac0d21f5c8edef0
BLAKE2b-256 2bc87328f7920d7cc2d02d03ca44ce5a76efd70f6d2e1a67ae2e5f575adbd286

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f2abbcd6e7ce885ec8319dfaab2c416ab6e92c87950439f1b21376b3755ee38
MD5 69647f039eb54229bc87035374e69016
BLAKE2b-256 e52e332ce5d9ee1483c7625f5d101be34430382039a747933b8150a2c2f45c0e

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b225045b0ee83ec2d9acbb9b7196c85e7f8fde5244fe1c2460ca35d3b935461
MD5 37764eeab53ef0a0e2df217e71c028dd
BLAKE2b-256 f944459c70c1790fd06ce2966d8afbe018951f00dd2b85bcf95b0c2969e48166

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4bd443763043f08d1bf515e047894386b258a9dc4dfc64b075f6096031b6928
MD5 5c0b63e40436978ddf5aa51905a58014
BLAKE2b-256 7ccd7b8201b3f00b4b0b3a03506e2bb21f22303c47706a930dee84a15b59c007

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3f8c6c1b8dc6bced5707a42d7309d4181b7f9da4fe520b3c2d633ecbb2a3407a
MD5 2fb80c6173dc946c9ded2791235ebf7b
BLAKE2b-256 1d36f51a24577fe7603f81529893a44ee2ea88aee34e37713f453ca4e81b22a8

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1be418a775ad6585ed04156e2d318af3ae12a8035dbebe40a3affaf09ca0fef
MD5 29e08a8ab1ec82f1630557e3d5b7ad14
BLAKE2b-256 ec376891a1370685ad32353b24f8420487241e9e19c978ff04509c787976c573

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7d96a377d7fa69542850ed1daa3a08713d7f29f7e67ab40bd55bdd3e325371cf
MD5 f52bd89bd254d73b5e9342744f016835
BLAKE2b-256 96e8c738620831e59c51211fa25f2973f2f4a12aa8c9cfa13bd9134a94096592

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: bikkuri-0.2.0rc41-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 151.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for bikkuri-0.2.0rc41-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8bc846736c7b82691dfc710be40630a57707d53b45c4e58a896acc024ef7eec6
MD5 df3949c7ad6cd945022f7db8f7011a26
BLAKE2b-256 ce11ae289a4db28c1da12c45a158ac09e57459a85ad3a6996e4961da1ae1a219

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp312-cp312-win32.whl.

File metadata

  • Download URL: bikkuri-0.2.0rc41-cp312-cp312-win32.whl
  • Upload date:
  • Size: 144.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for bikkuri-0.2.0rc41-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 da29c1a3c38aa96e0f640d4a07a5b67a6bb82f08fb23c39c265a95d93ebdae01
MD5 0f39a6c693868069f5e7e22d5382ca37
BLAKE2b-256 efde4e8dec39248b71ecd948507232b1f61dac91d3c2e2e7dbf4ec97d5e8d5bb

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f0fbf62c88e4ef65d33d3da5e7486567135f251c7ee0bec69ba4ea8b5431352
MD5 b61ed20600eae3a3118e82c9ae4a4b63
BLAKE2b-256 e412ca64d676a227adcb6e954bba0f21f6ede22c4865ccc0d553ab9cc47102d7

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3dbea83d9e9e27b44dd0acb52c951dfdc25e7d4761147f8a6ffe196e983d4988
MD5 fd78efd5b1a8f70276c057dffce1c51e
BLAKE2b-256 05835d439bc7581fbb50976b7d1661f4f9512b55261a189263991f4d524a2c10

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 323ee70ea8d90281fd3532f08ab46a6dcfd0fcb0f0a6933fe80cf4126e696927
MD5 93d84ac481080a0c7a7916e11cf3bb41
BLAKE2b-256 3fa4d4ea95822c56309231e262a4e7b44008263bb489251e023b27e14d4fc592

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15fbfd4d6aa1add5439923cf8cb9f7142c75ee90387b7ec284a90c17402dd10d
MD5 922367cf1f988b1f79f9fca2ec83942d
BLAKE2b-256 5f22fbee710af8e465ccf8d09881a549d39b63d031f3ebfc129d5dc6f09978b9

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 862285319c0b0ee2efc3dc8c729e204ac05701a3075e12fff30fd8441e5c1014
MD5 d1a0aa33e53f16cee144e34bcac0fda5
BLAKE2b-256 d1885d93a9801921072c39d138a0deca309191a110540690c83b2bcbd56eabaf

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cb0c59a8fb27774f9c3205c01cbe24027b027c0421b59216fc6ba3bc2fa6143
MD5 5c4f00b76ddec270a450b7460fbcfba7
BLAKE2b-256 ce40efd58a35816d3b2067cb7ce20474b571107ee2e04205012728aec0efd3c3

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7f3fbaea2357792e679a838ecd685eef1329abac1d587fb1f5166d39d0f0495e
MD5 29dcc64e69dff2e375cecfa579290954
BLAKE2b-256 85c43e633d6ebccac015368c673126d119c892035ebce5fbf9e23b2d81d6d336

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: bikkuri-0.2.0rc41-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 153.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for bikkuri-0.2.0rc41-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f9e95fe87cff6f1ca7e4fc8e336537c6e10403250b10f7248a420f9085a3d2e0
MD5 fe93f01fe9631946ea4bb7fae54e3554
BLAKE2b-256 59a417dee41fe8e09da60e673f066bede8cce9013124b26238ff1b7323d36590

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp311-cp311-win32.whl.

File metadata

  • Download URL: bikkuri-0.2.0rc41-cp311-cp311-win32.whl
  • Upload date:
  • Size: 146.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for bikkuri-0.2.0rc41-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e98f52ef973034c1f038f4703f0f914a078b85993bcdcbb64f50989b7cf3c619
MD5 574210825d2717ed65154d43f138ed92
BLAKE2b-256 1dae7b3ebe8662f4ee50d2e308ef5e0d6aa19950da1afaf92c502d5dc5099092

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 599e9c47776d4952b3ebae00b93050b81b260dfd8578f4d6ea32b7371aae49b6
MD5 60744b61a8b208c2986330ec2c7ab7ec
BLAKE2b-256 1dac6947b59ff1fda51992118f66d29a61b215851ab5075cfe7f4d2b41b1fd3c

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0b155be9ad95e9cbb9bed86e22bc2a6ebf0c85a7ee3a76e9562ffecff3f36a9
MD5 028e9cdd123fa7e0512e209b743181fc
BLAKE2b-256 a25a2b1571450e989b874dad2f3589ee0f3c0ac4ed27cab9445d64961b230dad

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c814cc51b9fd28812a9e6a4dd6ab0a87d00921392c57f28c10230e6ff619ce58
MD5 787a9d1594bf632db59034c5e1b27593
BLAKE2b-256 a1584078c330b9851bc9d83ba6c0b06655366d5d824f8c8de6bd9fdbac7b4257

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26c043a2c5154318401d3b159704c9f96c166a55db2dc34580fc6445aa6465fd
MD5 af8885539d3e3bd5a1ad1d5bca26dbfa
BLAKE2b-256 24d6390c283418374dee012644da147709729f982acef596d2044746b7e550be

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 487a1dbc0d3d9e17f55a62f4fa22c53a2bf97d3ae3bb614d9abf0fd3399bf236
MD5 54177695522800babff6bc9fbc4cc717
BLAKE2b-256 e5b6076b37981cf658598cf31d1282a114cb4098c78959227a8eb0d506d54e64

See more details on using hashes here.

File details

Details for the file bikkuri-0.2.0rc41-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc41-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b1fb69c221abb1b3e6b922d45bfa7adbe67e7092193d56956392037ced23663
MD5 792981f0e9f22370e19478a9d5c46124
BLAKE2b-256 9c23d396538a07d99fdd0be672c77da7f2b34c9c8ab025a4bb811a2aaadab75e

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