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.0rc40-cp314-cp314t-win_arm64.whl (150.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

bikkuri-0.2.0rc40-cp314-cp314t-win32.whl (146.8 kB view details)

Uploaded CPython 3.14tWindows x86

bikkuri-0.2.0rc40-cp314-cp314t-musllinux_1_2_x86_64.whl (364.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

bikkuri-0.2.0rc40-cp314-cp314t-musllinux_1_2_aarch64.whl (349.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

bikkuri-0.2.0rc40-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.0rc40-cp314-cp314t-manylinux_2_28_aarch64.whl (284.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

bikkuri-0.2.0rc40-cp314-cp314t-macosx_11_0_x86_64.whl (258.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

bikkuri-0.2.0rc40-cp314-cp314t-macosx_11_0_arm64.whl (252.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

bikkuri-0.2.0rc40-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.0rc40-cp314-cp314-musllinux_1_2_aarch64.whl (349.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bikkuri-0.2.0rc40-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.0rc40-cp314-cp314-manylinux_2_28_aarch64.whl (284.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

bikkuri-0.2.0rc40-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.0rc40-cp313-cp313-musllinux_1_2_aarch64.whl (350.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bikkuri-0.2.0rc40-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.0rc40-cp313-cp313-manylinux_2_28_aarch64.whl (285.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

bikkuri-0.2.0rc40-cp312-cp312-win32.whl (144.5 kB view details)

Uploaded CPython 3.12Windows x86

bikkuri-0.2.0rc40-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.0rc40-cp312-cp312-musllinux_1_2_aarch64.whl (350.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bikkuri-0.2.0rc40-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.0rc40-cp312-cp312-manylinux_2_28_aarch64.whl (285.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

bikkuri-0.2.0rc40-cp312-cp312-macosx_11_0_x86_64.whl (259.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

bikkuri-0.2.0rc40-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.0rc40-cp311-cp311-musllinux_1_2_aarch64.whl (353.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bikkuri-0.2.0rc40-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.0rc40-cp311-cp311-manylinux_2_28_aarch64.whl (287.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

bikkuri-0.2.0rc40-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.0rc40-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 507131ab4535b77c38dc901e05eabe73d3aa559294f306d965fdc4cded425811
MD5 853b607ce063a93f013a4291d935ed98
BLAKE2b-256 2bdcb3b5413cf05dbeff7ec3983c04e68f61b42b23aec6e723008dc4b246c762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f35338721d70eb8a77441b2baca6a43a74c502c6e2f53260b50036a2cfc161ba
MD5 9baaf285b44abc77bbbd0da112904d68
BLAKE2b-256 ac1ca7f319628ecd4b44c84d56c76226abfb4052281ce79a4f7368305ea292db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bikkuri-0.2.0rc40-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 146.8 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.0rc40-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5b7ca26b469d99707fbbb1206ac2a47dabec8c6035e803c421f75012da435206
MD5 4ac71eaa3d51de0d9bb5e24c21a5aafa
BLAKE2b-256 6cfabec6865af760942e46263ddb17a6b3ed0114c070770b150480ddea17f325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfa473d324610d185990dd64e368f795f7bfcd1a11b767b4643a0615924af597
MD5 6d6eee6d1d0b348ac4fb92bbe81de7d4
BLAKE2b-256 688cc6002f6c17f1e89ecb8426c4a8983b0222163763c250ab385cb3513818f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00dbd189cf4267bfc129d3a4caa9bb04bbf85119c9ee01c634223570b8576898
MD5 5c324d9cd992c69f0bc805e6355d2bdb
BLAKE2b-256 c38386e60abe683b713fc2bfb700956ca12eb95630ccb061a88ff5794da88071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2acaf8793ec31994bc65616511ac9e758016291c13f7b40e5e2f0e3feebea75a
MD5 eb746a138810dffbfc95ab590f2c08bf
BLAKE2b-256 2a135ab26a57c13bf0cef50940161d36a9012da8efc249dc8faf6dcc98e5ea58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 92377f33998af01465c83c0b9426cd9beb2dcb9c34bb0e2d28c23c5e43860a88
MD5 a62753dc40f629e7057fe80de27f437a
BLAKE2b-256 7e2e4f67e87ee77b027f14f290ba76a04871d913692b890ef42ea1a0c3c43641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 1b5b9a2a9c0d9fac89b5b3e846e90f2546058cc2fab025c9aea313be158fae01
MD5 8471e95930cb476e075d7416f5900c4c
BLAKE2b-256 5949da2f7e6eaf8a7f3b3761e77c1c3c146fc87bf23340eb7e95b690ec0d35ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2cd15ed71aa72f370e881d3d4c22d9b0ef0af317425e290fda080da5956f61d
MD5 23bb86ae22fe258696d70cac7ea41f93
BLAKE2b-256 12be1bba08199b9e8e1911bc898231617e253d087c74bca5bcc4661bcdc1759a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 fd931429dc08de49853bcb69629521163cc096ec7b98e53ea83578b30a599d54
MD5 5d6ecc8e892ae9b9c7c2123f4dba8a31
BLAKE2b-256 afe64013323f6ab3a096383c5899d340d17fa68777fe14782541eea2f228ab58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bikkuri-0.2.0rc40-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.0rc40-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0ffe64abf2b7e1284fecc9fc4fd5e7a37b9a1d76810a790b5432a452ea0fde03
MD5 b60ee04dbf4e50059a6e3b39391de0f5
BLAKE2b-256 8c2eff90d378faf0f3a103faf751889a572493dd10ee8420c3fc2b2b6842564a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bikkuri-0.2.0rc40-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.0rc40-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fc9a911277b34aa29432af4265ba9a4fbd0831a04b283bbc75f3446d3ca6656a
MD5 1cbfe41a1511fe4295bfe21d8eb8b014
BLAKE2b-256 9a57b3148624e16a6a15ee9b51a007bd0c765654799b153524ca2a0f1fd8a637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2df573b46624788c8226a17051bb47fcaae4eb7a2ee78953329fdc0b6333da52
MD5 b4f58672d3f49dd9dcfece48477b9cb0
BLAKE2b-256 744c83979585903911e20840c329ef3d6d45413f4d13c7cfce9476ae7857ec51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26bf072ac4f8ac43d4669f8dd566cac0cf817f46213b6d10884af21e2710de27
MD5 fd0295c796ac1f55db1064ea0f00dee7
BLAKE2b-256 68a205c633e5d87416dd958db19ea195ea93c2b268e4126c404ff3b8a387a3bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1bb525a44c31fb05de5042aff18581a1a757e18ab265b013a2ddede69de9c21d
MD5 ad31e7c06d00abd0932df872985fa4b2
BLAKE2b-256 ec15087414c3ff284af5ebbfaa7bf76bf2c1369d8b5920e107e4b131a152481b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a3809aeafebd4e5d832a2e017bc683ab7069661c443c0cd42bd89c0f12f7d4e
MD5 2ed3c2a91709b9866c216ec0b1df8ce5
BLAKE2b-256 6da6ceb08199a5118f7bccb5ed449959e29a548472517d0ac695d3a3ae1cfd87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d3de46a6334c03ff73501eb08a83c7ce9a18479b2b028ada5599e2c18e5309e9
MD5 a988074b9c8388dc89b44d0454ee63a0
BLAKE2b-256 6f9ef12739724d20e35b808a094d213e568ca023c6e3dbf27fde4cbeb48db766

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3bac870bfe01fbd63774fd2811cea264e5c7fd74ee651cda02c6e9906d040aa
MD5 32bcf29b461f650c2d6d11e345fea2ce
BLAKE2b-256 43ebe6db1fdbb12a9173edeeeaeb44dab6b11b79998035ea3b4a0bbbe42fc592

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e91624db6001925d2189a2f9f0f095e98ee5859c64cad16dfdebcabffdb2e079
MD5 d21cd7398ddba251e0758140731c0360
BLAKE2b-256 2129640d85c7c043335e8d3834d076b5d89901ceb3472e4ef69907a5d6eb9501

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bikkuri-0.2.0rc40-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.0rc40-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 16e71c6f6a5aff469818816199d69b5a65066ce090ef590cad44c9ff008bfb63
MD5 95d5cad0be67afa471eb590496461242
BLAKE2b-256 2fcd0ebe090621801e9c07d84094461d9e673d466fb12a191cc75b3165fca737

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bikkuri-0.2.0rc40-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.0rc40-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 67187b668bee4744a7402de260256c0853f85f7e0c51905dbb5bfb55ceb13d5c
MD5 38f68369be4a76309bf5fe3b2936b313
BLAKE2b-256 2768339801222a60d336c73ccc6de40526e063a1f5a0af6d1825fe16a6244795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24f5a06ce4a62c174140edc408c522bfdb5dbbeb3053365a9999afbf133921d9
MD5 401e36fee94f96925e7d5c2acbfecaa0
BLAKE2b-256 ec8e3ada92711b7e358634355d9925d59b956d5e820056d75fade014dadbf85f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d33f4020679286903f02a8a5804bab58ca3b14736e5de38b98269a1acd0d9c3
MD5 318152bc1a64e737b9af2e1c01659951
BLAKE2b-256 d153f27482d8040cdfadba79a8587a142131821ab2cb2370be6f80bf96d08c53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23ec655464ef4a12bace6b0e5057c074db2d85eb755c2031930d37bd7bc7e3c8
MD5 d7af2268281ce9a07e8af7d0934ed5db
BLAKE2b-256 48ea00c9f5c07548fa4fe5ee8e42dd0315b7129dcd9c78caecbd235c020ce192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79452ae11f0d7e681f92d662e33e62f67b4b904fec064f54781b875cc5c56a17
MD5 38887c341385c29a5cd3cddb4a796618
BLAKE2b-256 a962b27655dd189f2d7252b22aa2301c6d8ef8149ffd3d698e2f6f1e3cdc6899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4aa7d315469465fac0275c6998e21688dc41504c29f6d53a91cb5896177a1532
MD5 a5a3887572aaa9d186490b999cb423a5
BLAKE2b-256 3b3ac2ebbe23c408f56487d8a3b0ea59182a1df8f4b850ccb2888e891bf1f44b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d58b9311edaeb17c3feced8fe2204460ff6455721d634b3a4ad85780ebb01c3a
MD5 6ec1a6ed586df1c1e0a1491be17483aa
BLAKE2b-256 a7691410693a35568b0582cf1dab5a4703eb3ab7b35a303f43d412749f9dd094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 151917259b50dc6c052d5dc89e33abe610e31a9d9b3aa06992d0ac9d9220daeb
MD5 beb9d55ea5cdcceec81019013832a8ed
BLAKE2b-256 5f5b28dda2361569818eb8bbcede8f27a7cdd9895bfc19475c331aa480f196fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bikkuri-0.2.0rc40-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.0rc40-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 49a9516769859a92889053b1585e9f112ebfcb43794b71e2ef5517a81732ce5c
MD5 1fe68fbeab998f5f7df982cd47581db5
BLAKE2b-256 97ff42073837faecf24286bb5e61b58b9ea461a297f9a0ad02e8399c607958d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bikkuri-0.2.0rc40-cp312-cp312-win32.whl
  • Upload date:
  • Size: 144.5 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.0rc40-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 44c432e9972c004924e1b44a56c6088b67e29126842bf321672280c1812cde03
MD5 a82f9775ce4a8339bd825981632a60a9
BLAKE2b-256 ab69188f7e1c14919becc424f7c3a22372e497c3afbc09ad1e471b845f86da92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31e009bd3dbf8837dbe2b21e4cb8d9938cc3e01723515d879c2d4ace257e51a0
MD5 1f7c32b9bb13bf685da69c45a082fccd
BLAKE2b-256 f0d65fb291c4048ae524b58d41b2e66c64e7050b99f6bcf84f253faec6e93722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 201e9337f878bfd3c4bc5083aef9d5bdd7827f6bca4faeabab5e55dce943986b
MD5 e64c5726d1a910f0dc9122c81f933910
BLAKE2b-256 cf77bb7104f051bc40d501b8b07d755731662f07a9cd76530463d2220f549422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c8ea9d6dd2e648781621f5ace9e897a3af181f29a8226ce327f50501cf3e321
MD5 3707ab6c3e618a7b064c3fa43d2b1850
BLAKE2b-256 cbecbea46c18a895ded496ab0834582d38a1298681f6e5e584bee9b7ee3a5e6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a594981a43e3503b1c69888837e7ea43162526b3426758aa4d44bb9ee361b1c1
MD5 1c7ecfae5a2bb1ab2b1aae3be76a0abe
BLAKE2b-256 af34569e40f25d378688d77e05147bc4e84044cb67abd9b805a1cc7391a4c088

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 75243b22027d91eea8f8fa8ca747cbe1bf7d10448de0abe34627634e91666b48
MD5 7d9fc1be5cb28ff4b1fd8e2c4b7628bc
BLAKE2b-256 6d7dc2871bd67ddc0a0d882f802729a6fe6d53f75c1c1e05be612db4c8cfbe8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24e65a2e5174166aa7408927197dc6122cc80b1e9851231c5538cf724c38fa6b
MD5 105d19829c5acbe27be42c96e394dbc3
BLAKE2b-256 0adb37ad6ac92901f7561a2ee8a982766b55c8ccb1bcbcb3466213451398099b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1f0f6cb59ba316d40821e77d9380a6a2091aad1c9ba0f2e2665d6ee825a8a756
MD5 645d39e89a59aff44396823dc9598e85
BLAKE2b-256 fe979cf04ff6579ef7c81194d1f67518f74c6ee0102bd9dfc386b765906a013b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bikkuri-0.2.0rc40-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.0rc40-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3fe2bd055efc63e466afb0876b62d1da49f42c4d25ab8dadc561efea9bfefe19
MD5 569155d73c4cf6c9e941a020befa649c
BLAKE2b-256 448834f529e418ed23796d7510f1c7168cd2f8bff906d6268e581544b0a7ce13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bikkuri-0.2.0rc40-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.0rc40-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 48b89f45825a9a355abce50ba96e0a620a82e9af1fa97336a9889a77e7da3fc1
MD5 8e799e18b7f3ded38824f44b774ad44f
BLAKE2b-256 a6a4abcf06c7c411da3a00b969377087c236ebff99666427f01cfddc4ab08043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20b3bf598b263387a8f9b4af6ff2c04ecf5f93d5987a1dc165b74657551a5fa9
MD5 38cae948705ff68d3bd4a3a25b144ad9
BLAKE2b-256 32e27d592f7d47573e223643ec0171b776a079b6326ee7b870e3f157facb2de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29950382d52de0b57a46b0719f7d516ebfbeeb0fb486b5be3217e53315807d97
MD5 669f870205cfb8eef38a172914ad7288
BLAKE2b-256 c0cffc5b3c1c95344e1a409fba6bbe84da6317e1a04d79e040c1a8419f3209ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba0d74bba4c2501257174890b777ce20b82e448423d1ef17f30d26e1e9718d44
MD5 4a0bb59fc869a1175d418f156779ad34
BLAKE2b-256 e1e5adf77e9c1112c3f11d01f5b066b4c5f51c3b2047cb2b1321f7c6492239fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e37696886e3ac1b46b8d8903548e2b685ca9c84b2d8ae77ff46270718a0899ab
MD5 f177279fa9e7b7cb82265f9aa167dc2f
BLAKE2b-256 2bdfb28f8db72bd41269b68475f67bbf686c45fd86f448774b4c636ebe7e1c7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 aa967f7c3e3c61a583f0083d97482f3328dd485b41c8f01b380696f937ce308b
MD5 56686b881e6066d44ce0ab1e0317c115
BLAKE2b-256 f709f5cb7728cce78abdb57f7d733366d45073634452f76e843221dd6ab117cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bikkuri-0.2.0rc40-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2bfff21a4a96af0bacfac44b3a91fa56f400e0d7131c29fa9e3befedfe17e6c
MD5 541c5cc84399c0a63335569b12d7a059
BLAKE2b-256 79d2cdd08466adda2f1848cf495dd694f9823bf39e3b593f0a5cd745ebb65dc0

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