Skip to main content

Python package for keyvi

Project description

Keyvi - the short form for "Key value index" is a key value store (KVS) optimized for size and lookup speed. The usage of shared memory makes it scalable and resistant. The biggest difference to other stores is the underlying data structure based on finite state machine. Storage is very space efficient, fast and by design makes various sorts of approximate matching be it fuzzy string matching or geo highly efficient. The immutable FST data structure can be used stand-alone for static datasets. If you need online writes, you can use keyvi index, a near realtime index.

Quick Start

Install keyvi with

pip3 install keyvi

create your first very simple index:

import keyvi.index
index = keyvi.index.Index("test-index")

index.Set('key', '{"answer": 42, "condition": "always"}')
index.Flush()
# get the entry for key
m = index.Get('key')
print(m.value)

# match fuzzy(levenshtein distance) with max edit distance 1, exact prefix 2
matches = index.GetFuzzy("kei", 1, 2)
print([m.matched_string for m in matches])

For more information visit the docs and project pages.

Project details


Download files

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

Source Distribution

keyvi-0.7.1.tar.gz (2.9 MB view details)

Uploaded Source

Built Distributions

keyvi-0.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl (13.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

keyvi-0.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl (13.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

keyvi-0.7.1-cp314-cp314t-manylinux_2_28_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

keyvi-0.7.1-cp314-cp314t-manylinux_2_28_aarch64.whl (13.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

keyvi-0.7.1-cp314-cp314t-macosx_14_0_arm64.whl (16.5 MB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

keyvi-0.7.1-cp314-cp314t-macosx_13_0_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

keyvi-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

keyvi-0.7.1-cp314-cp314-musllinux_1_2_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

keyvi-0.7.1-cp314-cp314-manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

keyvi-0.7.1-cp314-cp314-manylinux_2_28_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

keyvi-0.7.1-cp314-cp314-macosx_14_0_arm64.whl (16.5 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

keyvi-0.7.1-cp314-cp314-macosx_13_0_x86_64.whl (16.7 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

keyvi-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

keyvi-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

keyvi-0.7.1-cp313-cp313-manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

keyvi-0.7.1-cp313-cp313-manylinux_2_28_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

keyvi-0.7.1-cp313-cp313-macosx_14_0_arm64.whl (16.4 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

keyvi-0.7.1-cp313-cp313-macosx_13_0_x86_64.whl (16.7 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

keyvi-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

keyvi-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

keyvi-0.7.1-cp312-cp312-manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

keyvi-0.7.1-cp312-cp312-manylinux_2_28_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

keyvi-0.7.1-cp312-cp312-macosx_14_0_arm64.whl (16.5 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

keyvi-0.7.1-cp312-cp312-macosx_13_0_x86_64.whl (16.7 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

keyvi-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

keyvi-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl (13.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

keyvi-0.7.1-cp311-cp311-manylinux_2_28_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

keyvi-0.7.1-cp311-cp311-manylinux_2_28_aarch64.whl (13.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

keyvi-0.7.1-cp311-cp311-macosx_14_0_arm64.whl (16.5 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

keyvi-0.7.1-cp311-cp311-macosx_13_0_x86_64.whl (16.7 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

keyvi-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

keyvi-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

keyvi-0.7.1-cp310-cp310-manylinux_2_28_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

keyvi-0.7.1-cp310-cp310-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

keyvi-0.7.1-cp310-cp310-macosx_14_0_arm64.whl (16.5 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

keyvi-0.7.1-cp310-cp310-macosx_13_0_x86_64.whl (16.7 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

keyvi-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

keyvi-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

keyvi-0.7.1-cp39-cp39-manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

keyvi-0.7.1-cp39-cp39-manylinux_2_28_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

keyvi-0.7.1-cp39-cp39-macosx_14_0_arm64.whl (16.5 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

keyvi-0.7.1-cp39-cp39-macosx_13_0_x86_64.whl (16.7 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

File details

Details for the file keyvi-0.7.1.tar.gz.

File metadata

  • Download URL: keyvi-0.7.1.tar.gz
  • Upload date:
  • Size: 2.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for keyvi-0.7.1.tar.gz
Algorithm Hash digest
SHA256 7085650a4cb01738734fcd42ef2805569ef006d7bbe9ccb2f3f0d7e282f5b2fc
MD5 7471e48bf2bf68433b44ffec7ec3fce8
BLAKE2b-256 3afbec7199ecb8a428c814becc7a3f000cee81606e179c1e1c3b79e5f44962d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1.tar.gz:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ceb8ab9c3b65544e3c5beec79117ddefd0e33b0dc1bc06897ac1e1bef7d42af8
MD5 f1e84a036fbc943bbfd08da3dd278c61
BLAKE2b-256 f215d5d8caacfd27980246dbb8c9af7bacddf48635be8faa40f808b0cef33aba

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ba4a47ff9825794bda74aa7484948209b97739d8d7c6eb6c0da06f9cf0297c2
MD5 e3c9d6b4d41b5a5481ba951c52705643
BLAKE2b-256 9a43a846e1a8fafa0cbe26fcf0054de52abd05865058fe82c9a72a32641da1c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51b330ad3336e696a95595acb6c7a91bda21614def7651a22a4594711f35a82d
MD5 a755dce831940b905d7e271377cdf94e
BLAKE2b-256 2f5facbaa763f5a351a137a3ef050b40a97e2d67c42b1c9f184a0b00cff771f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e1a351315ebb1ded3fdc136e88bb9d3f829921b4a81bc5ade8f7c9f081aaf9e
MD5 2bb9a07ee6f5fbe8575e6cdedbd5fc94
BLAKE2b-256 f2f0fbd480e54d3bf3acafe25566db0dac1006efd8ff147bc4ee2d970f5b0e35

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 311c61bd87735fec1df97b6833d0a564ddeca85a9aa0e4872015804398cff339
MD5 48808988093a64da28058ba15be15796
BLAKE2b-256 b7a9a14518b3c691f3dc36f754e7f6cbfa5496c289e9219d858a4dac70e03201

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp314-cp314t-macosx_14_0_arm64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 4205b1f51e7f0e0ee89323dfaa278d970e2badca933780604be501fa57cb852d
MD5 e6c2957b84bfeaa9aba3a1d76475beb7
BLAKE2b-256 caa0627be301da1453c0d1baa9db8e2216bc2364c2f68e051d3dd111a1971d09

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp314-cp314t-macosx_13_0_x86_64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 216d81b195591d50fdc161cd369d5b8c41a3bcb966306715299c482cec5c5a18
MD5 054c557fa3a0b17c439bf1bd06a0682f
BLAKE2b-256 3ea1824fa40cef3f35ed3c14dfe64dc6eef0244e9bd5f5f95337f125dc3cc798

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c10a1963f88c395aed1385041aee3e03b05117a1e1be1d93c746b3be5fa5fee2
MD5 9ae4994761ff0cd31b1395ce7a7551d1
BLAKE2b-256 8c20754031e4a86d30a04d735d463ceacd1be908bab87079920ef784db81e5a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52079de26a00501f0914d65ba7967a029c152bcb7ef915c2bc953d3d63ebb81a
MD5 54718d2e5d0b7db319f408ecef452cdd
BLAKE2b-256 d265b3291a9a017074d267ab30490058b803aa16c41a39e76a01978d67e26cb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0803373f8cccfab4563e71e97bb6a3c2cc5e94c3b13cc5c648597a3a978221e1
MD5 03eb5c2ec7ace60b88eecd2d266147b3
BLAKE2b-256 0046a0afdde6e29ef06672b37d7e5d701180ea118498eac362ac236fbe3eb693

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ac02bacb867f003fa0eb39d75187ac36b0faab9648c4c4d5bda58af4d3e1bf48
MD5 ebc64317ce53bba756116c35dbaf2793
BLAKE2b-256 cf32aa7fd0cb33b413d74a0f0ed146fadeafb1e8e5800bfa5dd13ffb7b5ed3c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 d3749489cbecec25c8857ce3522489149f96960e69166486b6144415fa2dc0a6
MD5 a70102cc9cf2844f36940102fdc01a9a
BLAKE2b-256 6e625c40f7afab7eac70f32c39a98e45eb77c1d152129d56cf182bb227adf249

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp314-cp314-macosx_13_0_x86_64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03f6e44caaf8fdca3946a25ecbbb0d2725219b651634686ee954b80b9305b3fc
MD5 541c3d0dd856453865a847cef630722f
BLAKE2b-256 1d3da8b718ccbd0708415ac578ace0ee2dcbab3e094a9a2e9a465d935a89f0c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe2522b0870ff43f7404b95d49a39a97fb82962f8deb30c6ee1986378bb8247c
MD5 09183192b2afcdaef68d473934b46a0d
BLAKE2b-256 df7b22dfa10fce10ff3082b56405fcfe0adca5f8f7076259b7f802cdb20283f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ebee9b8aa33310fa31ed06ccae7b36bfa3924e756c6f4da4a70d58b29fbd913
MD5 16e968386a5a352afb50ab84de34bb14
BLAKE2b-256 d5408af0f117e5f102ccf759c579f70b6d583cb7dc1c61e8f4e15185f39393e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5be967d46f8df3c8a3a2dd8403aad88f2520117b6a996c3cf9affeff52c883ab
MD5 b7c32ec0f1cc28064bb8047eabcd5a17
BLAKE2b-256 1076d73b14fcbd22db9adc73f89ae116d487e16f1af63b10d5069cd6d04f93c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 43fbe9ae49f54e160934fda295d911bdb47ddef5d31c517865be2925d3a11924
MD5 78954f2cd1c9ae2b7d2d23dad9bac22a
BLAKE2b-256 203119cb214ca419f73e4ae700fc6f445b70c1230fce5133b701d7467ac915be

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 1b7b9b81f324057c93f85bf7df5aa0bc3a291970844130a50d3520ef6a0e6867
MD5 37b8fe88224639846c42a5b63fd87644
BLAKE2b-256 e3455a1d89be23c6375e842a51f444738247babef14087be810195f40f910401

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cea4c24c469616acf96c791a06698766f76dabe5a725c3e051fa37accb4e0706
MD5 595601145832a0c338ed91c478602352
BLAKE2b-256 f5ab818e85252a5a20fceccb23409eb27181b6f910303d2e68dcf6de3f8a1ccd

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7dbc46ec3ad3c6fe3658b8fad87e75f2d2033336177c82313148f9e94f7be777
MD5 47301221f5bd15d62aed0ff31a07cc43
BLAKE2b-256 1c90463d95969f7bedf2d85c44b76f9ed369a0fc281bdbfac07d4fd757308e0d

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e63687faa1286c2ed4f06446c3922a6d86e75d56a18d27c943e1e3497988bb0f
MD5 306ef69f41ec2034f25d9c53fbe0b791
BLAKE2b-256 0e8b1fc1b55b71ad2a09a870f3c37ffa86688ffb40b590f21b558e3bf49c9092

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bd490ebb3ccd06e4736997aa6a084ad3fef99872d19ff49d12bc8cd7465b6abc
MD5 b7c2f97c88a6c7b9f55ce13835d5fe67
BLAKE2b-256 3908ed102925128ff41fa295aff5064cfa3eb425cefb097e6ee1bab454e3d343

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b360b687453a58e947168817f7086c92bd513f2a003d6a41d30e66919d162889
MD5 4f55547c781b9b5c2b460ed19db4a34e
BLAKE2b-256 fd571d212783457ad945d2d30f0cd8bc18aa1c4b94e68b5d7e8b68cd4fb9dd67

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b1c13811f5c25d39a2d3b61f37be72222665a12fa7bfc5359bc23e43ed92b47a
MD5 54277e50505d9bf4058e74166c939407
BLAKE2b-256 8db232576e5e0e2c35300472e6bebaa8825c4aa4c4a5733c9472fe2ae623a29a

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 315172d6baa2a43fc200c763b23f8070370cc9fb585fb9695280c771292e1b3a
MD5 cb31b5d6f1f42fc304fa7cfe75f5deb4
BLAKE2b-256 83f0f188e4a1eee571d4970cb4deb6611bd27fc49bca977340174d654fdc4931

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eff02c5fd603a8fb010b4e269590b3949e17a727158dd9636f9083e79159a2d4
MD5 5b0fad2bef85a87fbcf6c3d7284937a5
BLAKE2b-256 c1ef2a30f275ed685faad13f7864c8f51d5609452d9f76a649b28f88f6927a22

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16ba03de346980deb6a6bfd203ccec05afc75a384c7ae46ef2987f6fd2508263
MD5 0b33199228bbd09b57b2f7c804724e5c
BLAKE2b-256 91c19156910476ab30a6aa2deada4702268f39cd6b55788aab60c95291d76153

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e3983b016185bbc3199b292b674244bb5e5f7b8c2f122c8607c6d8aad0727fb
MD5 934ae0f288432f93c58fcc7569ea6809
BLAKE2b-256 7acfae7293c05387b7ba031e860c42a691d7185f7d7486c0c846deaa5fe4eba1

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 eaf7a145367961201404c33ad428e7052c25eb3d9c4ace088c6a993440822859
MD5 320fdb1ef53d42fb1318c6d84e4ad108
BLAKE2b-256 feda0b5b0788c89d47eb4f53366ccee5dd9971309497b3dd42fbcc5325b0c705

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 5c674f65959dd0952ea45c0c2d58114f146edc83596c210d8867c220c5940302
MD5 eb653f43b4e6da3ebc5e85d0b9344257
BLAKE2b-256 576c8396f09a3f1f92ce9d01821d5f8d0c8367deaed5a109a009e2f61fd73c1b

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a301a1de00233f182216c10d3c2538e02a4afa1b8ef9340293bf0bef8fbaed47
MD5 a3c3c622dab984fe70cc3d251dfe6441
BLAKE2b-256 adcd7d04a0e92bd6aa67da6237b7856dc22d3b9b52f8e86e5f5e8b341a18b69e

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d134ea4fed8fb5e6d848fb481e02f2776d960496863fd56faf72813a86729d38
MD5 20613cddfa977978afaac7bc04334325
BLAKE2b-256 f6e2badc20e12ea566d7af91d59ff316c41a5710db64b9867880efbebda3c1c1

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42e4a8cac8f7e5c4d1680c50a5cd3b885b2fe38257376a2766fe3f7852070804
MD5 70d7c5f9a6a0376c1ebce2a166c7f004
BLAKE2b-256 c78362fa4e29fd653a727f3d10297d110c70d5dbf519da7f91f966013aa414e9

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5badc2a5caacc4902e3e6c609c09c2ac3c2888f3711ebd22ecd8940eb60f15f7
MD5 a2554c8d2e4cce0b12170640ea458c92
BLAKE2b-256 7464a0ff13b2d10387787b76a14d80eeceef990c70010e1678adaf20e0112b65

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a220db9fa2b797eb0c2a557fb83a0360300ffde731da60697e0c93bd71d4f8a9
MD5 af3eb85d747772cadd0e4b2be07f696e
BLAKE2b-256 4088738de208dbb3cf630bc2d7d38e4e94395d96b962948cf9da50a737957d89

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e9df563b476e76c5d26a17bdbc2a0fb6449d469c4fd3519b59e6b27e26878182
MD5 e5d3d8a9c6b9665ab0b6f09423717c8b
BLAKE2b-256 890cec67bb6bbc8bd126aa7812ea5a225bba23635102685a63ae8d53adc9661f

See more details on using hashes here.

File details

Details for the file keyvi-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc27ae109b2738db67ba9dc6600fa189e3de04b950d2d9be6094e7c8e7153135
MD5 db38a6357e4e9ffd632d2056e9e9d55c
BLAKE2b-256 447972a0139fffeef6c94bfe36eea4e0dd0bf220dc8a0a249da5bdcbcb8af82f

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aacfd32b49818c719caf3df5cebddb3d1743d39902b2d87148f6b5d9f79e52de
MD5 f840cba0de0cf7b6f8a5fa07687a8f86
BLAKE2b-256 e3207bb8623029040d37310b9b2df171f075008a6c2a722fb5f54aaa86e63412

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 27ea19a1ae1d8e4ba0c97d46be2a7af567aee8710a8b839ed1d75067898850f6
MD5 87ca6873a0aa251016009a301618db64
BLAKE2b-256 f08a93092b89d748218aa333b55bf6d1ef6e480eb1577f9c3aa2a5a06c93900e

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49fc86334324b8b54208865161ff6455f8b2d439f1562830b0a46e786b712abe
MD5 24c1fe17b90833ccdf9af8bbbb7e0d59
BLAKE2b-256 00ad5cd4fc7f09a529e36f277ff3625415c277c1cbccabfcb35b4aa307a595e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

  • Download URL: keyvi-0.7.1-cp39-cp39-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.9, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for keyvi-0.7.1-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a3f67547b0b6b90584d55b5511bc528d281b9f86fb29511ce277e83b8e37bd3f
MD5 4b6d2c83c5b483231f6cad4b533871c3
BLAKE2b-256 170aa25bacea8377970489cb3eeb6fae5761752467b45f111beb2839a0de4b8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp39-cp39-macosx_14_0_arm64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyvi-0.7.1-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for keyvi-0.7.1-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ff55eb19f547b0f37d32f3f45e69bbe936e9ec6e07cd30423c26700ec107c1b4
MD5 378e67fae6b35015bc1ca48e6ef85b8e
BLAKE2b-256 c595920c7aa9c091fdf4a887d1450a12fd2d3ddfdc6d6230006354ce1ad1b893

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyvi-0.7.1-cp39-cp39-macosx_13_0_x86_64.whl:

Publisher: python-cibuildwheel.yml on KeyviDev/keyvi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page