Skip to main content

Python wrapper for libvalkey

Project description

libvalkey-py

Build Status License pypi

Python extension that wraps protocol parsing code in libvalkey. It primarily speeds up parsing of multi bulk replies.

Install

libvalkey-py is available on PyPI, and can be installed via:

pip install libvalkey

Building and Testing

Building this repository requires a recursive checkout of submodules, and building libvalkey. The following example shows how to clone, compile, and run tests. Please note - you will need the gcc installed.

git clone --recurse-submodules https://github.com/valkey-io/libvalkey-py
python setup.py build_ext --inplace
python -m pytest

Requirements

libvalkey-py requires Python 3.8+.

Make sure Python development headers are available when installing libvalkey-py. On Ubuntu/Debian systems, install them with apt-get install python3-dev.

Usage

The libvalkey module contains the Reader class. This class is responsible for parsing replies from the stream of data that is read from a Redis connection. It does not contain functionality to handle I/O.

Reply parser

The Reader class has two methods that are used when parsing replies from a stream of data. Reader.feed takes a string argument that is appended to the internal buffer. Reader.gets reads this buffer and returns a reply when the buffer contains a full reply. If a single call to feed contains multiple replies, gets should be called multiple times to extract all replies.

Example:

>>> reader = libvalkey.Reader()
>>> reader.feed("$5\r\nhello\r\n")
>>> reader.gets()
b'hello'

When the buffer does not contain a full reply, gets returns False. This means extra data is needed and feed should be called again before calling gets again. Alternatively you could provide custom sentinel object via parameter, which is useful for RESP3 protocol where native boolean types are supported:

Example:

>>> reader.feed("*2\r\n$5\r\nhello\r\n")
>>> reader.gets()
False
>>> reader.feed("$5\r\nworld\r\n")
>>> reader.gets()
[b'hello', b'world']
>>> reader = libvalkey.Reader(notEnoughData=Ellipsis)
>>> reader.gets()
Ellipsis

Unicode

libvalkey.Reader is able to decode bulk data to any encoding Python supports. To do so, specify the encoding you want to use for decoding replies when initializing it:

>>> reader = libvalkey.Reader(encoding="utf-8", errors="strict")
>>> reader.feed(b"$3\r\n\xe2\x98\x83\r\n")
>>> reader.gets()
'☃'

Decoding of bulk data will be attempted using the specified encoding and error handler. If the error handler is 'strict' (the default), a UnicodeDecodeError is raised when data cannot be dedcoded. This is identical to Python's default behavior. Other valid values to errors include 'replace', 'ignore', and 'backslashreplace'. More information on the behavior of these error handlers can be found here.

When the specified encoding cannot be found, a LookupError will be raised when calling gets for the first reply with bulk data.

Error handling

When a protocol error occurs (because of multiple threads using the same socket, or some other condition that causes a corrupt stream), the error libvalkey.ProtocolError is raised. Because the buffer is read in a lazy fashion, it will only be raised when gets is called and the first reply in the buffer contains an error. There is no way to recover from a faulty protocol state, so when this happens, the I/O code feeding data to Reader should probably reconnect.

The server can reply with error replies (-ERR ...). For these replies, the custom error class libvalkey.ReplyError is returned, but not raised.

