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.9+.

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 decoded. This is identical to Python's default behavior. Other valid values to errors include 'replace', 'ignore', and 'backslashreplace'. See Unicode HOWTO: The String Type for more information on the behavior of these error handlers.

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.1.0rc4.tar.gz (118.7 kB view details)

Uploaded Source

Built Distributions

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

libvalkey-4.1.0rc4-cp314-cp314t-win_amd64.whl (42.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

libvalkey-4.1.0rc4-cp314-cp314t-win32.whl (38.4 kB view details)

Uploaded CPython 3.14tWindows x86

libvalkey-4.1.0rc4-cp314-cp314t-musllinux_1_2_x86_64.whl (186.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

libvalkey-4.1.0rc4-cp314-cp314t-musllinux_1_2_s390x.whl (189.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

libvalkey-4.1.0rc4-cp314-cp314t-musllinux_1_2_ppc64le.whl (195.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

libvalkey-4.1.0rc4-cp314-cp314t-musllinux_1_2_aarch64.whl (185.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

libvalkey-4.1.0rc4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (190.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

libvalkey-4.1.0rc4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (199.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

libvalkey-4.1.0rc4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (200.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

libvalkey-4.1.0rc4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (189.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

libvalkey-4.1.0rc4-cp314-cp314t-macosx_11_0_x86_64.whl (48.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

libvalkey-4.1.0rc4-cp314-cp314t-macosx_11_0_universal2.whl (86.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ universal2 (ARM64, x86-64)

libvalkey-4.1.0rc4-cp314-cp314t-macosx_11_0_arm64.whl (44.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

libvalkey-4.1.0rc4-cp314-cp314-win_amd64.whl (41.9 kB view details)

Uploaded CPython 3.14Windows x86-64

libvalkey-4.1.0rc4-cp314-cp314-win32.whl (37.6 kB view details)

Uploaded CPython 3.14Windows x86

libvalkey-4.1.0rc4-cp314-cp314-musllinux_1_2_x86_64.whl (178.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

libvalkey-4.1.0rc4-cp314-cp314-musllinux_1_2_s390x.whl (180.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

libvalkey-4.1.0rc4-cp314-cp314-musllinux_1_2_ppc64le.whl (186.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

libvalkey-4.1.0rc4-cp314-cp314-musllinux_1_2_aarch64.whl (175.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

libvalkey-4.1.0rc4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (182.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

libvalkey-4.1.0rc4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (190.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

libvalkey-4.1.0rc4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (191.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

libvalkey-4.1.0rc4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (180.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

libvalkey-4.1.0rc4-cp314-cp314-macosx_11_0_x86_64.whl (47.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

libvalkey-4.1.0rc4-cp314-cp314-macosx_11_0_universal2.whl (85.6 kB view details)

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

libvalkey-4.1.0rc4-cp314-cp314-macosx_11_0_arm64.whl (43.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

libvalkey-4.1.0rc4-cp313-cp313-win_amd64.whl (40.9 kB view details)

Uploaded CPython 3.13Windows x86-64

libvalkey-4.1.0rc4-cp313-cp313-win32.whl (36.3 kB view details)

Uploaded CPython 3.13Windows x86

libvalkey-4.1.0rc4-cp313-cp313-musllinux_1_2_x86_64.whl (178.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

libvalkey-4.1.0rc4-cp313-cp313-musllinux_1_2_s390x.whl (180.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

libvalkey-4.1.0rc4-cp313-cp313-musllinux_1_2_ppc64le.whl (186.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

libvalkey-4.1.0rc4-cp313-cp313-musllinux_1_2_aarch64.whl (175.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

libvalkey-4.1.0rc4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (182.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

libvalkey-4.1.0rc4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (190.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

libvalkey-4.1.0rc4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (190.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

libvalkey-4.1.0rc4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (179.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

libvalkey-4.1.0rc4-cp313-cp313-macosx_11_0_x86_64.whl (47.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

libvalkey-4.1.0rc4-cp313-cp313-macosx_11_0_universal2.whl (85.5 kB view details)

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

libvalkey-4.1.0rc4-cp313-cp313-macosx_11_0_arm64.whl (43.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

libvalkey-4.1.0rc4-cp312-cp312-win_amd64.whl (40.9 kB view details)

Uploaded CPython 3.12Windows x86-64

libvalkey-4.1.0rc4-cp312-cp312-win32.whl (36.3 kB view details)

Uploaded CPython 3.12Windows x86

libvalkey-4.1.0rc4-cp312-cp312-musllinux_1_2_x86_64.whl (178.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

libvalkey-4.1.0rc4-cp312-cp312-musllinux_1_2_s390x.whl (180.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

libvalkey-4.1.0rc4-cp312-cp312-musllinux_1_2_ppc64le.whl (186.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

libvalkey-4.1.0rc4-cp312-cp312-musllinux_1_2_aarch64.whl (175.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

libvalkey-4.1.0rc4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (182.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

libvalkey-4.1.0rc4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (190.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

libvalkey-4.1.0rc4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (190.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

libvalkey-4.1.0rc4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (179.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

libvalkey-4.1.0rc4-cp312-cp312-macosx_11_0_x86_64.whl (47.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

libvalkey-4.1.0rc4-cp312-cp312-macosx_11_0_universal2.whl (85.5 kB view details)

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

libvalkey-4.1.0rc4-cp312-cp312-macosx_11_0_arm64.whl (43.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

libvalkey-4.1.0rc4-cp311-cp311-win_amd64.whl (40.8 kB view details)

Uploaded CPython 3.11Windows x86-64

libvalkey-4.1.0rc4-cp311-cp311-win32.whl (36.1 kB view details)

Uploaded CPython 3.11Windows x86

libvalkey-4.1.0rc4-cp311-cp311-musllinux_1_2_x86_64.whl (175.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

libvalkey-4.1.0rc4-cp311-cp311-musllinux_1_2_s390x.whl (177.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

libvalkey-4.1.0rc4-cp311-cp311-musllinux_1_2_ppc64le.whl (183.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

libvalkey-4.1.0rc4-cp311-cp311-musllinux_1_2_aarch64.whl (173.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

libvalkey-4.1.0rc4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (179.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

libvalkey-4.1.0rc4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (187.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

libvalkey-4.1.0rc4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (188.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

libvalkey-4.1.0rc4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (177.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

libvalkey-4.1.0rc4-cp311-cp311-macosx_11_0_x86_64.whl (47.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

libvalkey-4.1.0rc4-cp311-cp311-macosx_11_0_universal2.whl (85.4 kB view details)

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

libvalkey-4.1.0rc4-cp311-cp311-macosx_11_0_arm64.whl (43.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

libvalkey-4.1.0rc4-cp310-cp310-win_amd64.whl (40.8 kB view details)

Uploaded CPython 3.10Windows x86-64

libvalkey-4.1.0rc4-cp310-cp310-win32.whl (36.1 kB view details)

Uploaded CPython 3.10Windows x86

libvalkey-4.1.0rc4-cp310-cp310-musllinux_1_2_x86_64.whl (175.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

libvalkey-4.1.0rc4-cp310-cp310-musllinux_1_2_s390x.whl (177.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

libvalkey-4.1.0rc4-cp310-cp310-musllinux_1_2_ppc64le.whl (183.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

libvalkey-4.1.0rc4-cp310-cp310-musllinux_1_2_aarch64.whl (173.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

libvalkey-4.1.0rc4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (179.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

libvalkey-4.1.0rc4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (187.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

libvalkey-4.1.0rc4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (188.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

libvalkey-4.1.0rc4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (177.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

libvalkey-4.1.0rc4-cp310-cp310-macosx_11_0_x86_64.whl (47.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

libvalkey-4.1.0rc4-cp310-cp310-macosx_11_0_universal2.whl (85.4 kB view details)

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

libvalkey-4.1.0rc4-cp310-cp310-macosx_11_0_arm64.whl (43.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

libvalkey-4.1.0rc4-cp39-cp39-win_amd64.whl (40.8 kB view details)

Uploaded CPython 3.9Windows x86-64

libvalkey-4.1.0rc4-cp39-cp39-win32.whl (36.1 kB view details)

Uploaded CPython 3.9Windows x86

libvalkey-4.1.0rc4-cp39-cp39-musllinux_1_2_x86_64.whl (175.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

libvalkey-4.1.0rc4-cp39-cp39-musllinux_1_2_s390x.whl (177.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

libvalkey-4.1.0rc4-cp39-cp39-musllinux_1_2_ppc64le.whl (183.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

libvalkey-4.1.0rc4-cp39-cp39-musllinux_1_2_aarch64.whl (172.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

libvalkey-4.1.0rc4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (179.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

libvalkey-4.1.0rc4-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (186.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

libvalkey-4.1.0rc4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (187.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

libvalkey-4.1.0rc4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (177.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

libvalkey-4.1.0rc4-cp39-cp39-macosx_11_0_x86_64.whl (47.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

libvalkey-4.1.0rc4-cp39-cp39-macosx_11_0_universal2.whl (85.4 kB view details)

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

libvalkey-4.1.0rc4-cp39-cp39-macosx_11_0_arm64.whl (43.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file libvalkey-4.1.0rc4.tar.gz.

File metadata

  • Download URL: libvalkey-4.1.0rc4.tar.gz
  • Upload date:
  • Size: 118.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for libvalkey-4.1.0rc4.tar.gz
Algorithm Hash digest
SHA256 ee28a9e3220c82202a51fc5eccc6eb3fbcbf31ab58fd8e63784e7a15f04611da
MD5 68cfa198ca9999dbfd8a090fc36601e6
BLAKE2b-256 27afdc73e06c52e8a925ca9b2f49b20282d4f75bc6161a66d6d9dfd6d7b80da6

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4.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.1.0rc4-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a3a6090fecf5548f656eda2919e588c7fa650b994755979f6e55692113d32661
MD5 d97652238b39e21e933969fd75952c47
BLAKE2b-256 92a44a1db10df42da0da5e7f9f035e0ff9eed304079abf43fa69cbbeb2a47b55

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314t-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.1.0rc4-cp314-cp314t-win32.whl.

File metadata

  • Download URL: libvalkey-4.1.0rc4-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 38.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 0299a36aef1707bd214806f027627e890b21263428301c41e763f034f07cc9d0
MD5 daf66f10e02a19435764d65f5b7971e8
BLAKE2b-256 182e8eb08c5dc81032fc08842dceeb0128e373aeb726bd5dc5e1119612898ffb

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314t-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.1.0rc4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6af2a8fbed651e50351444bad7b59a578ece32c8f652f05f90bfa4beec9265d4
MD5 f5a4be68508cc769731fe33c2f854c4c
BLAKE2b-256 5e916fb817c030ee0a576c0553aeeb42cdcbfe278b6d3052afff612e9ce612e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314t-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.1.0rc4-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d65bf14f1ecf998428ad449454c4797daa857807da8e5d2afebc793171529d57
MD5 ba5050f0ba7862e44eb80e5f6e9118ca
BLAKE2b-256 39775e2078725614f64121cfdadbff2d1b3a2ead91679af8fef06dba07a5135a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314t-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.1.0rc4-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 50b65ae2f3a927c341cd82307c29c234a2fb732a94d1c7f16e5843c559f88af1
MD5 64945042bb553db5cc8724c34650d76a
BLAKE2b-256 a96eb1bca931db5f5cabbf70660eb8851e4a9c00de15f9cbea99c19361bf9186

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314t-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.1.0rc4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31f59739a52f1dfd9e25469d5e12ebe449c54f6b41d10a99ce640a983cc99b44
MD5 da654da436b398fb80c1566d7cbc1847
BLAKE2b-256 8173fa3d4c5b03f5acf33e17d7ac7a9aec80b7d840d23e5298cf4380a2db5a41

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314t-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.1.0rc4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0fd1a0ef72372aa4133a32fd9c5e04ca5f83422861edbf34143cb4f6e631d89f
MD5 c638c074140661ad94d29309a02fae76
BLAKE2b-256 46eb47f9437fd0bb2afdf3471f50d93effee7d82ee11e262139ea93f87a21e28

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.1.0rc4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a294a9f63db107c2ed05f88a7e4ae1c40e9226b96aa22c3bfd75bd5346bce397
MD5 0dffdf244485442a8843a96b20d61ab5
BLAKE2b-256 5c094631fa0bdddd399f4d97295cb766815b254b23321a733924a9ccea5259f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.1.0rc4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f06f37659b9d55cb5fd2e56e154560be1fee488ab384dc78cb35ccf1315c90d1
MD5 2a80a65bba93f6faa7ed07571958e68c
BLAKE2b-256 692dce6266b6e75076e6023af59972e6e247ccadc0f2bfc1f9b92e6f8977c5af

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.1.0rc4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e645b47a1dd0eec70017ea13e357baad28b19882960d9f097620301d7e3e6112
MD5 fe32def4a8e0ab513a3fcc045a3f5e49
BLAKE2b-256 0ca01221a7f2fa0af6ea94d2e4c4251a64ed0f86f0604efc5aa2eb8554adc956

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.1.0rc4-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 94afa1f02757adfddd6b8a2fd998d2d6c919cd9acbe38800f41742da6a87041a
MD5 4df5fc952de2cb2808ed410c39f05bd6
BLAKE2b-256 2ff16c3e9839ce21589dca003e089ae0943d7ad97c49902f3bf75ff137b7906f

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314t-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.1.0rc4-cp314-cp314t-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314t-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 23fa9d47487ad7540fc50fa8e82d957d61776976289faaa8aaed76c9337efc5f
MD5 e4e5c9fc4a3339cdafcd87352d33d47f
BLAKE2b-256 a70efb04152e40677abda2d6e5c370ca848a9d79c9ec25d8d2beea4d60194a38

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314t-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.1.0rc4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2c8d5fdd632f5f38c1c2bd41184b1877f3af36e5c43d6ee27e9eb4d2a4bce9e
MD5 40ff6015115e2bbd3d3bcc46dcc4a49f
BLAKE2b-256 7d60d909c854271c336a169ad6926ad2c0780b910f6da09d5a30e73706b92ebd

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314t-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.1.0rc4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b90b1eca4c6df82488750bc42817b87557ffe3bba80898e29fa8e80107d591b2
MD5 1891ec8d68d6742bf5ad5632867f8055
BLAKE2b-256 2b66356d5ac8ed1e3fe8aee22ab7a71ddb47e5396427a7b8b13c53e91213586a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314-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.1.0rc4-cp314-cp314-win32.whl.

File metadata

  • Download URL: libvalkey-4.1.0rc4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 37.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c450b074a85fd541344ae270ec2a0434b65a7d3945ff52c667612450b1c90022
MD5 26e044d740f373efa1d5491ffe0641e0
BLAKE2b-256 1fd42d1546d8d48996374fa1c7f57bcb881a06cd6da86f830c55cd23ad0e4bce

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314-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.1.0rc4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4b77d04a8b33dc642f65c65d39390df2e86432df140371dc06bc4dc16c0c963
MD5 6fa9772a6a2e77af1917cde9de3f8563
BLAKE2b-256 c2fd8e91914673ac82ebb0b40869dda13d47b9e92233680d3da6df93edf6fff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314-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.1.0rc4-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 44cf86aaf77937bc0714d071abe35c1508f7480fb7d0611bbb7891601648f4cb
MD5 32f4f168abcb1c16d85a814782e5420f
BLAKE2b-256 ae7d00d6432dcec1a2c72c8370ce653214b2be81ebb8996d24071b5fc0eaa098

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314-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.1.0rc4-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7d015f6962f0616fe674677f6247813f0be142d49d7208ddb5c80e4515b583ea
MD5 e8638c470cf9a0401688b915c4e158c1
BLAKE2b-256 c418d6620b42e158060eaec10c067388c7e9914c1750e5aae0a126453c6c8b70

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314-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.1.0rc4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63e13b861d2d7998ed38a5811726c3f2adf64d0cba0e2a95d0305efa1da2dca0
MD5 60d4eab15bf220072dfd0b4f73b7577e
BLAKE2b-256 1bb13ffc4b571b7405167616a166b989c893118f544190df20c7907800a82ffe

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314-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.1.0rc4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6cb9fc1d004409632b4b6473dac47bd6201011e6d2b656966beef64592f74766
MD5 91d1abc1c546d4d220ece974f4eb174d
BLAKE2b-256 c5b36517e3b561ff9a570e84e90dc8aa710bb8238691e3172f497bcd787f070f

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.1.0rc4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 36311f724b0295e54ee9cfdb69153974fadad501eea0c5c4ddd1a75e553a7dcd
MD5 b2e2f3b98dee56f8ca964e5ea7f9556e
BLAKE2b-256 e1a14b684eef04e59410d379974b420ae246894d09630a765a9ff1aaa32636fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.1.0rc4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c508f1d9ef159ef3ae5a5e0d068346552e54a20f512a72369fd19287ef0da040
MD5 2b8617f94cc3d2225954dfd657128296
BLAKE2b-256 3c053ee909e2797d41275b58e1714da8199c17e00b030da15384dc49089d4faf

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.1.0rc4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03f991037571694a8545cef1548f809587339891a1c7ac5adb1545de8a29c435
MD5 803439815417e677fea34d8dc9d748df
BLAKE2b-256 e5c2e6fa099f4b501602cf43a29492d5a04212e1ab5db9f5e5dc1c622b4e0b2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.1.0rc4-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 13f7bf97e2f8e056ec78e2cc83b9d9cdf5ff92ae18233be72089149fb014deb9
MD5 8f5d3cbc83332345d97cf6521136cb95
BLAKE2b-256 27825304b1c0dc46cca415b180b2577dc751bdf84f5ba0d179ece1b78857df74

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314-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.1.0rc4-cp314-cp314-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 f3a46449beb3a8ef52da651c7910219677e509c60673a9ef55bea2c22b30f1a0
MD5 1bd158a5bb5a314c4b181d6939edf6f6
BLAKE2b-256 3a33965350e37e1e862d6f077da752e0a79c9eaf67e9eb3bb7d4c3ad687818c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314-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.1.0rc4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1d20049411f54b7601a0671b22968432dbea04f90cc4dab8c975ecb515ef6e1
MD5 c8cb049f84c38453457294aa30fb797b
BLAKE2b-256 26d12d38b202f6687e10ea26ab90444fc76dee80eefe039365cdd3ae47f5eb1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp314-cp314-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.1.0rc4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6a047de8e65fc7eee477361f7fc8d25a4026b0e3f3e65441f1d5de99e388c373
MD5 b12c51d5bea307a558fb3a8e37731033
BLAKE2b-256 f811b0e0d9283637a80317a4cfa8e52af8579ddebd4107c15848329018b2d0d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp313-cp313-win32.whl.

File metadata

  • Download URL: libvalkey-4.1.0rc4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 36.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for libvalkey-4.1.0rc4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 270e31f337e74ee76f093c362ba8f0c5633cf325a673f29565958f82b38b7a92
MD5 c42877d4b0f447918c50a6d4c791ac8f
BLAKE2b-256 76d676e7ec2b809b2bf13b83be6bc937e97939e9c28afabcdbce63c2c725c88b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8e5d7a13672cdc98aa1edc58b68215d429d70e93d60b1c44b07574b38636619
MD5 96b5f5e5c24e25047addda405471fd97
BLAKE2b-256 bba2f7c7ad3e25ff61685777c50d8127ddb7c669216b4c2afa1bc740aade5770

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0b5421a7cafe069d45594a2214a0d20b257550e09b0aa5cc2dd36050b8c53c99
MD5 de10e002c4038a6b637b0623244bfc25
BLAKE2b-256 1034b55b1bd207151a6be0bd53a588f3410bac276642ac3df3216d30bfccbfcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b59bdc8b76234c9d393ce45666a0b2b731874777778dcf6cba3cbf17d96ca542
MD5 936cc08fd11abd167d9cc318f79737af
BLAKE2b-256 54a383e95ee5861709cd8e239dfdfab40f3d9f34b7727cca186d284dd7b2dac3

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff507aec455432d588ba261a5408218bfc713485c60772d9226aeb434282364b
MD5 08fa7c949a80b13e3aa249b85887a68c
BLAKE2b-256 fbcc4c94e3a7a6999d158000f0751322fb3b08c7bb90058f5b1e758a05a5354e

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 790b35399f523158f150395c2f3e7479379d39e74fc3c6db41db011922d6ea48
MD5 4cc944e5b2ab1ea46b148759f100ebd3
BLAKE2b-256 eeb262491ae48661ea45dd9c08a6b901648ee7ebc8060e388e2697638744df47

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.1.0rc4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 33e29ab5c0cd1e1deddb303139817b28d85e2dcb3b01e949be538106f0d610d4
MD5 d210dab95ce2812bcb9b0844fd9d0aaf
BLAKE2b-256 a6f837984b8021a20f15b7a86bbbd681a9ec441d387957e7613747afebf9c751

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.1.0rc4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3df794b9b325bbe8195cea372c0012b4bb016d0475fac0697033809b5e41c294
MD5 23c660138457c7089a4dd92287b599b3
BLAKE2b-256 4e492eca1e89bdedfb33f8b2a9173efb96b379f627d253d0169ac82f6f6b36c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.1.0rc4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b64e8954c9863497697ffb7f905fa6c85f851319e6506ae23a85dae5a2db5ddb
MD5 bf92a90b8e6b81e6c7f6811f38d15b09
BLAKE2b-256 ebeff4b3587d6eaa5d67f4e981e36a90a3c1638c77c17c7a057b61f4e058b6f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.1.0rc4-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 34b02d58b13c91c29d47a449fd090613164f6c17fdcabe7733afc1f5b68c49b9
MD5 742b982769e235c1e4e1f477346f8eb8
BLAKE2b-256 29e386df9ff85539dccccebcb05325f1436715649eff4f510b0453e3aa97a041

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp313-cp313-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 2522f8694fa16fc5b9275484a35147c9e8c6ccce4c2375a3815aa6f23c358f4e
MD5 2f59f6b084b76294544ad0495b49ab9b
BLAKE2b-256 96449ef2f7e85740251e7682b59e2a403782f8b83fd020db32ddef6b85e9947d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 832410f6a39cf98ee5f084521eb09078b97a1c3a2f5fb668a39609585d846d8d
MD5 17ef0bcc25221467187b23c846ec4d87
BLAKE2b-256 d48a89101c875c279721d6170811b62273b3b2d519a7d6a6f0df1e29547b53cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8443dbb93c6c57c021fe0174ceec9347760cc573998cd512f3beefa7e5153d03
MD5 d7107545f244e23d1d56d755ad0b9488
BLAKE2b-256 229b2361377916448d6f6a5b7ace99a1f1238539c33b95da225af449798e1ae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp312-cp312-win32.whl.

File metadata

  • Download URL: libvalkey-4.1.0rc4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 36.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for libvalkey-4.1.0rc4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ca4a4cedc1c8da1c82f6091925a946f36443a83ac433041356485d9fcb2d965a
MD5 9d724abdde9ff974ea0cd4348d97e057
BLAKE2b-256 f10960cc67a1022e038bd3cafb78c2f544de3dada95d15ee89c0f0b58425f5fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4eef008c78a46a69b67a2c75ba9943c957224ca1fa27621c1463db27a077342d
MD5 254ddc2d465d593fa60e6314d4eac263
BLAKE2b-256 cd48cfb2b7203c263e1ffa5377605d9cb154245d1fc114a4f492d54ec0c73902

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1f318476f73a047e85a10899c40c6ab5f47541a40c72fd589afd81ef8ad66555
MD5 d2e8b56481e6b8d9c096afef23ba9f05
BLAKE2b-256 a00858529ca5a1f8a871964356115165c94309228736932910cf1c83983020a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b203c2098b7e6373d516bb735ceb537600ca7842d6a0d1b68828c01d5057e4d7
MD5 0dac27eaf6ace6d6d6e91e47e53d0f5a
BLAKE2b-256 0ab6a186278e56f11f8babc50f59e8c7a55aa924aac5451e01255687d751a151

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd2881c3c9436b65525230bdd0d9bf0a2927571028173b6f022b5deb99cc7e0b
MD5 3742f304caa5d00520a23fec4e3e5ccc
BLAKE2b-256 f309641e62285e201298b93ad673b08459c2ed4c1869cbdeb3fe05b228c33786

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2c2570ea68a0b735c493e8065986d7015d4ffb79cf0de90588ec97235a127e4
MD5 b3007d7581d40b017145170def0b45d6
BLAKE2b-256 d0a3f389b8e6f9fbc478ad70786a7e523205ef98d43e12f579f8aa6f9b0e49c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.1.0rc4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 179bf01f827487ee2f05bca042802b505ac1e19e565a9051fd88b5e07788d637
MD5 f36bde3d3bfd0913f9f79ae65d5bd65b
BLAKE2b-256 58cc023d0275c40d086ddf4c1063be46147afdef564e9ce7c32c3ae1f8123f3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.1.0rc4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 681d67509dd5ea3af490387b71f2995b18b34d14aae27d04ed528be450ee68a6
MD5 eecd052e4134c1e7ae267328644dc910
BLAKE2b-256 6bd2635e1404d99b8e21e9d9a8448e42fa66ffe33ce4381de4a32be25a377f78

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.1.0rc4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be13c87f30f6dbcebffd2c0ab24b43978866e346eed7a73c48a519eebd74a0bd
MD5 109a037a874b9aee4cc0f37372a063d4
BLAKE2b-256 e92a8f487cb66e3d11b142512ae6a7f3c3c2b697dd4e1f31cb85c2be2c64e534

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.1.0rc4-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 068988aea00a0d32e04c2d9646b19d2beeb8f4c91b5284e323075daa03fe1792
MD5 4f0a28ed32c9a3f3a088c9993fa41ad2
BLAKE2b-256 68ac8d61df388533198df6a0007320af4e91326667c34d0ad2a0533f5780b227

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp312-cp312-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 1355a5f5cee0f284272a3d26df5d4953b908fd809ced376871f490953042ab96
MD5 f720d6264f41b009c10ca38d161e14f7
BLAKE2b-256 ce56a54884608bcff96781ef72a24dac62aaefa357b22f81d392d6d9d172ddf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 707565bdeb5f9dff4dcebff5369f548289d063f5fa368128ba3c7ee91679fcdb
MD5 c14ad5927f67dc273660b724577aefb6
BLAKE2b-256 e1305a4ce73ed541c03c286b7606e03ab60853adba9c2524c42147d672dc127e

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8c6e31b8e150d71096ed82ab4ee2288384d5a57a7799c4cc6db3b17798a4764a
MD5 050c8a8924fa4b1b086b2064c791ae18
BLAKE2b-256 0ab5f5aac276f1e3c036a4f1143f4377bf00f32f9e273c70bfeae81bf1fe160d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp311-cp311-win32.whl.

File metadata

  • Download URL: libvalkey-4.1.0rc4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for libvalkey-4.1.0rc4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e84714d6410409549761dcd929fd32bbf391027964051b864982bbca0a7f810d
MD5 0ab1d1ce1505cca9677695d14659d12d
BLAKE2b-256 1f5384a51cb21d39790de7195c2400bd1337667a15d6a154fd63063ff1b4685b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc053478fab45c9e62918083bc48b58325f711b88cc4e74a1bb704bd84db70d5
MD5 541009a194e3d59e3260ad1924e06369
BLAKE2b-256 630da938e1b7c3613818a0651499ac220cded8148f025f804f37eeac2658f7a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4a18c67eb07ca003bd89251c205060bfb6f65a810e20c46448496f63dc7efa6a
MD5 edf5d422788b1a7d5939ab77998d89ab
BLAKE2b-256 e860ffd19a2a0a185cd91884ab70d4f5e3dbe376f9bc926c8ecf1702da689361

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 97300f8cb5c93dbb7e2e67fb8c68904d956db26ffeb9412f3b2aeb4ae4d6d6df
MD5 7f41affe2e445a6e8960aad77a89ab9c
BLAKE2b-256 b94a19d61c7825f038827171906d3bbf1f77b59622bfff7c5c996cf4a21ed96d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b333a5828b901546d80736625d34a12b98738f358a2e78db4939b673c0366a0
MD5 d03564b8b7edbd8d599b36736aff8fb8
BLAKE2b-256 b7b1111fb68b689c8e4aa0601508a2bf21a0e75eac9bd8e16fc56c6e25324c24

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d39a787310055293698c80e949eee1a5040a6679de81e8310d54b56f3a2ad74
MD5 cde544fa6aa7dcfb3c3d8db0815dc6a4
BLAKE2b-256 f840f3d77351cb2bae07c8d3d121d7bdec9f732899c180f44b86cb645314dd5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.1.0rc4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a771bcaa86d6cdd73dc3715e0eca685c18414c70b4219c79a260de69a99d1d8f
MD5 912f40b9454b99a5ddb1e8af6b0c411b
BLAKE2b-256 8017fa8ff3b7ba9d7d1486ceb4845c6705755b56123c6291c99e0e9940d4bf91

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.1.0rc4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 36e18724748e09d82d3d1e98f0e0a57ef350a7f6d48d56d8fb29932d83bf58cc
MD5 5d8151cf047a3d7dd07040e880227735
BLAKE2b-256 c89c40feca62752982c853d5536bcd5c8ae622402674a649b42bb3993add2a71

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.1.0rc4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 206ec80304963e945b3d8aa56d7f273535f6ab79e64e6925686c2ea455a1e189
MD5 10dc444e8334192089b8da656f124adb
BLAKE2b-256 0696d5a0ec360966e1a9edfe8940a6eda127bb7abf6e3ed2cb422690b37476bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.1.0rc4-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5c395982a567b8096cebeb7119ebfd7e5832ba2c24426988631b7b905782c612
MD5 ed49e27f5513c330c375ee21eb5e3956
BLAKE2b-256 37c9b2b4c64098ffc2d41890ff474c81aed6f620da53730a6fd5708b73a5591a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 5af87656b5b8fed9458d2aa20183878d0e97f9bca0171470b022966c5b3a8490
MD5 3f8004fb1051a36af11c29d4c812f0c4
BLAKE2b-256 84b8c8602961ed6f92177e1e3fe16c21b4685fde372a389c0945c26337fa4223

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2be78a014f24dbe967bb26c57630814104a51ec82416a901ae244fe3a793f9fa
MD5 65562065c7264c5982c3e6cc845ddc51
BLAKE2b-256 045ca035d2577068bbf4d7f39862edd224d9b8643b24fefb38821688a59f5534

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d308d95504de10a27b9aec3ab2bb925d1d72018c5308a44a01dde0737fb77178
MD5 b4b43632f4a7bc5bd0652c999d2d3ede
BLAKE2b-256 4c269c71be348dbce6d5cec382ef642917e5d1112a03d4b5393235ba0a97922a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp310-cp310-win32.whl.

File metadata

  • Download URL: libvalkey-4.1.0rc4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for libvalkey-4.1.0rc4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5569fd293fca4897da565f54cc1787992fcf073c6002fccc3e2193cae6977658
MD5 5d13b81155d990665167f9146aedfd51
BLAKE2b-256 97a98923e4b8defa1854417da22e257a95e3ef77e256ee5d2a06a0513af21be4

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db89232ca723a74beb2f5a3330429693bcff7820d3ddeaca20c0d6f60215f887
MD5 b8c5975faa3059eabaae974593e93910
BLAKE2b-256 65b5beef616d2cc3aa9e9f9cf490aeb0f60b790a655afb076826fee435c1cd97

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f2c450d847f3bff8b0bae8226e093fbe04bebb049a2ef8471c06e4705b007c14
MD5 e47b46bdff3ddd7f316b61df4548a299
BLAKE2b-256 da0164a50e6708c0109af94a4ee45de7215b0c5f5472d3f5a94713f53315bff2

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dbe38179f9dcbcbaed1f242cfecc4ef9c7c092a6b9f4177f26bf0dfa1c000abc
MD5 0fc7727aa8087603a4ac4ae8cce63837
BLAKE2b-256 810c95b59f64abdef4cf5d838d971a5dfbb19226e540d2738384310e39c8c460

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 755aab4317fdfeddc1b39a7059356db8b9957721e37bdcfab1fa5d7588ac9cb4
MD5 d6e3ecf8b605015356a92ce4a9a9fe68
BLAKE2b-256 cfa297161b8488dee609d1891303a72e2f0e4ab9df15bb6dba666eb10b609fca

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d973a4122594c32e620d6a28ad60bb046b7c2a57686287fc5a51a172933d49d7
MD5 4ef079baea49cca58531fe21362bc4b2
BLAKE2b-256 2c7c7cd412ca3860343213eddd1468280fbe594939979f10e9ed6a33f24b3638

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.1.0rc4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 33c8adc55b0142871b2ba6873f20e13353ee3208797a0c5005fa7c29e9d95db8
MD5 ebd1ce76c9b7370bfc996f69c77b2712
BLAKE2b-256 b95d4bee5102236c257bc795514a6003d223ced8e8f002ebc1ccad38573fa24d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.1.0rc4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c15d9c27e38c9d922aa3f684533dd9ee59e145b8cfc67272777d4b83aff9d12d
MD5 9685a2373dab2f715e80c892048e3a40
BLAKE2b-256 cc79438d01368da296299cb4f598b1819dc372a1d7f79d1acc3b43996f831d96

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.1.0rc4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d57ae07350804aff6358d6c3203a70412038550c1c768bf6149f96106547ff9
MD5 2670ac9a2a92268b6c15e5c8ddddb3cd
BLAKE2b-256 54a56645abbdfa8f95d851836404b4ac8875d026ef8fba5658eacc230a3bde0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.1.0rc4-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f6916469f68cefec81b909a8db0854671a1a6e83bc7ac8f0f14fb077016c0b5b
MD5 47082d93c5e5a68f739b2e05f823a35c
BLAKE2b-256 61c73c9c1f0d6e2142f3f0e9fe78d7d94389905b2ee3957d12f777481eb1b6f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp310-cp310-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 62e8d6790371f4909d90c48b85a6f131a2db52f032bdaf5abb14f42e265eda3b
MD5 cadc18d68c3cb0cdb340939257104632
BLAKE2b-256 6d7abbbdebeb33c307905812861c318ce3a9646b46d251ee52a24196a3ce6a63

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bb48d9f58891510763793b9ec931f72468d3a56525f9d6eea5c2e160bd585c5
MD5 6ead4a01c5062dfb1bb836ecf424cdc7
BLAKE2b-256 1d8103b4e346da4cda2ae076e0a01e142b22a1c883c2ea3a1a696435b0eac691

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: libvalkey-4.1.0rc4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 40.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for libvalkey-4.1.0rc4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 297f195c5579a4c871f2ffbabf4c58ee04905c0f45683d186a078e98fcff52d2
MD5 f5f531b8a0351ca455346defecdd00b2
BLAKE2b-256 1445ccf34a54546bda7dc622acfc5ad2fc2089bf614450e026866a4465861cea

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp39-cp39-win32.whl.

File metadata

  • Download URL: libvalkey-4.1.0rc4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for libvalkey-4.1.0rc4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c4d83e4ad5da48bd5af4f8f2e174f7d5ef5ba8bbf781bc5d659e9ad55611ea78
MD5 c41c352024dabe93aad746dcf04e23b8
BLAKE2b-256 be8ac6eb0f6911b0d54397f23c8e819540748d79046e8ac14fc12530c9a23693

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3292d98378df5481f0b4e8f33aed6f1e8cd4ee0751965c5684291264c9cfcf3f
MD5 c13664cbd21ad94e7c2643ac165f17d6
BLAKE2b-256 044024917ea66d4c5599fb61aa22af54f00360a0f4c7cff62771ad43f61ebfc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 603714d1e101d4d854558b1548393d6e75b8042c3c592808bd563f54fefe7da4
MD5 50bf2026646ce70ab248ebfbe9a3e6da
BLAKE2b-256 e4e995d7bafa881b2338a854d79fc98a547fca7331ba212ebed63657f0ba5fb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7c28e4d834495c1367c09147758a65a53151ee0f43895a5c33cf0424b882726e
MD5 1b73162499da1eebf28dd7d2ae3ff854
BLAKE2b-256 ba1a6ff314d5fd6ddcfa0ca54a825aafe7768398fd204a3c52e1876a2db1bb28

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e236f6fe135bd11436570d6a5d6e061e55e07120037ccf00c6b7ce728ff4f8e3
MD5 c6547afb6c3267b269615a1a36ee3c46
BLAKE2b-256 198967041d62010effbec2c266e6d9a8b43ecbc69e539b45d452cfc484baffc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68bfa9a4495fac402c3927b182a0ecad5fb5ac3d03a6834d0891974b02729ac4
MD5 8a11b546c8761db418c54b7c47e3337a
BLAKE2b-256 54efcf904db1f01ab3c75068341e015c53b846b6c33e8581b88498cadd078641

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.1.0rc4-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3b2cda1333a7d64b96e67740fc7c7a169abc10c85e793aff717106aae6909c77
MD5 c1376b07ee85f0c354a086e422fc54c0
BLAKE2b-256 42fe6411d84ab0579b14427fba8b609abd9e262d4c7f182843113d6eb0e9985e

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.1.0rc4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e647d0d7bb5fe7e6e09a38148c9f993a0a86388bd041b46bace2fd5fb5ed2e85
MD5 df2718f63c4e0a7028bfb7db035d443a
BLAKE2b-256 f4d2883d06e83601a6f91c7819c23833b637b356dfb73c6f6b438d283ad49afc

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.1.0rc4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3cb4a56b82508247879198aadcf69150d787cc7c43f087b5386bebb5a7812bd0
MD5 680923d37f346668f03588469caa9cbf
BLAKE2b-256 eea81729ea0e6c75f4e5047b1a2983d52c708c2fb0597a792cd2d49e82257dc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.1.0rc4-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f4f30e092e8130b2b7600813f0476c40f96a50ad5eb1c5d595b0da5477a74e89
MD5 b7be4f2e79542fe07bf640d1fa4592f2
BLAKE2b-256 425b3698d9db8250d16b6bd9a3d7e7eccff7bf597e93e99a3514fed50fbf04d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp39-cp39-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 d715c8f319fceaec17a01dbe341b47a7e2cfed4d53201822fcc989a63b5f3e2b
MD5 289bd55a2aa65a69ce13b769439500c4
BLAKE2b-256 fe52d77282c41d7fb7c1ac4aa4b3780f2838b501c51150757a0cc984615957cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.1.0rc4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0rc4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a442b3a4f932a39b0721ce7d76e8ec53227f490171113ae25bb991c8f9c64aa3
MD5 0139deefab0990694cdcf6fec3f08d6a
BLAKE2b-256 79291512c85b69cb890b943cf37e1d1bdbfd878666ac3f47c5ecd7d9f1a108e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0rc4-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.

Supported by

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