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.1.tar.gz (109.0 kB view details)

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

libvalkey-4.0.1-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.1-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.1-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.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl (39.6 kB view details)

Uploaded PyPy macOS 11.0+ x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy Windows x86-64

libvalkey-4.0.1-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.1-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.1-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.1-pp39-pypy39_pp73-macosx_11_0_x86_64.whl (39.6 kB view details)

Uploaded PyPy macOS 11.0+ x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy Windows x86-64

libvalkey-4.0.1-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.1-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.1-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.1-pp38-pypy38_pp73-macosx_11_0_x86_64.whl (39.7 kB view details)

Uploaded PyPy macOS 11.0+ x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13 macOS 11.0+ x86-64

libvalkey-4.0.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (43.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ x86-64

libvalkey-4.0.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (43.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

libvalkey-4.0.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (43.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

libvalkey-4.0.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (43.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

libvalkey-4.0.1-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.1-cp39-cp39-macosx_11_0_universal2.whl (82.1 kB view details)

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

libvalkey-4.0.1-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.1-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.1-cp38-cp38-macosx_11_0_arm64.whl (43.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: libvalkey-4.0.1.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.1.tar.gz
Algorithm Hash digest
SHA256 fe60ef535bc826fc35f4019228a0a46bdce8b41fd6013a7591e822a8a17c3170
MD5 b69edb860db5877cb7cef2dbbcca2a8f
BLAKE2b-256 384957857ba9d02ba4df3bc1e71044f599c82ea590e928328e6b512dbf720228

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1.tar.gz:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1cd593e96281b80f5831292b9befe631a88415c68ad0748fe3d69101a093c501
MD5 72567a1934877c8c4b1e351c32366091
BLAKE2b-256 e8ac69d01a8e2ad5c94bd261784b8e8c2be3992b48492009baf56fcd16d1ab15

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a73ce687cda35c1a07c24bfb09b3b877c3d74837b59674cded032d03d12c1e55
MD5 147f368a16f1fb9a5aec68679aa6ba77
BLAKE2b-256 5acb60131ef56e5152829c834c9c55cc5facb0a1988ba909c23d43f13bb65e0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e62c472774dd38d9e5809d4bea07ec6309a088e2102ddce8beef5a3e0d68b76
MD5 b03342c805b202788dd86058b7ee2443
BLAKE2b-256 ff3d76fa39c775c33e356be5b7b687b85d7fea512e1fd314a17b75f143e85b67

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb120643254a1b44fee2d07a9cb2eef80e65635ac6cd82af7c76b4c09941575e
MD5 065e973427eec18f430057f68fbaee3d
BLAKE2b-256 c2ae9c0fcf578a56d860a9e056e67fbdff54b33952a88b63c384bc05b0cfe215

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4ee4f42a117cc172286f3180fdd2db9d74e7d3f28f97466e29d69e7c126eb084
MD5 b0aa3776fd5cdfe35b7d185603cecec7
BLAKE2b-256 77d9857376c3e0af4988d1b8ad13e8ee964dcfae9860e1917febd4f6b0819feb

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75528a996263e57880d12a5b1421d90f3b63d8f65e1229af02075079ba17be0a
MD5 ca94c0f6996c931e5004512c9f7167d5
BLAKE2b-256 397d8dec58f9f2f0f4eb8b1b861a4ee5ef2c8e7b63a46f0ffbba274f5170125b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2e321a8af5ea12281898744f41cf7f8c4008770dcc12f8f0afbc5f0b3cd40c4f
MD5 94706b2552993f1a13c3aa2df6445226
BLAKE2b-256 2a54c256395784535d31cf398f5a32a4fc2dac31003c28491fe7868e3ea07cd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp39-pypy39_pp73-win_amd64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30b9048d4f3745ecaa7e82aa985dbe57b8f96c6f5586767b9afd63d1c3021295
MD5 e323404de1c66358c71e76f7f27cb20f
BLAKE2b-256 29bbf245b3b517b9ca1f41a4e3dc3600fdec3c59765d18c1ca079de44b3e0f6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c2feb0686f51def52095d3429404db5092efb1edb336a961acc4887389c177a
MD5 d371f07fc2d8fd5f59459d801876c905
BLAKE2b-256 2f3c76bfbca61ca46414c2c59a8006a88f04f8653c99a2f41ccc1b0663a8c005

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5ce282d3b888bbabb71eb065defb66383f0775fb1f12da42edfff1800d85336
MD5 c922b1518441ebde943bade860368222
BLAKE2b-256 76374e13d72109f2e946f9d472b6e9564c332a983d20ef1c1ddc54794d02dc17

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp39-pypy39_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 af5a237ed6fec3c9977dd57248f11d9ab71a2d8a8954eb76f65171b7454f9f23
MD5 a684f312c9313f1ad72927f1d20c78fc
BLAKE2b-256 68c1cc3658e45979a9cfe0e03df32b863a9ed75d1cedbc12147644ba6e4c406a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp39-pypy39_pp73-macosx_11_0_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55a5b78467c0605817e12469630e627c3cccccb44ff810c4943337fbf3979529
MD5 ecdda90a27b7c30a4bb1093f621d3cb3
BLAKE2b-256 0386f6e93a4f19df53f381d66bcd8ef9aa256c660d0eb924e58b0fdccec250b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3a5f27e938173df8dda85c7f76d0f92cfb8a5a6f59ac094da133e70bd5526ccf
MD5 c927579713abb3ebcb8e47682c42aaf1
BLAKE2b-256 c78e322f5eedf6b9e14fa6b9749197b9f8a486736fa29b1b42f26ef0f7e5497c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp38-pypy38_pp73-win_amd64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c1b982292085c1b14b487d348b6dd572a1e2cf9b892b96bae8b74d21304f4e4
MD5 2017dd5273e494fef943ee6ab85b499f
BLAKE2b-256 cba9c62cfa984c864088c22d9b326abdfd83b561d28f8f2eaf9863e6189d3349

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2cf10a178140e94116ba467c209d38bc73962211a666e5b85e018194dd3c67e
MD5 46f16919f6589977f1b998a1556529a9
BLAKE2b-256 26d6e79606ad905d9ef0df36b5a4c3d933636467eef4f16dcbc719a6800de02d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f111810607172cada546003d444e9f0d7b2c9d1a5f305e56d365bda89adbce8d
MD5 f72aaf271526977f2b92d830e780c605
BLAKE2b-256 aba70458e8387f860c96c64242c8c78118d228a54a619a64b59d918c5a44bdf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp38-pypy38_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 bda1b59ed326fc0fe909b4be38297d37cba1ee332913f1ab1a8f17bd9791e2c9
MD5 a0c50618b8149806948bad3962657277
BLAKE2b-256 92828801ecc1d4f875b7f218cc6ad9345cf7ef3c0e9eec2ada6c7fc34b6c5609

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp38-pypy38_pp73-macosx_11_0_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a50f5f7482aa64038aa93ba12c45bffd2950a5485288558adc80ebc409b20a21
MD5 8175ab984fb6bd8972f0a2c703d1880d
BLAKE2b-256 281539c3c69ee642ea1271be2c92ca8e628e251b898d98306953b70a37d46310

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 125ff9fdba066a97e4bbdea69649184a5f5fcb832106bbaca81b80ff8dbee55c
MD5 885202e22db1187b5fbc2916755d5267
BLAKE2b-256 6192f0b490a7bd7749aeed9e0dfca1f73e860a82ccb3ddb729591e4324c54367

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-win_amd64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

  • Download URL: libvalkey-4.0.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ac6d515ece9c769ce8a0692fcb0d2ceeb5a71503a7db0cbfef0c255b5fb56b19
MD5 7d809e8803c8a03567c0af03abf8d26d
BLAKE2b-256 61b28ec653c1e1cb85a8135f6413be90e40c1d3c6732f5933f4d3990f1777d09

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-win32.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90fb5252391a8a9a3bb2a4eadd3f24a8af1032821d818e620da16854fb52503e
MD5 641e127fa90d355070c378b9468f4aab
BLAKE2b-256 e1869780ad4d818fbb63efb3763041109fbdbe20a901413effa70a8fcf0ec56b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 885a2ca644a2fdaf555e9fdab2bbe7de0f91de4e2a07726751efa35417736d55
MD5 cec91442f873609f17003b529c96f193
BLAKE2b-256 f5548628c445f9683d2b0f2df3cf2084ec48917d33ccf3f857b2b4b25c6ba3a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a03058988844b5a56f296d0d5608bbbe38df1b875246d6c6d7b442af793b5197
MD5 0e9e3558d3e5d253a9bad3f9437516fd
BLAKE2b-256 ba546439403407317d1228f8b2d5e38917ff162cd86b371bf28953e727674b20

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2be9cd8533638be94956567602554bbffa65d6fc8e758cd628f317a58cbcafda
MD5 fbd6f0b8ca5432cca278c29f5e029f51
BLAKE2b-256 2eaa35eda3faa3a7e9a5702c1833cf2ff0fdb024661d8342b24393198db968a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35576248ac379e755cf40c4ebe6bf735f278d46b5e449d0c8ea9f66869e3a8d4
MD5 3ffc3226aa552c1e0c27f33685d2c1cc
BLAKE2b-256 dbe69bb87d6d2fe4ba4da960104356c2b165766cb1d420ef1d7f0f671729f3ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e58b6dcea57df7ee8d80f914ed8895141fbb53d6f344b310ebe6cae3e407d0f
MD5 f2e261ced4ab9ccd39ac92ea05b2d365
BLAKE2b-256 6c9f74deb4ea77efb2cbf24c2a7364628b93f3bd02bff7203162c88e9bfe8f13

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b83e133826ca50506c9f49b5c4fd64ef0dc3bbc6e85bb18b781a08320bf3f0db
MD5 861fc0e8efcf2fcbd499a7c9b6a12236
BLAKE2b-256 7c13390d1f1fac2167e5e4531cbc090ec99e974271fc05e4c0c8597db593596d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56d6db545639a5fbb1c634621634a7f87845b7867056b1460a8299cc489e3364
MD5 e24e40da8904eae21606e00caf626c76
BLAKE2b-256 79b3844123ae52d63d9ec97f4ad026054a0b616d83fd886adcfd2f8484939044

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50e956e1bc0ab21e2479fb5729456ae74de808a1be799b9163bf7a25029eeb41
MD5 ad20e6d6b8074833439859f34466233c
BLAKE2b-256 80d23b6c235393137b16dacddb04ac6b632f3998cd10cb52b1e34b2eb7bdcabf

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8adea3c5824937c1e94bb1d5bc30c57661e8bbcb1a79e8ead77b45bbe206f488
MD5 22e1ededbded29067729721b90f0bae4
BLAKE2b-256 7bc89908fdb4a5661bef8972cf94d149f5c5199c3835bba1a6f523225e2d6c37

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 33d29f8d826b59e972a8502e8547d5fef7b1a1376fa0884cf1360c15977bca50
MD5 b0cceae2b27380c1f4961c9a8d0c517e
BLAKE2b-256 51e1a806533c315cf758812e4f609548ccbb51c10221e2a3c6f9aa6e17633ee9

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 66b4558ca5b8fa48fde40dfc79547779d78c5397906f5ea5671b9a75f0952ff4
MD5 d6cbe243ee4cbb89dcff2972c5fbe04c
BLAKE2b-256 8e08197217ff273fde5670b84682a2d67fe372890d14595ae0a15284626975ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-macosx_11_0_universal2.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f72346eca7408cfd6d6f407e7e548040b310ed6fdaec7d9ea67b49f20dc90a9e
MD5 0f670e799297d4a6891662fa78f46682
BLAKE2b-256 513c8571abc9b8a78281312b99348bccb35dfa161a3a3e9b963afdd473beea40

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7b39754c9cdf7fe704c636a2ea179c17229566e7c79af453df3a604b98879dc3
MD5 6b1406601ef327848f8dedf47b23eb97
BLAKE2b-256 8f57a3f837524d63ed927f6ab3da3be2050f6c838279c796d5b44b617cad0047

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-win_amd64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

  • Download URL: libvalkey-4.0.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a39ad585b3d2d48d6f5b60941f9d6a5f3f30a396ae129db15bf626316f71594f
MD5 732402d9761663173b082145f626964f
BLAKE2b-256 458800d5d2d0960d0023c52d25d5ae87d47b5aec995241788be5c424826727aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-win32.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df9d7ba691c49c632bdc953b5c0af5c50231d0ae3bb0397688f63257a12786c0
MD5 1716bfcf5a98b88e43bcc858e68ace0d
BLAKE2b-256 a584d8bd771b07854c58cbf8926d98fed1701a4dcbe97ef31e8fea63416fc461

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 56495ab791f539dc3ee30378f9783f017e000ad8b03751ad2426003f74eee0bc
MD5 913b92b4e733dcf53ad6dea69667e0a1
BLAKE2b-256 ce00ec095e022b7e5c2035787ad7389e0a11157ceb98f4ceae7fc44805907be0

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 89e79fade6e6953c786b0e2d255a2930733f5d9e7ef07cf47a4eb0db4eabba5e
MD5 d25fa7e926f7fdf312260ae2faf1be1f
BLAKE2b-256 0fc6116f5432c8234630079f3dadcf48828db41c2bfcdfaeb36ef197a2efa380

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c8f59bb57f8e02e287da54a2e1250b9d591131922c006b873e5e2cad50fc36c
MD5 162a545d80031df52d8936fb725db705
BLAKE2b-256 a9ae602254b8865a0fb21df3f3cd57815ca7e6049cd79318bfb426449b661cee

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c151a43b250b6e6412c5b0a75093c49d248bbe541db91d2d7f04fd523ea616b3
MD5 fc19ba4657a6adb57ca085c7db5e785e
BLAKE2b-256 05b8a75b6edcaabdc6245ee719357d307e2fccb375ca09d012327fbc1ef68771

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c0d5b4b01c2e4e5bad8339d8b585f42c0b10fb05a6e4469c15c43d925be6285
MD5 87e7a6caaced47a85449be207ffb41e1
BLAKE2b-256 88bafe3b25281e41546ea96c41b7899d2a83a262463432280e07daed44beb7f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c20ec7a26163dad23b0dfdbb81dd13ae3aa4083942b438c07dadaed88fa0ca6c
MD5 1f411f696d2eced3c46893083dda8fa5
BLAKE2b-256 09c1e10266e11034af9194feacec78221bb01db6961b662303a980c77a61f159

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 65fe45323bbabee8d770127c0a763182a0d540a8c1afe6537d97dcc021fc26c4
MD5 cb27e82f41bac9a89384ad513d125553
BLAKE2b-256 fd00451b234f5125e0b9396d7ca4b9d2ab9785e21475f4da60ff019e48912f73

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f81f7d806e5dd826532c0a4b6d8bc91a485fba65a3767cfdeb796b493ac59c8c
MD5 a8db6afe563bef49d97bf16b1a22de2e
BLAKE2b-256 c617debc72596eb3e4c27a4ae1a5b5636e99b7b5e606c072c8816358ab69fb7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 827ea20b5ee1d99cf3d2c10da24c356c55836dd6ff1689b3fbf190b5bffe1605
MD5 15780430f0e5a7f75797f9a1c7768c64
BLAKE2b-256 21f1dd28a89f6c89e4fbcd95be18a04758f6f57fc69d38a7bc22a59377b277fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 00adc978a791e944e2f6b442212cd3494a8d683ed215ff785dc9384968b212b6
MD5 5336715015165e7428d4a3128b7cd87a
BLAKE2b-256 cfde9515ba0f436c3e54331b66cf7652c03fc73688e0b6f22853a6fc2cc8aa23

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 ce623bb8c37beb16d0f2c7c5b7080a3172dae4030e3bcd71326c7731883f766f
MD5 b994461c88139f556ee922cb6248fd14
BLAKE2b-256 edcb6f7614cab744f0e4e0eae583b2997bf22ffee4aa333e26786b91342986b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-macosx_11_0_universal2.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3d5da92598f8e6a82a5e3dedd49dae39fce6b3089030e17681e2b73df4a6d89
MD5 8fc105b4199114397e588682957fa5a6
BLAKE2b-256 2b62fb85f94411890d233c74aad7b581bb65a0f809b5757446a280a8fa42a50d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4a1174d53d949f38128efc038b2d77cb79c4db127f5707ad350de0cda3aa9451
MD5 fd854d1ae4a0c1072da4352d2e1ce4f6
BLAKE2b-256 8525d59dbdf8cb16d5c1f9215fc7cf66d2cbca6d05008eda1104b321df785647

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-win_amd64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

  • Download URL: libvalkey-4.0.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dd96985818cc1ddc8882dda67fa1cf711db37d0a24a4cd70897fd83a7377a11c
MD5 f1c71a5995e372781fe76813ce0b8028
BLAKE2b-256 c7fd9700a1edec4ebacbcb7ccdf55ac6548f2a5693b016768d721c0d520753ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-win32.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 860862322eceb3ed2ff2031663ee42d9ff4146226af3734f818b54a70339c440
MD5 e275a941cdba0dc58b2df43bb88e77df
BLAKE2b-256 2f97b0e5fc755c78ac23a6e7a5c81288e7b44131becc11af07ef087f54054adf

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ebfe6976a10ab6fb84d885622a39ff580803f3244a048b75fb63a97048cb894c
MD5 19beea539ff221afe62ebd7896320e39
BLAKE2b-256 fdea428c9404f41bce80d946ed904b5749a5b3ac2f2a6a1a48f4da1c9b58f8b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0a9acf658749ee324750643df040a62401d479de9a4507ca8f69bcf02df1b189
MD5 5b66307aa6e787a252399530fd3bcf77
BLAKE2b-256 fbb835c8f8cedfeaf2ddb261f09e9a618a3e5ce44c8d4ea29e19ce4c1ae175d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3453cd138a43cdcce32cbbbdc99d99472fb7905e56df8ff2f73dac5be70f0657
MD5 d12d27d6f4bbf81ab897877592fda9b6
BLAKE2b-256 e1656d3004b011a799781f379bdba531a3c19bc5f8cd929bafa96fc066a59b12

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79b446abdb18aefc984214de68ac5f50164550a00b703b81c2b9d9c1618f4a13
MD5 845f492596e2df8f1a3e21473782acb4
BLAKE2b-256 8fd81c64a5704ef4f843e2ffab8d815f1c918445f92e38660a6d44c7c64d1fe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 195f7e78cb6d2c391dac2d0fc1bf7e65555ebad856e0c36bcc4986e0b3b6c616
MD5 6297397df0a0fed4177731eebd85a756
BLAKE2b-256 134cd384395d2378e6481cdcb1fb7c6e6d0a3ae0feb3dffaefbd6c1eb39cb3d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b473dc3d005a9b57e4445cb2a9ab48f8a26ea90889458ef3cb4d3dd7b23b5a26
MD5 b8efceb7c3a3080894c48f15f3506001
BLAKE2b-256 2e873b681951477e98e135dee6f8b570779875a96a0367ad886327610f9134ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d803812b4933a1926479aff4057f06b4332977b796038b4309d98546c56edf5
MD5 d8e34c1a7af5a851ae3a2644a0333bec
BLAKE2b-256 49adef273ef578fbac6e3b336c2138e457893654da0a40c75fcc76bf28be4761

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d99b4adae993b9d8f057e150e5a2f938823d17286abcbc5cca0cb4741c530ddf
MD5 31caddeb29e91629e683017f2deb342c
BLAKE2b-256 cf3f1fbe055702041bcf2a85e056955219102e8b0aa3967482a5d68f7a3bb8c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d56ed4c6c17bfb65bf4fe0745fdb3ae6bd1111af6171294497173e3a45226d7
MD5 12bd921408d97b432b65be376459d8a9
BLAKE2b-256 f71f954f1ac80371dc50efaada4ca133219e2edb265c136c7fa2af1821caf5b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 785c73ba7177777d9af01f48aa3344099815cdae3fef12c5d0f35b9b392f35bf
MD5 b2e7ae813a26cf5bfea49535b60e89ff
BLAKE2b-256 84da1c2b524ad44a7c24d7e62bb63d995bb8e59863c0f88844778c109604f83f

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 0db70261f8843007ea995f7adf0d619780380ac3abc4c1ac44ad4f3e885d5594
MD5 2e94a498f08ff4e2f793d2fc22359e3d
BLAKE2b-256 27ae30ba1da48e143da9c1fa0e4cf4899bbd4402b0a0c8f6c355aa76e89b6490

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-macosx_11_0_universal2.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f342da7200765da30e8a6a540722a8e9e689b0b0604e067290d308981d93826f
MD5 27d78075abdff313c8104c74ca4c8b8f
BLAKE2b-256 c47ad7e4726c9a08c703fd4e824c7c644ae6c5f0ee3f1b99474a524f0149b77f

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cd3495a5c4c7f04c26bd5c34feb15c13da2dab5a349756a3f42f2a15521a5197
MD5 701f1e5da7a92b361968a9663a13d5bd
BLAKE2b-256 5ba87819672c42b470c67a994db05dd876b88ad97d5e4ae3152a7e49172b0b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-win_amd64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

  • Download URL: libvalkey-4.0.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a9438415f500c1b65fe258f102b004ef690db142a74d681d10fd82e344dc947f
MD5 7cc8666464a53d8489dcf55da4cf7bf2
BLAKE2b-256 18a116512251a897ad7022787ae395c2ecaf48449f7fce170d6656c5a27df795

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-win32.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8801cf0274b2a6b0d19ea47de351e5ce67579b8503c4f9905ab53b52fbf270e
MD5 61f5e56dc32fb55105c459611bd9f6fa
BLAKE2b-256 f66674f722d90e37addf2b1235ce8294d50751c1a406a7dd05e7b4893f474daa

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b3ac608744fc2727eb87cdd7613f8d64b18a210b1661706d2b2de09fffd3d2d0
MD5 6b6565ba82004152af3045d48999111e
BLAKE2b-256 6eb08624fa9195c4af93044860c9685b7667c1b7dd9bff6b62f815e65a512f24

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a1eff0939e0577ddc6b8b359a846c0a83cb7ed3b0688fe98f8f8cf3ba8aa04b7
MD5 8b5f0ac4618012825b3d7b517fa0cb92
BLAKE2b-256 2303c293870a74b88d8ce2c5fed2a049eb2ec2373e29ccd3eb3df32217746e00

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa678090591e1c28a5f0647ce69531752e8f75e83a03e8963500941475898ccf
MD5 1bde3c0b02b979ffea8c77dc07190783
BLAKE2b-256 b7fd1f8476e45792c1bd6bb364e7f04c0274caa37767d4ed12658b1d863874cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75918faf78b2728ef8a73438361c328d70757cdb0e8bf57fa636e0776f302d4e
MD5 f330686a5455e42ae758916e2d4c4ece
BLAKE2b-256 359331734676641cb36a3ac23ffedc89b328a63a2f00eba80fc0554e2dd93872

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbf76b1b51bd5fe23dd09d0b7599cf6ee7a074e73a1933910e5faa1741408708
MD5 236a057be00126d2837127a383f2931b
BLAKE2b-256 b407205b2e63936f880d0ff8cc7cc27059aa698a0d4f02dc9194854eadce985c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 641eed2e36408b8ba553c4606b2cfbee05286183249c76841188897d595c6639
MD5 46519b95500c11d6d75d885223369b9d
BLAKE2b-256 07f649e0b1eb0cc9aee67d711386cbda604ea67752d17d9f94b62ea9866716af

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea9bdd8fc54de6ceea9e28dc28b327a443423dd1d110bb9fa1d67f02626a8679
MD5 2ffe47c9ed302641501e3bb9b3fb6a51
BLAKE2b-256 f10ce697bc18740d95dd0a3104404a0fbaaf4f1d463ac6b7ed2f6fc0c8be4b6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf424fe1f45462ae4fea5f88b250ae86d7217a9662cfe5cd8a25208268129833
MD5 6252b2b449b141705ad772ab022a394b
BLAKE2b-256 1d56c8f80d3fa881cf79d20b537dcbc3ab5c8776db51cfa50b2a04a3191d027d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01c4051c3b772bd3032ca66c96f229412622ef0bef344f9ad645221f56082573
MD5 4e43a0ebcafbad46e583496cbbc74dc4
BLAKE2b-256 252faee00783de3ad3fbbadca23692f854f4b9f4b545c55db19657a4330e1bb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 98a37d1cb5f4c3dde6646968b0a624d3051fd99176583a5245641050e931a682
MD5 e6f96e94891dce56e08c8ada570355c9
BLAKE2b-256 7ab34a7bf5a0275674cb17e0204c05e16356c94406256d811317e6ba87e1f234

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 f51c08cae774071ea354658f9a9bb7ffb7b1743661011a28668650b130e0d063
MD5 0b423e7bf3dc8b460aa5710fc436f7fb
BLAKE2b-256 e96784c88cf0e8df1d68da9a2e7f6a79e818031a7ced1b70d66c60041e8dd7b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-macosx_11_0_universal2.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e180a893ac62e340a63e18c6dcc91fc756c9f2291b47b35ee1febec68c6d13c
MD5 5d31b921fa10cc8263bbbc951b459e2d
BLAKE2b-256 17acc7b21f810c17527f77c8bd4145e21568a95a4eccc32bce8df4c5ba5d8863

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

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

File hashes

Hashes for libvalkey-4.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d050e7ac0906fc1650c5675b0a68da53181425937986559d129da665382e444a
MD5 cf576e3b1c92d4ef140214c129964227
BLAKE2b-256 cd9d64a33e7141ef8cb63078a3b3e4e4821adfff401198cfa536679ca78e0247

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-win_amd64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

  • Download URL: libvalkey-4.0.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e5b7cf073a416f2be03b6aebe19d626f36a1350da9170dc2947d8364a77d6c3d
MD5 67e8af770a2c5ad322879312000bba9f
BLAKE2b-256 ff6b7342449b847165e773ccf320189161ec26663dbc93fcc5099539a270ae09

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-win32.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c7500ddd11760372c3d9ace0efea0cf00834857be7f7da6321ba9a0ba01379f
MD5 5611e861e8986dcf002878338695815e
BLAKE2b-256 3b08df3cdaed3bcd15a9470fbb2511de9b3237e3b956a1c8d835b75ff1d56c0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 be54d0ce94ff65ff8eede2ab78635e0f582f27db3e9143a1e132910896157684
MD5 a6c154399ac30890e5a452e4b2144e07
BLAKE2b-256 8df6b46976335a946e3f3c1cfe8155bcb2b3ad0b6496ec87a8ca90f4da561a56

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fa4dc913f28d799e755fbf2bd411bc0e2f342b9a4cdc2336aab68419b405e17d
MD5 c4c393b352ba30592974c7889277ddef
BLAKE2b-256 83a831fd517128120e4df4aa0209519ac6a467d38ecbc898dae9100a1f288ac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13856099dd591714975ee4399f1c6a1b87d4a7a79960681b641b57ee70bcc5a3
MD5 0bf58345b36bdbd744db1fcc9941a710
BLAKE2b-256 b74f34c6bd1097b33cc0eeeb514b0992639f6e5df9edf86d424d9ffc09dd6d32

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2175fd547761e67f00141b7d22ea6ba730da6ae72f182b92d122ed6b9371f27
MD5 318da070daf1f9abfa8a50d0f34d4914
BLAKE2b-256 572e40dfde852a9dde4baf961531a294d02152d89c4bbd7fc72ccf798c92b951

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c38f42b6632fdfd39c0e361d004c0c93f9059b6c3b36626f903a371abbb8af8b
MD5 e3313a942d08781dee3798ea641489a9
BLAKE2b-256 cac0bcedb0f40ee4d12694f3c7d6809d7de8b8205636fe291f1b7daf6094d8cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce6b42ab06ba28d7fc8d24b8da9eccda4033e9342b6d4731c823998ec0294a09
MD5 dfe7fb716c81bd05668f9ca16a7c29b1
BLAKE2b-256 b0b6b0e6a1f509a6a11b3f925038d4e3d0fd9da18d56d3be34ed41b8a44d6c8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 70deceeb55973d6b5911b06f7ceadeea022a2496a75aa9774453f68b70ab924b
MD5 c8c4f99e47fb4b0076f707b9f88fda77
BLAKE2b-256 876c525d00c790cfae5fc196d2518de878e15d4b54459dc71aed5137e8bf6282

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ff5e5559b3aa04f1cd630b07f320ff0bd336471e5c74ef27a30e198b1a35b7c8
MD5 bc3d423714aaf96ead95b9273af05574
BLAKE2b-256 bd7c870dc7b68a0166bc216c403157e25fdd29e34ed1429b6821903cac31ad81

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd77106af55d6c0fb588fe58c2daea2ccf05ffab3713266b66157add022b9623
MD5 fbf8cfa625e631751b5d44ffdeddfc75
BLAKE2b-256 a09aaa4cc4075fa05d98607011efd98888bf7e9eb9c7278bc9e3ea14206cc3e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d9ff6deda50245842b901501e282be0399fd6c5289ae9f7a6cc5c62a2e5303d7
MD5 beb1d657c69133afda516c99b25ff4c9
BLAKE2b-256 e42ca64b3aa6fceb32026f965d983251b59a30017dd973c243ed0050400cebba

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-macosx_11_0_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 c3ce037eeb03682c1dea8435bc0b9c118dba105cd8dca353b4a49cd741fff60f
MD5 fd1fb7b7501f1ce2453403f03513f606
BLAKE2b-256 498864f54ed1ce28fc1c27353ff676b8673820384af72bafa12930566c0d8843

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-macosx_11_0_universal2.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9c5975aae213a3c7251c3e8989c78b2ee39be5eace45a7d99fadc6a4a5a7bc4
MD5 84f29d663a8331831f3ff07f638636ed
BLAKE2b-256 ce17d432510a70089a9781b81dd94d649d156f8af9db0c8b9603702b0ec95dcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

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

File hashes

Hashes for libvalkey-4.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3ff7f2e78c0e195d862cb9bda3b3fe16183713220d5f2faae653d9b187249c9b
MD5 41011bd8e2c84e227d53b67c703ff70d
BLAKE2b-256 7fa8c34155613194fa9cbf406dd0cb05b965b8280c52d00af12062ddb609b711

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-win_amd64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

  • Download URL: libvalkey-4.0.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 471ac81196e1bf5d00069be2bc6fee4f52744b0a3c219b51f3d3115a7903e190
MD5 dc1ba15172f50ec93f26cbd251288274
BLAKE2b-256 2b81828b1db1fb2dbcda215bb3806b89d2493e6c4a7ab4b529c7bcbdc6e1cc96

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-win32.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48cc9f0fd6724780949bddbbadda9ee338b63a8923202bd7df0e2de4feea63bf
MD5 b6e5eca2c1a167f0b29bb4be3911700d
BLAKE2b-256 2b4de208e3335988ae2d35ca07f9e7b4718ccc2c0eef7e50ca6c4149c37c37df

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 aa162ddb08a5d9a3b2d08f6ebe92385a049077c9b4e168e5171c615fbc8155b8
MD5 3da0cfd78dc87353e7921183c515f8bb
BLAKE2b-256 ad04876ea16da27d5000d6b4d763a0fa0b43a06fb4e45b70acb70f12eeef3f84

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-musllinux_1_2_s390x.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6445163e102f10217532b6547edcc239f2dd0bced13fd982da10b352d0771b21
MD5 2c8d871ef6f2a69ce4efa37a63338417
BLAKE2b-256 26b7d49605d0e0a0f998f9addf724fd20ac2142bbb3c714e80f34406d7cee1fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-musllinux_1_2_ppc64le.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc4354d075614a736e62d8283fe173df66e55b5260e6c29ff851a1d3680a5d1e
MD5 bf93b3834c05f5cbfa6490ab95a8e766
BLAKE2b-256 166a4cb7e3770694029c8289e041734f96b0d0203a36d6330bc1276979815191

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f448af77c485fabb2f93928ca759f9813bc8999f2fb0560d9c2e4870aa6e0edc
MD5 d5259b7c2a27ee2b807fb6fa3a7c2741
BLAKE2b-256 3c2f65e4a05ed217f5e59a5677c5c7fea110f3a343349f0c1b8425132f4a285c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60466c4bfd4d55ce6233d951627a4eacdae6888de0885695b5b6f3deafde57bf
MD5 1ce2047373f3f0811ea08fd50ad93f4c
BLAKE2b-256 803e1a03a45f9dfbb634da3db90ec96c92df56fa1a844cbd7a479f790e6b513f

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 be5dae7eebe303f549b9cab63fb9d6b1a1730b00e5011b0cb3d3403dc2d70ad9
MD5 e5e492c57c3e8c2503d8914dab1cb3d4
BLAKE2b-256 e5d043c41bbbbc05e781396508ad689e3b5507701ba3c57da204bee0486bfb3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9bb157a7fdc91b49d274eeb7961fcdb03d32380d1c25b9bcbb4dd490944539e
MD5 482fc93618cfc8f9a249ce4199317406
BLAKE2b-256 b14e61c0b3392f8f97bc169c3f9eaee8053ec514e3ee85ed3fea0b3ee0cc6072

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e266a71b747cf5f8c8882966c58c080a61f8cb772bbf6dbb2d67530034ebd611
MD5 4a6a65b4168b4cf1c84a369062f5d61a
BLAKE2b-256 ad28e1745166d26c73cb7a6fa1df5f51f0326a4e7e79fd8a9948f81a750132e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91143449ee77ca072799759469df20ff538b82e0c538e3f3a4afbe5f1c7bfeaf
MD5 c4c41912ca8370abe0789af1fbb08a1f
BLAKE2b-256 d784c6fa981a5a922dccf2c6eebb0d9cad3fbb3122c7d21ad3d9f444f67cc97f

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4aaa2b8ef0a3cc1a72abbb29667be2321ea5cd31f3b131ea0a35e4ee86caea6f
MD5 8ee623634156665fecb4e086af9bab20
BLAKE2b-256 b403c12e79b6dfc1d9f90315288bf81e7c4df5ddbfeb22ade52c61d5eacb93ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-macosx_11_0_x86_64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 200b135258f6ada4aaacf8499e2d2d3484b39a03b2178f64d4da16eb39bcbf77
MD5 c42fc2163b3f0ce6662fb780307c6f2e
BLAKE2b-256 f619865dc1a17f8a4b4f5c63cb926bf30cfff61c69446b27f83a9c7b8da65d5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-macosx_11_0_universal2.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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

File details

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

File metadata

File hashes

Hashes for libvalkey-4.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f389b48f37e7d14fd42eb47e52b799c1624edafc2b9398b9fe2f4e204d072a4
MD5 0767adcb2cbbd77cb85bf355b853232b
BLAKE2b-256 eb9b16cf35d50004c918da27cd9f33e27a1037690b523e8d4e8244b497988d8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.0.1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yaml on valkey-io/libvalkey-py

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