When other error types should be used (so existing code doesn't have to change its except clauses), Reader can be initialized with the protocolError and replyError keywords. These keywords should contain a class that is a subclass of Exception. When not provided, Reader will use the default error types.

Benchmarks

The repository contains a benchmarking script in the benchmark directory, which uses gevent to have non-blocking I/O and valkey-py to handle connections. These benchmarks are done with a patched version of valkey-py that uses libvalkey-py when it is available.

All benchmarks are done with 10 concurrent connections.

  • SET key value + GET key
    • valkey-py: 11.76 Kops
    • valkey-py with libvalkey-py: 13.40 Kops
    • improvement: 1.1x

List entries in the following tests are 5 bytes.

  • LRANGE list 0 9:
    • valkey-py: 4.78 Kops
    • valkey-py with libvalkey-py: 12.94 Kops
    • improvement: 2.7x
  • LRANGE list 0 99:
    • valkey-py: 0.73 Kops
    • valkey-py with libvalkey-py: 11.90 Kops
    • improvement: 16.3x
  • LRANGE list 0 999:
    • valkey-py: 0.07 Kops
    • valkey-py with libvalkey-py: 5.83 Kops
    • improvement: 83.2x

Throughput improvement for simple SET/GET is minimal, but the larger multi bulk replies get, the larger the performance improvement is.

License

This code is released under the BSD license, as the license of hiredis-py at the time of fork.

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

libvalkey-4.0.1b2.tar.gz (109.0 kB view details)

Uploaded Source

Built Distributions

libvalkey-4.0.1b2-pp310-pypy310_pp73-win_amd64.whl (21.3 kB view details)

Uploaded PyPy Windows x86-64

libvalkey-4.0.1b2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

libvalkey-4.0.1b2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (56.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

libvalkey-4.0.1b2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (48.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

libvalkey-4.0.1b2-pp310-pypy310_pp73-macosx_11_0_x86_64.whl (39.7 kB view details)

Uploaded PyPy macOS 11.0+ x86-64

libvalkey-4.0.1b2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (37.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

libvalkey-4.0.1b2-pp39-pypy39_pp73-win_amd64.whl (21.3 kB view details)

Uploaded PyPy Windows x86-64

libvalkey-4.0.1b2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

libvalkey-4.0.1b2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (56.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

libvalkey-4.0.1b2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (48.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

libvalkey-4.0.1b2-pp39-pypy39_pp73-macosx_11_0_x86_64.whl (39.6 kB view details)

Uploaded PyPy macOS 11.0+ x86-64

libvalkey-4.0.1b2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (37.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

libvalkey-4.0.1b2-pp38-pypy38_pp73-win_amd64.whl (21.4 kB view details)

Uploaded PyPy Windows x86-64

libvalkey-4.0.1b2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (49.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

libvalkey-4.0.1b2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (56.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

libvalkey-4.0.1b2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (48.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

libvalkey-4.0.1b2-pp38-pypy38_pp73-macosx_11_0_x86_64.whl (39.7 kB view details)

Uploaded PyPy macOS 11.0+ x86-64

libvalkey-4.0.1b2-pp38-pypy38_pp73-macosx_11_0_arm64.whl (37.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

libvalkey-4.0.1b2-cp313-cp313-win_amd64.whl (21.5 kB view details)

Uploaded CPython 3.13 Windows x86-64

libvalkey-4.0.1b2-cp313-cp313-win32.whl (19.7 kB view details)

Uploaded CPython 3.13 Windows x86

libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_x86_64.whl (167.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_s390x.whl (170.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_ppc64le.whl (178.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_i686.whl (164.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_aarch64.whl (166.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (173.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (173.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (184.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (167.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (172.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

libvalkey-4.0.1b2-cp313-cp313-macosx_11_0_x86_64.whl (44.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ x86-64

libvalkey-4.0.1b2-cp313-cp313-macosx_11_0_universal2.whl (82.2 kB view details)

Uploaded CPython 3.13 macOS 11.0+ universal2 (ARM64, x86-64)

libvalkey-4.0.1b2-cp313-cp313-macosx_11_0_arm64.whl (43.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

libvalkey-4.0.1b2-cp312-cp312-win_amd64.whl (21.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

libvalkey-4.0.1b2-cp312-cp312-win32.whl (19.7 kB view details)

Uploaded CPython 3.12 Windows x86

libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_x86_64.whl (167.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_s390x.whl (170.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_ppc64le.whl (178.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_i686.whl (164.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_aarch64.whl (166.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (173.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (173.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (184.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (167.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (172.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

libvalkey-4.0.1b2-cp312-cp312-macosx_11_0_x86_64.whl (44.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ x86-64

libvalkey-4.0.1b2-cp312-cp312-macosx_11_0_universal2.whl (82.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ universal2 (ARM64, x86-64)

libvalkey-4.0.1b2-cp312-cp312-macosx_11_0_arm64.whl (43.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

libvalkey-4.0.1b2-cp311-cp311-win_amd64.whl (21.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

libvalkey-4.0.1b2-cp311-cp311-win32.whl (19.5 kB view details)

Uploaded CPython 3.11 Windows x86

libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_x86_64.whl (165.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_s390x.whl (167.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_ppc64le.whl (176.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_i686.whl (162.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_aarch64.whl (164.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (170.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (170.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (181.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (165.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (169.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

libvalkey-4.0.1b2-cp311-cp311-macosx_11_0_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ x86-64

libvalkey-4.0.1b2-cp311-cp311-macosx_11_0_universal2.whl (82.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ universal2 (ARM64, x86-64)

libvalkey-4.0.1b2-cp311-cp311-macosx_11_0_arm64.whl (43.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

libvalkey-4.0.1b2-cp310-cp310-win_amd64.whl (21.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

libvalkey-4.0.1b2-cp310-cp310-win32.whl (19.5 kB view details)

Uploaded CPython 3.10 Windows x86

libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_x86_64.whl (165.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_s390x.whl (167.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_ppc64le.whl (176.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_i686.whl (162.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_aarch64.whl (164.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (170.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (181.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (165.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (169.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

libvalkey-4.0.1b2-cp310-cp310-macosx_11_0_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

libvalkey-4.0.1b2-cp310-cp310-macosx_11_0_universal2.whl (82.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ universal2 (ARM64, x86-64)

libvalkey-4.0.1b2-cp310-cp310-macosx_11_0_arm64.whl (43.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

libvalkey-4.0.1b2-cp39-cp39-win_amd64.whl (21.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

libvalkey-4.0.1b2-cp39-cp39-win32.whl (19.5 kB view details)

Uploaded CPython 3.9 Windows x86

libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_x86_64.whl (164.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_s390x.whl (167.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_ppc64le.whl (175.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_i686.whl (162.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_aarch64.whl (164.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (169.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (180.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (164.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (169.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

libvalkey-4.0.1b2-cp39-cp39-macosx_11_0_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

libvalkey-4.0.1b2-cp39-cp39-macosx_11_0_universal2.whl (82.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ universal2 (ARM64, x86-64)

libvalkey-4.0.1b2-cp39-cp39-macosx_11_0_arm64.whl (43.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

libvalkey-4.0.1b2-cp38-cp38-win_amd64.whl (21.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

libvalkey-4.0.1b2-cp38-cp38-win32.whl (19.5 kB view details)

Uploaded CPython 3.8 Windows x86

libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_x86_64.whl (165.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_s390x.whl (168.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_ppc64le.whl (176.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_i686.whl (163.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_aarch64.whl (165.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (172.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (172.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (183.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (166.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (172.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

libvalkey-4.0.1b2-cp38-cp38-macosx_11_0_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ x86-64

libvalkey-4.0.1b2-cp38-cp38-macosx_11_0_universal2.whl (82.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ universal2 (ARM64, x86-64)

libvalkey-4.0.1b2-cp38-cp38-macosx_11_0_arm64.whl (43.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

File details

Details for the file libvalkey-4.0.1b2.tar.gz.

File metadata

  • Download URL: libvalkey-4.0.1b2.tar.gz
  • Upload date:
  • Size: 109.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for libvalkey-4.0.1b2.tar.gz
Algorithm Hash digest
SHA256 eb271a342a97b7f6b34c200920a7798d687dd945b6ef2242eaef674351102a81
MD5 bbf0aa4c4f56da9d4dc21e8faedd8880
BLAKE2b-256 c321836ac185ad84a38f45208bed1c5685733b53757017d687dc13c0001bb744

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1a2081e61fd9fd7fb4a5f0bb3ebbda03695a830a159e8e547abc4feee10359c3
MD5 ecb4c5e3adc239c1614430d2b1af0cf3
BLAKE2b-256 9973397717a3a35a47525efdccea7d2f5ab6a3a48a1a2f75f2fc256ce579290a

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5d7b7864799b75b15dfe7d4370ee1d58d28f560badff16cbadb652887908236
MD5 27e0b1c233e65fedf79ea3e9899ab943
BLAKE2b-256 92f6007467f66e201e938b851fb43a891430a5d8c405777b88995984adf8d4e4

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6266fc7ecce67749866af2168cf516309f61a7567a98b8db67e1719eed5f1478
MD5 5ca9c671588c85be39054ed685c17098
BLAKE2b-256 9375c48f354998b6f0c47b8a6bf78e8cdce4e8508dbaa9e68ef658ad3ca7f1b6

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ddd2e424a3cf0d5caecdf857c7399cc2bf827cb6b8231acd5d5921c026946ec7
MD5 57b5e820ab0d7b96db7ec7a838facb96
BLAKE2b-256 be63ccd74970f79bffe9850e9d257a48ca06c61f33a58e98031eebf86c43b2a6

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp310-pypy310_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp310-pypy310_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ddef251493228e53a1003829a3181ee0606c98405f847a8be8dc8a14deb82505
MD5 e032a806b8ba2eca6e7fc057296aa70f
BLAKE2b-256 2bf0647f2fbbc95d8354907d3d2df81ed2ae6fe75276f93aab4aa6166c3fbee2

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2df3f260a4fc902efbfeb44c1c649db9ae9869ca81267c12f6f77ae853882c74
MD5 d41db3bcc83829f43fcc0b79a8ca8e8a
BLAKE2b-256 c0c212446d55c0b01529a66b77923755c94ba3e6410fdb3089eb2c0e1b37aad2

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 72d0e79ed5fe8e3c607ca7a99e4fba9df559a45943a130a7595869f5b75b9602
MD5 9e19d3c1195b4a304010b7596aeba6f0
BLAKE2b-256 cfaca591ee5e63902f81fa1fb7cb7023518640c50f847866c19a5ddb52f4474b

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c318c77dd62eb93e260cbdb7e977f7097012bb73ece2a6a563733a5044f6582
MD5 d0b8cd7c101650471233b126dc5d9b44
BLAKE2b-256 9636788a87295bd3050fed3ce700a1077354442ce612b94f5451b41e9e6eb6b7

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ef905d3a4e0bab17712f4f4ee267f6e0079e48e7170519b9634ae4d7c35c155
MD5 8eeef18f81d0cb2a2def6f0bb8b81b77
BLAKE2b-256 d92e9d523eb7b356c9829858847180cb28e3617ab6f3b547d3e4f0920135fb73

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc8b1c20c7b6964e184fee291545e8b5b0638e71a0d62b685ad64e1438b98c13
MD5 a6d8e1e44acc0e25d0e1848032c44e8e
BLAKE2b-256 559363b805c360af92c532fb39ef02f3325ec1ae5f7200e4549ad27c5f114dcd

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp39-pypy39_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp39-pypy39_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f770ad98aa6d69a635dc523f2ee2f1570426a52dab9cddf7f01b9a1dad50ea41
MD5 c5d54f747d96c372854f5f7dcd75463a
BLAKE2b-256 7b53d89460332ecb15cbe6723496d41d60bfbaf1f8a7e8a397668e1c3adcbb80

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6136caacad895a86544057175893bd5bbcc7494a4a65ef0d9052363a8b74902d
MD5 3aeb33a59b527e5177920ccda599f338
BLAKE2b-256 3f38ffda3cb703d4d4101c68339d8f570d84f6ccae7ac5383a51501f2fb444ee

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 091f5693d7d8921171d86e910fa6219fd551d9a436b06c613c11239ad4da12e8
MD5 05698148e99c3c7915f8363276f34265
BLAKE2b-256 ce5b6f2fe364d13e8cfc32c9d0564f37844fb17fdfa6fbb46143a93075a01681

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e18bec28ba354aca3ff8d54481ed6abd87d3c1a07dd980fd283cc959ed50e2d
MD5 6a0d0e90a222d2ab882aafeb6f94465f
BLAKE2b-256 cc0974e43b98fac7c0d1886655e794589692f7e1e58b608437598d0f3eab05c8

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dbfeb3fe288113cdebb2fd588e684d7775f77f8842dc74dcab27ea24f44c1367
MD5 4b1aa142fe845827cbfab0402f8829dd
BLAKE2b-256 8464c3654f71a17dd3d2852926855fac8dd5f89974c36b31208acc2afa31cb64

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cacc370f0c3e78e049f57b2b7f0baf581719830aa9dce4471ca8aac3abe04f39
MD5 27276046b9f965f81424b20c9d3dcb20
BLAKE2b-256 b67856b480f0a90a49edb9eb08c5127435503642a29d057d9559dbeaafa81be7

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp38-pypy38_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp38-pypy38_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 78dbb737cda7a99c723ffa532cee4b1b1bc0ff5083e126ac800cb1fb746fda50
MD5 075afdadca0d7366bfaa1a3972151be2
BLAKE2b-256 d523311300bab7c8dc228c0a068a9c771c45bb47cce0bdf97984771e8301ec5c

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2fd92a2de5561621295d9c1b35bb5651f459c3939282b7701f02740484af427
MD5 bf4082e7a13a6301a6a09d15db5ea53c
BLAKE2b-256 dd732806f9ea08d625de6672c84a95236e2605c54c453846680c96c5bd5fe4a8

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6c9a17aadb463d29707547256c889412ce21091bf5f559f429148eef8c88224c
MD5 8d407bb871dec0a3dfc5b87c3ac34c68
BLAKE2b-256 ca09879998b2a5583cfa78540930e6e57e94838ba00ddc1d38aef30820745ead

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-win32.whl.

File metadata

  • Download URL: libvalkey-4.0.1b2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 19.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5fa9f85ecd1351cbd1e52dbc26c6025ddb6515579d54925c0784bf473aa7a72b
MD5 9831e944b33d31ba8b52d022c5e14044
BLAKE2b-256 9b9227f3939ba22a1e28af196d6a624fd1d3a996b426ca6584d82b80aeaa4597

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9d87b44d4b24ea079171a961c45b5444d20b191910ec1850787daaedeb735f7
MD5 ac83f04e12739c9c04247cbeff9387d9
BLAKE2b-256 f25b6ae82dd21a48c73c33f36bca3f8eed146b9df3d65ac99d7e306688c41138

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4286b242c30abac0bc90a618c72ac51cef791959a7ea2fa67926449f6715fa00
MD5 83d6c976103841f0f5477cf444c82b43
BLAKE2b-256 48fdce5fe69708a3526cf8ac1db7b775ab7dacd8a2fead498a2edc67b4e7e175

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c580e19e7032fce4c59226826492438507ad68ea2bfa630a7005229a9d60f3fa
MD5 1ee1e82b427dc342ff806c09aa450fef
BLAKE2b-256 ac1284f11699f8b611b7033063f265ee113f76a40cc4904b73be672109c66ce6

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5c164a7eb011f327479001e98486d8ca9cda0d06be50311dfbdd0fa56d245f56
MD5 9a0fbcdf100b04bfe3c496555a10e464
BLAKE2b-256 d46865342ee24154b916c54bba2ee395f43389e822c0ce08c9b0b15b7b2f2546

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1ad762c013f36d01e17899e90df7d156771797e45f2fa91f987680594b92237
MD5 0d1cb6c67ddae1952e5d9c2f691d5efb
BLAKE2b-256 a17efcd8b6dbe2ff3e2e7b3ebb4f8c0de9eaf341dbad2407e3ab7cfb84ceb354

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7722bc32ecfa7236af56f0893dc6996490eb4fc27fdaec55e06ccfda7fff9743
MD5 7e3da7fb007474e3e7674a4ff4869b1a
BLAKE2b-256 d513a34238826ecc652e9cb258791ea382aa61291622a7dc5c9cfb320e8b779b

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 393aa202d82c098ddabe4e2c0e53e2ee86c3d66dd17ecb2c173a3ac814d89f58
MD5 754070f7628222f42631df014d31cc8f
BLAKE2b-256 10f2b0364369c76d8efaa400cd8467c2365fc4cacf989278711cef28eba8869a

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12bc7d837f132f414b2694616ece65335acc76ade994ad6dbad8d0cb118a94a1
MD5 652f7037a49336f548500f08cc4c6f7a
BLAKE2b-256 ef5e26ad9cc0aa713912413767a6e6156d0f4939afe627df4faa5c27325c1ebc

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 321c16091ba2e45de53c8016f8923fb8297c900108022828387096bf689a6be5
MD5 57ccc1a11cbcd7810282e235a2e0d7b6
BLAKE2b-256 a290061b9e4a0325a395b09d4385dc0a81bab8849e40a17133b82a2fc12cd34c

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0769982e6a3e5fd9ceec117b32e1244b1774c0a0e3d9980980ce9b00062f818d
MD5 4cb0f20647589b013da9ed9d5db7e4b9
BLAKE2b-256 460239947f728731c02d1ebfc5eb067df9e511372e53708f20a5cfa0071cdd52

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b2175c91fd3ed384c890f36388713067f555e6b3aa0f772cc96015a00bc331a2
MD5 0f9eda78e1ab307f09dfc8830eec5686
BLAKE2b-256 3d080309d16be3cff0c747b20d0cfa3dde75a55da344f62d4214fbda7cfa834d

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 cacf524ed2e7276cb53ffbcc7bac9ec936f541cdc29714a7d4f1e3d858e931d7
MD5 cedf64272ecff6da3cd130fa73d74852
BLAKE2b-256 13c0697a3ee6f8b2e8b843d8bb5eeaa28431d0c15bb94b9b9b04df5d5a863ad5

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0825506fc0ac6f71623e4bdebedeab82392ca9c88f2af70ae5934ede49b58ff2
MD5 02814411ca6de16f2fed7eb4d223134c
BLAKE2b-256 574d6fb1a147c35f51707f0d80656b9de1a5e19785b841067b18493fead389c4

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 565c3d7d9b33f35d2877dcf626681cf667d21fcc5614e777a92ec315dcdd6c33
MD5 e5cccb9d6564ba86db1be5e9bdce347f
BLAKE2b-256 8ace7636cae95cb29000db52305434375d7835f6d41455810c87654c9e2c8444

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-win32.whl.

File metadata

  • Download URL: libvalkey-4.0.1b2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 19.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5bd7e72c58449854161c5592618bf42c1c4a3f4fdf69bd08b5a48409feff99b0
MD5 65a3378039a007c14b177354c2e73381
BLAKE2b-256 bb12489c35398acf980dfbac5bc7250a42fdc297d579ac164b389680e58ae030

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5fd64efc275ae55b2e6029cdae160232e8fe2c1c1a6ff3c7964719ee75fbbeac
MD5 4d36ccdd20f14e9eb1f796eaa63ba211
BLAKE2b-256 afb35442b5625d233aada9354e1971cc77a5ffc6bcf47c8b0179b1c3dbbd8213

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6afc5f73f3533ff593d670efd3bb55a218150b5a2eadc966171daae6f14365b0
MD5 67987cf13285a58f47c449c7402456fa
BLAKE2b-256 b418d6bc23272eb1648df367c020a846f2869137dda384fe80f112bbc778aa34

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4ad04f6e3d83b385b92be2a8d883a0bdbfb9b620104f824eee64d319bb1a1423
MD5 860ee720242c26e2f4e4c7eaa31d6085
BLAKE2b-256 f51092b79b8a73ea8074ed8a6c3be8847ed2c3bd08a2bd17750ae1809deb6b93

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 374b89f20eade73fd6a1f06120227c71e8360f81d28f6c91d64c0c21f21efb13
MD5 cff717e544a5f43d2e9956df79d9d794
BLAKE2b-256 e10586c77ad3d43d639f6e46038d167c9f6a6293f09c468b3c1e8567d80e6175

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b26fcc82dd770cccb14502823573ea1d4230bfdd201c10cd019368b73068ac6
MD5 777decfd2f02ec4e532ab3c821a76df7
BLAKE2b-256 23e56d4c6e5351e1a57fd7b301399e572d5878d249434f5778f01dce96707d9b

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 638e788f6e6b865e6bb05683a31d805f11cf803578e52b3f2b693deb7a0f9130
MD5 fdf14984d10fdfe7bc4a019ffac2532d
BLAKE2b-256 d40509aa6b18ed6a6eb4baa95ed5786425ea2c87958301d89386f53fc78615e2

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c2c0de52fc16088916317639cdf1ee3b6abecd791452db523f9153a01e969f57
MD5 729387c73284aa2ff6fac8b4e03fd489
BLAKE2b-256 90e58f0418f605a11fd0f6a3afdac7b9afa317db08a29a3e476c12b9c0a9a8b2

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25f4fafcfee414c901ed74794206a55bf6e4a600c2218a3eebadc956720df764
MD5 420b8730550c546d283a07ddecbaabc9
BLAKE2b-256 dbda8a0597abe3f4371aac5f5fd6968098f216ed432558f35456bc1b2944c531

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76d5f05b926ef7988edf2018596cedf7bff13520d2d3cb80ea63e2297c115583
MD5 7c42cd502bd6ac724c22685dd24edbf6
BLAKE2b-256 b92377dc74037aa85a7bac8dc974711048b0ce56411e67fe3ab1958a730d92ff

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a3a5206e2222f8015a03eb38fc82051778133eb45cfde982c1d9409915e9ae2
MD5 6089d0ff9345a4278ce221fccdf31678
BLAKE2b-256 d4679b3d897c13e92c39401a99b8843fae3d40baf17fa75ef0b7a297624d9d86

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4879a447a688cffd9490f58a3a7b4d1a6affa9ce8782fded0993ba8874a763a6
MD5 38d4b93fd4dec6149d79f5fb9a7e39a8
BLAKE2b-256 a96356d50c61944507aa1f88d84893a28fe0327b1c8d99d9a2ff819789b0257e

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 2fe2f10d78445a5dd4e6dc11e5237eb7d3bd885c7f326a79321c532e44d34cb4
MD5 4e001c76c05f3383f1787b2890a9c78b
BLAKE2b-256 09ef0c31355b232484d9e59592b371c8b77ba92bb1837ccaa98c7a3b7a62e506

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55905dc4affeffa3ac1ec18dbda467b67ad96277c3f5cc73826a56985dcd7fdf
MD5 8af80e4adc0df014c31f48864c874706
BLAKE2b-256 6466342e385a5825099723d482a63cc62336cf85b40fb3c6e6d601efb0c60eb1

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 87cdf5911f02f49f88e1d243c3002565b6610054f382879401873ea6629dc840
MD5 66c700a6da539b129a052977ba6a82f6
BLAKE2b-256 d6466e6d08307831c8e855367c5ae5b9b339def7ca48d20e2b8ce73968708fa0

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-win32.whl.

File metadata

  • Download URL: libvalkey-4.0.1b2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 19.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e9bc54bfd85a6bc0205e4a1c20e053ae5e8dc98275559aa14e35ef5a9ce59eda
MD5 b7feb8395f59ad37a67a0fbfea7e79a9
BLAKE2b-256 f447fe74728a8b7256e15e2b379cd24d6c8cfe3067f047bbb58dda9486445fb1

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfc2d6f930c748863b9c754512c082c9e033fa6d3bec0517ccd4b4b79840c280
MD5 0351afbc25d1c282ae5dac16c9a98acf
BLAKE2b-256 f8f4fae3c35582e8de8e2f4b542399dbfc92e0f280e4e38a59d4f1eb66ac7751

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 40415debf0708aadc062bb706905899b733316988383b870811b5c25c0af8bb7
MD5 6f2aaa86bbcf690fda31146218ec68c4
BLAKE2b-256 a4e03835c593b2ecbcf954ea68f5a8bde440071fa6e15ce95c62957d4870b0b9

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e50fa6b3dbb6fd3ac43bd3365edf23897b109f812c9526ba6e0a46bd28e8dbd3
MD5 a764cac385fd2f8e958d8f471791233f
BLAKE2b-256 30ee3c1c2f18155fa2690a06cd86161d972d6c1314b0b9524b752a5dd398df91

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf46c9300c318d4eb6d31b7e7c927c4a4766f1fb233f91deedff5119270cc76f
MD5 43d79e744dbadd5cbb85dac9a9709f68
BLAKE2b-256 2b2075d6b8f0e6ed11e110482c41b3045df3df2a8518996c07f3a32daf98e205

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b30a848f5742dc72776cb9d3d541dbe45c55fe5e4542dbb8e793af436c363edf
MD5 daa1a2f200b74623a7e0392720e35737
BLAKE2b-256 b6ee59bffc9ecd1c6de019c23c618e3383b2d60055b92bea54e21f90aa028166

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdc0c2c5afb6ea394e51e828c4c15513b65ab52fb330ec56029f0fa8df40ac1a
MD5 2b4adfbc12b4fa36aa793b8fa9b29ca6
BLAKE2b-256 eed57b9909d6d4d3c20f9d194e9196ad1780b39f19d1eae762ae1c0cc978cdc9

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52db71f402d13732c47708b86590d9bc858c676d4cd131889995b5c91cace744
MD5 1384f610f1c9a542ba711f7dee3a607a
BLAKE2b-256 bb3f9ac11f6ba32812f4f8251f2c904d8142509a43b8f7bccfa6a2d8662e9878

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 036aa90d97f5c4fe0fbedbb234f73d9c51e61ab0a7e1c5a818a83011ca7a3936
MD5 60f8a1fb5212b0d5594cf72318d7918c
BLAKE2b-256 45c5e35edb89d9d3ce514ca2de890a018d8174b92cca0390fd10f14bfe2b80bb

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a65519d9fbd1186c86d359ddd2ccb649dc368804ae97e8c23e28d233d0d14f4
MD5 b81ebd89fa315271c960e3c8acc216ab
BLAKE2b-256 effdfc6d82c3db5db2c313f7025dd3309a5178b6fc5c9fb94653d0d851c149bc

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4286247038d5e524be155fc72222e4c7561cb25ce185e0fa3a059d7e85e8cfed
MD5 9c647bbf81611629ed2b85f1dabc7bb7
BLAKE2b-256 c959ceea18590acab0ad45c407aec2d578f970b4dffeba3d90bcac3968d58e26

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9c35a12f9552d9991ca4473bd5426b4d0992d613e38ff43ff0e8cc9f51d46553
MD5 1462be6c2ea866eb6083d0cd72eb5006
BLAKE2b-256 f585f26374a6b807ec5d72698dc579567a3ad93d56049b6a5ac7ad48f8aa9ca6

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 cd62afc7835bca2d4fb99443759824fe1acb51e4def0133e0f659f298deffeed
MD5 8c21ecf5327c0e9ca234a3384861cdb8
BLAKE2b-256 1ec525c81c7442a5f1df889bdee8b0095b9f2b8354075c128bd977665b7bd9c5

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c931b8a823d40a216da9917cfbbb7d33338042ece2ba75cf5c22396b700ceaf
MD5 c50b4a1e5dfa8796a06d254d56cf055f
BLAKE2b-256 16a906277dbe72a961162de0d01517461c7e25e1099e191c965d68fab4bf736f

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e50d64916d6076c2dc89bf3660d1a76d324daefd4fd0992ccce2c4c49e492ff6
MD5 3bd82656aa37feab30edcad5bb7845c2
BLAKE2b-256 329b98800f3b440be9846c3a33bc64f77762cf65f37640413e015894004895f1

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-win32.whl.

File metadata

  • Download URL: libvalkey-4.0.1b2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 19.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9c9881b560f3ffea4edcd524e2d97c880569fc10a9974be83675ddf5f3dea55b
MD5 95b1c084ad43ef966b8f6f599f7f0352
BLAKE2b-256 58f7260d6f4bff9df9586f5b5010e54eb21ed81140a98690509ba0738afd9d7a

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 914450e75de34090cae7e67abe97aff0078b16e85b82425c9224f7609899a268
MD5 5386086249eb37a96010b74a44895adb
BLAKE2b-256 7a81a4ec45d52efdf346929b2ff2519e61dd84bce9af6da92234939c1c86b3cb

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 aa22851eb678631d0c145eab5af433cdbe9d14ae294f0f7e75f55bc7e64dfe85
MD5 c9eea461e09ecb97f393a1e5e85ecfe5
BLAKE2b-256 6a289d9592c074571d8a6a0f9bde7f719db0db2b4516ec08404c2011708d8dfe

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 91f61888be2907b4701f4b75b4940388093eca66a27128f9653d9d5b4d47c946
MD5 3b2fcd5d953c4e2b9ecc7ae8424a63eb
BLAKE2b-256 303c32c1c7dc4cc9143d5866de2f3e6a42198fb281c5186ebf836c288b1f89ab

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f79e68ba05aaeaed9b86421a4b8db56f57dd4ba03b8ee4e23c0240d25d9d044e
MD5 ec2e4501638323af5c448ff811c92827
BLAKE2b-256 2680f7249aef1943bc84486c837f1270ca9fa71bf05131e3702799185791ca2b

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9bd68ae3cd7b1255a15b46325d1a613d8a6dc9cd33f4cf2bc6ada142a6a88aa3
MD5 298152860a7952bf0ca81b8dfb4851cb
BLAKE2b-256 d429291cb8c7277e3dd5ca1ce26624479f0c24124bbaa529759225b62ad05bad

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bca3ef19b653e4b0d1c2ae79ad4c4752b6b0f6c1f119ed18f36409a50c313ce
MD5 9f06976ca23198f87e1975e51cc54c83
BLAKE2b-256 0d10114a1351f7fd21f14564f24b6831c9d7b362d8541327efeb8bc821dee06a

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6012ce0e97ced21e8aa004a2292389c9b8d60d6aad0195cd500353994405ad04
MD5 d6a51508335bbb5fe86b23f227b8524e
BLAKE2b-256 27b5f705a3723d4fa3d0c2064c2a3b2dd4ee8c5350fff9fc57ae1afbcb8848c0

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 770cc191bc8a69e589fde4a580a3d1a55012ebea90da886a47c95235b5270fad
MD5 f6cd625f660bda648dc55e23f3b84be2
BLAKE2b-256 b53abf01241ec0c7bc08e311dbe9f5eb9783141e7ccc8d465bcb288b27da9ba8

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f0a529f0db8e3575927fbccf255ccca7ce769777904855b0929ad054aed8edae
MD5 bd82543844bc0ae38b299f6ebde4e6fe
BLAKE2b-256 82ffb3717d89448f540a5605d160610c014986bd8f9336a85a9961bcb327c058

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a9f7c909a244e2f2301fa7bd4ac7f38561ef6569646cfea435765cca9845a84
MD5 60fc2c6222bbd31021d7e42bd906aea9
BLAKE2b-256 ebcaac1442de60e22d8c234f93830e0769c8f5e7c9e488692eaa01b12fcc95f0

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 19599f7d08810820af4f0ad6b0fc21e4d45d4d0a6922a59c4ca0d88d18ffe48c
MD5 adbc4f182b864225e33f0412f6b850cd
BLAKE2b-256 d096bb4fdb5a98494dd492b31a19add653a71143e2b032282f88d52ae81cfdf9

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 9271a99bf517bc517b37bc773f1476965fa6f7452018b929844746dc8feef36b
MD5 f7a84132008f459e1e5bae758e0b7a85
BLAKE2b-256 229054e72681129f41199c7d19018f5f2e182e9eb504d359da6bfe2be5aa732e

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2175954bda2df36577465a54497f70cce920c9663a7186934368d5e41ce39204
MD5 d28f03470138c018f5cca881b8e78fba
BLAKE2b-256 456239489ca3d0950282863b7cbfe2e3a8866a673adbe0624cd306dd943d708b

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2d16ec8dcf4e9eb2c422d5e0e16c6348aa8f7fb3190427496568d8a70f9ec074
MD5 3cf19c0ef1827e9a5d55117896451d60
BLAKE2b-256 94a4522fa9b53e1c59f5f8c93948435ce9f48628d50c7d72c15626c0468c777f

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-win32.whl.

File metadata

  • Download URL: libvalkey-4.0.1b2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 19.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8902fd74f4ce4137125f6e283008f476c341399d5149412153e426cb741287fe
MD5 b90285b5b62f8a7c83e938ec4fba6aec
BLAKE2b-256 f18c480ca5ee6048736b50c92f2b639ed9787c441b9491a051a8b06b01601629

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e7eba5ef6acab7b3378296508876dde3c48f4165cf29564cf078a65ac470e30
MD5 84b2928a8b215321db9793b5cbe4fe65
BLAKE2b-256 daa9feb9f3b0a833524ad3444b5f45574bc2d5679ae81d3163fa63a2ef21e5d0

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e818ca550dd1a87860fc76c4169027083c8354fe58461f3128c128da3a8d76b3
MD5 e24a8e1b192d20067bdcea5eb496b6a7
BLAKE2b-256 8288d3f4a6e848c36e328c4d71421c2220709fcc1dcb2a387a0dbd8da5a1516a

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 583adb9340d6b81f08d919e8e2c6e6cc83906f6c6a3f1220ef4e16cc47fb10b8
MD5 05d5f9d39dbde9afdb9cc5ec54316ab4
BLAKE2b-256 938c677c0ccc071c6d15199172e2dc960b56820ed3a2e168f0c8a5d05093c27e

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3840ec505d324d7897f6ee8d6122e40ba8c35d67a0c00eb972ba041ad7d759b2
MD5 5bd8ac39d78f0352be2e7685b981eef4
BLAKE2b-256 95f52b7f2982f2b4e7d54773c125238c886f5583ecb69aa07e51982835b96f5f

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ab6fd631e75d6f5353cad0a3ba1c4be59ccdf2b07b6db981bd25b9e7dbdb212
MD5 50491445040d6678a7dfa6c40a9c8368
BLAKE2b-256 e8c77ed4ca2e7cb4d9f9c9021ba4be18eacb3c4e9883bd03842cce613cd10c04

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71b004e6516a6320bce95ae86c953b1f60510d2a3d9cac4e61a186a4194175b9
MD5 3ceb261fdf242e5969ff8cc06388e7c4
BLAKE2b-256 afbcacac3b893a7ba6f8af5dcfba7c84a134f901d1ac528575a4a5128dc6f0a7

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac9030db3760026d3abefe09ca04d7bf5a473dc237b0cea997aa140e6494d38f
MD5 104b7157d4506068cf1903beaa00f794
BLAKE2b-256 26475c201a204cd252c79f2b0c6239053a7d8faaa5ed3b0641a777b1de8d0c0f

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d15f596661b82f8028c3fc5c214a9a30984e7ef150c4959169a3becb384cdfb0
MD5 c9ace42847a7047c2dc1d6ed6cb0fcb7
BLAKE2b-256 7bb7680fd946dbe734c942a8c18044c3e2131e77e5aa3adb1e830f531fe216d5

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea5aec79989701a078d0306dc6dbc99c9eee8cdd783529c9e7fd621387d9494b
MD5 61cdf4504bf58beecdf79c479257ab90
BLAKE2b-256 675923760dade9d4b086c62ee1e3740e966c4050fbf8d4a8b393b76aebca5127

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60cb13b2c9c209669f09a16dcf2f59b83a30768e901f5af35b8a829e2ae914ba
MD5 c01930d0efd47a8560405bf2c9567d1b
BLAKE2b-256 31004d159f92d6e8a2e0a7c5beb78e1c09d9d323a32643ffc291841892f6c47b

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 449a60dd3090c32c38ad42c53d332da6d072a67c6dbfcdaa9e133b5f71e030f8
MD5 2630369dabbe2add162fa57e430c4396
BLAKE2b-256 e3a4fdb224849eab7ce2f58b5782ec9ea8a00175a4a89efc2ba5271e9a00187f

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 bff4637243b8b7ac67e10c40e2e51b9144830b7fa88d0a06bc4836b75e7ce13e
MD5 c6f3653cf2940c5ca2555ed94503ccc9
BLAKE2b-256 b6fc5a099a59864ce3ca72f41856089eb52f1204d95c17e74a3223ec62804d3d

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2bbfc1ce7bb3dd52959110c7a8a4c35d775ba4518202d95e1d858913bb6c6dcd
MD5 2a9d6e321f84f38d8d896e7569c06bb6
BLAKE2b-256 1d2a23fcda9ff77782f2b03dbcfd9ef057fecb23134e0a0408b3d909e07479b3

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 85c5618a318ac1387716166d1a934038f36b8f7a428477b0684ea171ced15fd1
MD5 df0caf890418282c5383a5ed2e7dd6e3
BLAKE2b-256 0bafb3b957b5b0e16dfdddfdd3c8b6c9460c2b0069dceec7bc6969eda9097dd0

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-win32.whl.

File metadata

  • Download URL: libvalkey-4.0.1b2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 19.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e55621c151ebd6dc349a26e8438027ee67180aa12cef1f300b3bda012938a47b
MD5 9dec09e235776802a4516afc4609148b
BLAKE2b-256 79ae539dc679ce130ed5ed92551a592df53fa9af1c7357d3be011bea8f413c4b

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72bb4f3951a20c16dbae7a3cd0e0e2251b92f23e4c0e7153c4dcfc3b1337ab2d
MD5 feccc56d5f24a82e1aa8a9abd6f7d54a
BLAKE2b-256 6732cb383cf269fc1f8ba5f79f4a62638c8016b2dd476465992fd95c30049ac1

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0452b2cb908afeb1fd1207adf342f5cc7095906ccf3412eded80adaf1bda37ba
MD5 4f69e91e36b7160f4f01e4b6bf05b686
BLAKE2b-256 b15044648abf201cec3b7d3a9665d83e16482ad697a268c885cbc284e532327b

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 faea5b375891cae7fa5a8c83af97a8cbe081d47b367982f0e80e22195e84bfa7
MD5 a3e4a35180258cf7720d3f5fa5a8d1b0
BLAKE2b-256 367bd32e66267e12e2184a231c4ac2e25735b02b8cc101461c2fe50732e6cdf8

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9de8a833b3acd83fdccaeba0ce2bc85a31066922d643da75ca4d240e99d2c698
MD5 a7133ba68184b237ef2b1ecb0a8c31d4
BLAKE2b-256 6090d26f27f5398d89b1d2897a3bbba8549bb80acc17b39e37d194b12b0a8185

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b62a126badbda4cfb8b0fd896f0112722697dcd3152cb4b47fa4f1c52fa56215
MD5 da224f4a0e80852f644f2dae26d52372
BLAKE2b-256 802c47e74271d7c8e75c125051ad34892cca52b31d8c826716d0528370010aa4

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4bde0bc1ae23ae17dbcd7c734eaf792034c2a17d8f06fb6d44b7039601a5be96
MD5 8c59c690b833362a70dc2de3cda0de7a
BLAKE2b-256 b463dd64a87fc1e0e552a64b2630c1ec842fb39251e71d56fcfed450bf2dcd17

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac04a3abe2872ed8a3378e04339c78f84171df8026e602a8fc66706c99675b57
MD5 5170bf54f5a252c7a6920a02028f7fd0
BLAKE2b-256 9a28e3c3a828c32cf1dac4578254a9abb3e68bd72f13586aa82652388419dcc0

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07835c155386c3962e6e1e956b70bde4549d50cb354696d95c86010b966e751d
MD5 c1a5826ad67f6a9280dd7bd10fe97874
BLAKE2b-256 bce64813eb33f251415800f3a35b07bc6c0cef6784c63ed78d1c134c624ce1cd

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a30eb9553967aa2d94373a5e7e4c5947fc1330c920e080371145d05454062efc
MD5 aba9b1c8813cd886f2c4f4e44c52a7de
BLAKE2b-256 0de92fdb8e3176871f00251a730373339d11f207a3f9ddf04e70f36af7060f4a

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39ed8e333ca80d4ab4d8764e1ea8846e65657e34866af800459ef31920491328
MD5 6993dca2db1b0cc7595d17e922798fef
BLAKE2b-256 aa1ea7bf60bae76f8951324c256bbeda568bcfd6bd1a380bd8600e7ea72a33f9

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a04125371cb8da8142d177eec0c1fcd339933dac4383e657f26fba60525cb9f6
MD5 aba3158d487f43e0b0b4829c7bb0f1bc
BLAKE2b-256 3fbe058e59a4928d7a91ae30d8281ea0a05188ce3a0ad1da31fc7806d1b12e6e

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 0b199db7e43c6a67714358ff630f1b6cff5c69d0dc4cc31cee5c6328f1740677
MD5 9386d571e62cf8c85c74084fce1c07b1
BLAKE2b-256 3780c177fffce9ff80ecd5cd82ac0ae734a545eecd4c04b8962f61b802f3328a

See more details on using hashes here.

Provenance

File details

Details for the file libvalkey-4.0.1b2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.0.1b2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63c4d4e68329f05c4e7c71606b230af362b8c0af14c3ce94c772ab723259601d
MD5 d8c958ce20ebecd7abea5e0931c05406
BLAKE2b-256 f74ec9ff651f6440f54fdaf89fe55e22c7646aebce302ef5785deb873b55c3b4

See more details on using hashes here.

Provenance

Supported by

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