Skip to main content

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.

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.0.tar.gz (118.6 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.0-cp314-cp314t-win_amd64.whl (41.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

libvalkey-4.1.0-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.0-cp314-cp314t-musllinux_1_2_s390x.whl (189.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

libvalkey-4.1.0-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.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (198.9 kB view details)

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

libvalkey-4.1.0-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.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (189.6 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ x86-64

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

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

libvalkey-4.1.0-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.0-cp314-cp314-musllinux_1_2_s390x.whl (180.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

libvalkey-4.1.0-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.0-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.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (191.1 kB view details)

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ x86-64

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

libvalkey-4.1.0-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.0-cp313-cp313-musllinux_1_2_s390x.whl (180.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

libvalkey-4.1.0-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.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (190.0 kB view details)

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

libvalkey-4.1.0-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.0-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.0-cp313-cp313-macosx_11_0_x86_64.whl (48.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

libvalkey-4.1.0-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.0-cp312-cp312-musllinux_1_2_s390x.whl (180.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

libvalkey-4.1.0-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.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (190.8 kB view details)

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ x86-64

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

libvalkey-4.1.0-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.0-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.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (177.3 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ x86-64

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

libvalkey-4.1.0-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.0-cp310-cp310-musllinux_1_2_s390x.whl (177.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

libvalkey-4.1.0-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.0-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.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (177.5 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ x86-64

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

libvalkey-4.1.0-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.0-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.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (187.7 kB view details)

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

libvalkey-4.1.0-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.0-cp39-cp39-macosx_11_0_x86_64.whl (47.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

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

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: libvalkey-4.1.0.tar.gz
  • Upload date:
  • Size: 118.6 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.0.tar.gz
Algorithm Hash digest
SHA256 b88231e09600909723cd07949982cc7758298027d86504d948a223075f0022f4
MD5 faf2fb8e7af582c5024f8d394b40f77a
BLAKE2b-256 59d167b4c46b71039f4895fb757bcc257c301161782f353c0e3a901bec164ccf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libvalkey-4.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.14t, 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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 81b953a254674d149771c33ee7b39fefaf327e5aa410dc975fe7cd198664100f
MD5 2143bd8a3badf90bea0f4c9e5d7496a9
BLAKE2b-256 ce66718c1ee0a7888aff066d49eb7ea5ff22a2be90d996629d450cba9077b9e0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libvalkey-4.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 37.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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 56900063e752b73803eb8822801f712840f4cc534924ee4246577b3073e1ca1a
MD5 7c3eaf853ee1ff07782b2fd99a704a85
BLAKE2b-256 314879508697810b151c6b7bf6858c2284a7985082da77a40e30165c05aa2a50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da53d00b3af841baf007bf608765d285cca84fc79dd83aee1f401090d6afcf8f
MD5 6b5a94d244f66b21dfc575be6e396b58
BLAKE2b-256 84bc2b001b42927eedf5bd70fe99c4991808fc970b93d9939c05f7005536f003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 774a6482a76bfccbb81dcce2ab4e7e7e54e66de9f86a0cbddcf3b24fc94bc39c
MD5 843a40324498c2251b88da8c94dc6397
BLAKE2b-256 33bd6579a90d22fc0cc1b401dbf894ca17e94d4762bee275a7420a820689182a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 130de39ae86eaa874f3b1e25346bf0966046bcde91d4f77ecbd1efa0dbed9b9e
MD5 839d2f91dbda7ab48707a283f0e57159
BLAKE2b-256 59823478f083839901c01d7cbfde1496ae0e20d20f24cd7408cf1b8898dc987e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3864c2081fa369f3b4cdc317dd989104bced8cf4dedfd65a363c55932720ea8
MD5 ebc80fd79e8d96731e5efb73623b015b
BLAKE2b-256 caf7e20695e7ab2b905a05a21194bc5ad4e2ff9a6f7160ef86be8e5d0c405f85

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a1783cb20419ee0c7bd3d4fedb96e70607fd78f575b7d5106e558e6749cb13d9
MD5 4cf58c6513b34b0e7e6d346488cd2b12
BLAKE2b-256 8d57bc3258b67cf5560424e3a59bd140438131426fcf03974e1a0204e6f9ebf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d751b40d9515818a3a0758483a707656f77ee4fb2e5e8b44e2a7855861085a76
MD5 b11f383dd3c6fe4ff26d65d423ae462d
BLAKE2b-256 47aee70326d46d78932ce22a593b4db369725214139d57d508b3e9e4fa6e1c5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c8a4e80ecae9fab1df55f2604fa9c593d29781c7acc0555b45409418a0b594dd
MD5 5714b733c17704ed564f09ed30e0ac54
BLAKE2b-256 d8788e5047e2e53f6eefdb9da36dca6cab9b0e9601f58c631a98cc9397660f53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f619328d88bbd1db24846e4f32a726a1502f0900e388890c39e5965fa116ca62
MD5 20d5abec65c6b015cc9041f1999dc1da
BLAKE2b-256 911a78333b873156793fb2cf42b72efdc4e004cc365b4e8b8778a334b364b4b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3c928bc12a0179748170d04a99f7debfe72f6b54136d5aaafd93b1942ff15ea5
MD5 7748d0731c459663878227fe9d2ec323
BLAKE2b-256 f9c19981daf2cd284364581cd16f9d6683fcb124b5028dda22c9674cba48d893

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314t-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 c02accfe3e144d5fe17acf693d0e05ae399bb6d2f8dcefcd170a3ec36506d01b
MD5 43c7634b318308d7c7c2b17c7e120061
BLAKE2b-256 d7c40b27a858fefb7a3f2ffc19340e575a849a38fb15633a3378297c4e6657f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b0fdea23d9990311e799c664cbda9b3045ea10586d00c6aa2006b61497a5e98
MD5 e25865f5cf6d918316e08436957fc574
BLAKE2b-256 712b15579fafbfd42517a68131399121b5947948babf9071ae35dc4d2f3eff26

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libvalkey-4.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 41.6 kB
  • Tags: CPython 3.14, 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9d87fdf7ff2d03ebaf48e657bcd132752ec45a00cfcd55872c612ca1b0da72fc
MD5 35d1ebb4e7289cf7d397d315758c5e07
BLAKE2b-256 c159adf7b1043a87294e21ae878bbfd7ff13e31333b0f956c22545a994062fd5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libvalkey-4.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 36.9 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9d3edad35b9b8989795975368e91bbf4cda8a8bb9ccd111d2f9a44da07ec7535
MD5 2e48e99ea3b840b047ce3379eb0c92f7
BLAKE2b-256 a403e80152d76020ebf7b6879d76def484ea77220bf289f0263db9cb5084939b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b57fc519467e21ab961fda5d91d1cd91ce09a0f8d0f45d7c4ca4fb2f63ffc85d
MD5 3688e92ba2fcb6459a109ad10a0d8f24
BLAKE2b-256 997a6011e6afe6b8c03123368670eda9a68264bcdaa284665423fa855963eaba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8d5173b177a8a07af18f6a02f5e68bfa6c04d2b4528d206a91d34e4a80b0074a
MD5 496d6cb6753edc75207ebca644075c8b
BLAKE2b-256 3a62bbe7d78db3f21604cac37a83904e382c4f7a7e3eb5e8274ab2105c6fce99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bd7a4181faf769fa305c349ef032a2cd99d5eddaa8f7fc177aee41816980e699
MD5 2f23bd025144a91f149b1b73347413f6
BLAKE2b-256 f65fa4c16bc83036ed1332027b3496f6986af41f8db35faecc03e33d0510dffa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 439cd91eeeb1db0d2ccdc56d96fc07f6c90b8007167aaf637a9a104255183372
MD5 50963a3be133359ebc4d5461fe793c88
BLAKE2b-256 a17d713bbed83bf31fc3cc9391f5e34a2457b527fa4c830aff00408e528cbe72

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 57877d42b84583463d7a043081a577684ab066e420748e52f9c3870a0180ef6a
MD5 dee9ad03ca14a9c42fe57b0cd4a43c00
BLAKE2b-256 3eb97f823068183af28ffcfb31a7f4417c7f250cd36d8480f79b1aabbd695a53

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 49e0c493c5e5b9553ea7b8fe43fabecdb460b6949f82ee7ceed97d640dc0a890
MD5 1752e28f7835d6909ac3f1a39702d131
BLAKE2b-256 f74e48fe88e8e15787751a84a32335a0d3f105a108cae8e655524959612d920e

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a60d7030b68ba094ca47d06d4210cf13d3e25eb0f8a9973c2fa536eba67fadfc
MD5 eef2739f3a3573da6349b5ebd24f9314
BLAKE2b-256 29b1b410e477a70d21df30c44ce43e47a73e2c596f5919a5d44398908a2c53ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2ab476ac876c4bf33677c253f08419d1fd225061c9876da0aed9d44f8dd9c0b
MD5 ea6e28abb6f99bc4346f3feb4d5f10f5
BLAKE2b-256 567b2ec4a0e8b0828d16a930a971c90fab6b497b2ec498faf4ec863027b967aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 2ec4ab33d7a20a291e0ea3b62ce050708ef29146918f50f48089d7fc7e4d8d10
MD5 a92d5463030869ad5bd6aff389d83e23
BLAKE2b-256 7a07ca864b540680b160305cd64d9652697e2689ffd0e737e75037a39513582e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 f19eb6c6bd6c9968b00981832ea7ca1e88cbf1cd4221e4378e9a8023d4884c50
MD5 a8f5bfdc793386492a12291473684ba2
BLAKE2b-256 6811507cd0ec98a3a8bc3146ba4bc4bab7f5fd7695e22e819be1b00e04760a25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 505c1bfb4c4c01a48cd82a47f79be34cbec1efb28a6022b5bdaa7039c7ec48ed
MD5 40b91e59ea788ca4f75f9ec8d2972786
BLAKE2b-256 97e1cf043513064d9c8bf3961f7921fb31a993222e76f527672d308bb5f10eb7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libvalkey-4.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 40.5 kB
  • Tags: CPython 3.13, 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 36c98b4cd798285b20b4627f3b04f16de94a46f4ae17dd8957949a3c9eeedce3
MD5 dcd54b2ddcf1e144428e753d69ee0245
BLAKE2b-256 05e495237b777f79f748ab096bb5fd32fa6bdceee9942c5a620f26de5a754dd5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libvalkey-4.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 35.6 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f9cbb3f53894e59acbdcd2f24dd0266adf1055e256e516e593b78e0099df636a
MD5 0301697df2b197dda410eb29a0e87ac7
BLAKE2b-256 c629ae3c9474e3eb2125ad524ab6c90c38e695e3854abc1ca6c50a7b94fc361a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17fc0451bb4225280d420aa1b532fe58181336446dba9b8d02654bb796ba11d6
MD5 181efc6951d111577c4788d47cdf2684
BLAKE2b-256 2761eae45fc0243b5ce454f34ba88bd9b4c32a39979aa8448ba3e551c9f20230

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 179b7c3fb98d23a07bc525780211018a2113b66eec4b85f07461ed46f22fbf6a
MD5 3c36dbcc3d9976b42d1fae84ee1ca1a0
BLAKE2b-256 7d79636e647441e4775587ff19b24be1947c1685d16f534b2f493b8e2856a11f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bb34998f72b8e49b026f75f48a201d63a1e513aadc0c9dd7437f0887e48ebd0c
MD5 a5928618193325db61ee33692cd13b3d
BLAKE2b-256 10eb8c12ca1978eaa49e349efdf794bf03f71ddc707c786a84e4d07c67815b76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 567ce8bf706a34141ea6bbc29e80641544d43724ab482da09b9e09ca8d918dce
MD5 276ab45b8abcaec3cec3df8e3a038091
BLAKE2b-256 e443dc44d9fb7fb91ce2c73a0116cc4ae27274c81f280739532f8d0104f7018a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33a678a66f409fa8f64abcb8867ed4391ce54a676c3bde6af0497f16c2f4e011
MD5 54a67acbccc2ce4605d7e6487b3507c3
BLAKE2b-256 fe9e38ac3be21e43688705902107e56cae9ef837413d291541fbbbcc4d06319f

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 eee614ced5ab295e7e81776b4c69ed5ce8da5c8ff5b7386784f282e44de710fc
MD5 69e444b64337dbe551528301beaeb0f5
BLAKE2b-256 543ba826da49387e9a2fd13ffd90fea7bcec71fa82376730793b72365ce586b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 054fe3024ea412765c0b1d9edf8f771a03f27f350eb8a4bffa2d8be2e54a91b1
MD5 a90b87dc9d4d761fafb35f8e9a752034
BLAKE2b-256 899b6fc66c9e4ad11b03c8e8488e4bca9e0cd1e0a786094e5e8caddef6c8612d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99902ed0a55439702de9a14c2ebf490bdae5824c42e643536e046d71c3d8ef07
MD5 e2ad193b44b14a5be6e2eb708fd17596
BLAKE2b-256 196d979662c4428fcccb94163a539cf0133ad37d0ee6ec40412c2efd725f0b3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 49259a8bbcac205eb5bb3b03a463db9511a4b3d2461fb7c41e1717c0638be313
MD5 36074e672f74b4e6a5ac418ad46a8e68
BLAKE2b-256 9f482ad70a15cd1e2b4498b4d65bf56ee76b950d96d8b12ef8506f6d88599645

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 66d683723e5431e5f3c9343d23af698d630100fba83f903d8396f8c504c14ee4
MD5 ecc6075d0a7869bd35fc5a04e16e5da9
BLAKE2b-256 d7d720dbad0c47cad0ede34d64057a15e1b1de7eefc5a415e20aa2c6600f16a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4b7ab7d86dd55b327631b1d50167d632806adf33746ea76c777e36650542725
MD5 599d7ca0fc3ce6aa8ccee0249f1b9821
BLAKE2b-256 8151753a87b742f74cfcb16e7b8256216c42c2b6c300ef928624294dff53db79

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libvalkey-4.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 40.5 kB
  • Tags: CPython 3.12, 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1b6fcdfbb4dadba0b0de6f7d7c4493dd0e7efb8de89280efcc691a64b4787b18
MD5 0d6bc1b565485ca7577e08275f2bc266
BLAKE2b-256 d29ef62afcaee2cb3a47debd85be489782461ad58bd833da9ae0ac4082cea281

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libvalkey-4.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 35.6 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e6a59f8bdfc900c5ade28de15358ce66617778c9376b8f8163a29c7d85b3d305
MD5 58d8ad64cf0091a5dbb4843b47af3575
BLAKE2b-256 e408edc4e9a2a7e20e466f838abe5cd837e749bb4b11d3a8ad2bea826ecdc085

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69e9abe7620f51e572de92d826142531a332a103247a52a96b4e16946d4bf5dd
MD5 79fc02e594607a9d1cc2f684120ed2ea
BLAKE2b-256 b0f9b8c5b4b342098894e97cd5330d4b35b89426b4a3a262c539a3b98574016d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 46b35f154e0a05f3964969ea05b0aa09dc2c021f2895393588f421d4e2535b19
MD5 9941c485b56f4acebbc1b44507f67cc6
BLAKE2b-256 9e79b43b4130b88ccfe9da623f6233e6f5dadb45d8259ece7e37b194aef4e1b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c4c99ddd006dde1d548196bc22d8730b966a5a88bdbad6230e6e2516008154d3
MD5 d4e6208b115df1e754691f22fc4832c4
BLAKE2b-256 278a8c1154a5e4983c1a94c974c0dc48049087eef23c8303d99a08bd25b8a0a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b0d8932185b247b35891976d723443b86f4eb11736e8beb4b19f700d7d5b469
MD5 0cc44c776d28300ef00b75e04ae8f297
BLAKE2b-256 63bf53280c2241d61f1420c5e54a2d1e04e1a4614f679e6d99593cf3b8f078e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c405c99d6ace690aaa83ba493b577345bba5986148db3febd95583ba55277221
MD5 3df2486053e05f4e84f8fff34cbec008
BLAKE2b-256 3832363a9a9cb72ee8ff7a25ff668d1f2fd2dba3ff402bf6c96727cbd469a1b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ec331a988403f0d89e93994ffce3cee691ebdd15ebeb349df1fa0f7356f02917
MD5 e52bdc67519efa1421110e820334aaea
BLAKE2b-256 fbf91cd30a6e7fa3e6c6c3a89840f0298c4497433e8d34cec0a1117462fd13e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 07f206c31eb4f85bfff3c28bf382a68425424276ac36d15d2330a27fd8ad8a33
MD5 e7d99d5434d51f693999b778062e368b
BLAKE2b-256 ff2c2041fd009e09808a8a03bd5e29a2ac322d1813e67cce59dba6256b64fa4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce2af0c32d024d0ac4a60bbec9df43c4b3d460fe7f579ac56e6c4e13559aae60
MD5 0e96a71e0fe3f4f4bbffcec433d544dd
BLAKE2b-256 584174b99d22e955f18ab9c5ac0e86ea6e862ee729989fca04b99bdc144067ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6ae4f34a5e97e7bcdd4b72abe4a2b1035a34d652b3de679d6642958f221b4175
MD5 35c1ec3268a97fe7db8e9a6122f7318d
BLAKE2b-256 a5013ec94f681a4e0ef73c7a76f43f4102df8a8828d25d76d0b5d6accd579ca1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 f78c5fb7177cb59a8387248d9c2c0491f4ca7c63d031579b424c3f329d8ea316
MD5 0890f1ba3a2302a0e45c3d063ae8a868
BLAKE2b-256 74c71a48890ba0d039260fcd1b634ea778a9c9d26925423872b7c93d486a1eea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ba2783443465e8b025f6356eff48bc5b80c869da4a6ad9fe10a46d58763be8d
MD5 2f66407bef4c113ee6b4a17603e328a6
BLAKE2b-256 1c1010451150b8b61cddc9909ab721d67b4c0a9bacd89161ad2bbf97f2e7cbeb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libvalkey-4.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: CPython 3.11, 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a4d4b6ed1d64f0515d1955e8896c8b75ecaacdd80119c613f17c8ec9ab9564c2
MD5 e662f490abb63f74619c7663c7fa76a7
BLAKE2b-256 28349f5e0c91e73e23204b9b7d63aa842e2af17f4c0454b903a2b04c99662d1a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libvalkey-4.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 35.4 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 612effad1f7372ab629a16b50626fc898c6a049155e949de7cd74ae244ddad11
MD5 0a41b3807073656d350de53e5d690b02
BLAKE2b-256 4f6be0bd79a8fa74736c49b78ab44ec74cf99d1b726a7ebbf4d174cbc45a0693

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd2cfc10e71d5a9181a54617d20fcf113e2741e27898986d0a99e9e9f8c8bd34
MD5 101ed9de856948e67c7c54df5fab6be6
BLAKE2b-256 6a8ffcb0bf96adb386f2e82647bce8e05e9e7f2aac182e0be4437688777636d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d51a28106cabee1628f38b9cc5f69f620a64fe4e192b11ac11c328ce295cee46
MD5 70561a94472fad7816f9925c88b908ea
BLAKE2b-256 47efdb601cdb6e776fa0b077f1fc45303b441b4504425bd2f2a64ff5f0302537

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ffa30a15519d1ab1565db7ce2361f643bb38a2608743ab09238cafe2c86e2c1b
MD5 8cab59bac976e3e3bab1fd2aede266c5
BLAKE2b-256 7b332db3189391166aa0eede0d87628fe75699400d9872e1ac5f0c85e0f2e01a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 950067c360bf9116dedfe98f09abb557bd86011d9a6b435255ed5f12dcdc6695
MD5 e73da4ac0a6071627c757760b2cfee29
BLAKE2b-256 6ef6eff41429402f8305b100475698a51803708d782a6ae001fdaa38a05e4311

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b362b2498c8f9da2193cc50722621ceee0a96a766fa027a6626d17c50ec7027
MD5 9fddacd57b61c8a4d8819ceec53c57c5
BLAKE2b-256 6df608e3899c82bcd2f51810e2155ee17be958a78a468e5b1697084a630636dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ca75d310133a56507d3913fe973aa9da6b08b0aea6be05f021e95434c7c26309
MD5 d1ec8c7159399fcbe76a09c0e6fdeacc
BLAKE2b-256 4637c3deb150bd323a6880f552162b05a38452fa625ee4f5cdaa40f4ad3c239a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2717028c0340ddb410a5cfa6576455a309f33be70cb91e9d8eb17758ec31f6be
MD5 d75168b523aa2c99d416ce8cef05c661
BLAKE2b-256 7e661d7fcc18afaa05934c1ffeda092ae7d8f11efd9f70967a19abd446c6fb2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e5794830dbbad3472df441776b4106d3ce8c56aef8e5624fdf395924f80ef88
MD5 d61afb17515fb3f02a379da7e29f1cd7
BLAKE2b-256 3259684df988ecb8ba9dc145e194b4dbb229e6b6544eb837c7935e917b1c1d95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6169de7163705824874e7073cce81cd204b4230a8368ca78227db1653ae7f182
MD5 d7ec1075d7691aee480c7c036e065ceb
BLAKE2b-256 1011dc8029b1c836767b1528ef751c7a4a0bf3cf39c9355fc7559ffdd89de3de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 3af97968ce0020b45144f980d7ae17e913f5da6f59b6e08263521357481c006c
MD5 d27551720e95583bd64bfc7d83c25979
BLAKE2b-256 7f17348afee56fdbf8c065be076f40f4b4aef938f2e5b65e7cfc9759d2b76816

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef2fd872635a0ee9442de51219dfe60578178101e6583d756c9043e5afb19422
MD5 f77ee6e4555f4ea0460eb9c3af86ca3d
BLAKE2b-256 f753093d5a868391558eeb57be6934e75e661d4c415855b952a279b632fa5932

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libvalkey-4.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: CPython 3.10, 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6c313516769c0f21ccd21e14afb4a44aa1b33bdfe6772d9c431bc4dfe3c6b7e5
MD5 ce60eea57224b8adf6874883d61c12a2
BLAKE2b-256 d30c2ae3ee1b7d6d2b70524eca5f3ca46a72b1378ee959312630dc2915420cf1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libvalkey-4.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 35.4 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4b348a17cbd0200de6e99bfe8bc1b56d102c7c16c8486de3a559ddfc5faf8dac
MD5 ac53f034e941e6b60384ddbaf44076bf
BLAKE2b-256 25e35986b81adb963fa24d8d9365f6b8502b9ceda3402a697888ef11950b2088

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef6f6c3edcd014b006cc6f15868adacc728291c12d38a09c8ec4fe1ac83f0e3a
MD5 2e09383d6d4f1aab89721718a00ee794
BLAKE2b-256 e6f46841b1f33b357a5909d82e3368c09b432b512f837334b2899a16401eed7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fd0f6176e30137c96fb2a5d2908577d56e855f869ac43446e52409f9d38a0943
MD5 4b913d1249ca89856cccb0959d861075
BLAKE2b-256 f1d62724ed818a31889ce45b3af2b5cb15239d5e786f1871f994bc3905bd1b9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3cee71a6069094e561c5583f9e6e104d8db590f70af3d22180eaa7faace64edb
MD5 fd1b71261cdb61f084e14c4d7da0dfe3
BLAKE2b-256 03bbd40faab193a8229536e5ed767b2b73238bee690519d20212a30444728c59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c84396aa9c393ae90fa4beb148dac79ccb4ceca250c24faa468e130e8bbd3de
MD5 f0bacf3d2b5e75a965460f042e5a4bb6
BLAKE2b-256 acc1be3c2aa1d6edea6027eb6b31859c02e27d3d51d274a802cd01ec944347c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02aa894d27c93e121e15c0af77dfddadb578a4210d8dcaab3749e23a724bee7e
MD5 307cfd906e26c34af1f6cc928a97f583
BLAKE2b-256 532f395a0321b2e3ec99953c7358e9b33bfe2c4c203a76400e060293b534e250

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1baa41721d05e436f35b3480666d4bf5b44e6e958748ffe966f7820c5ef5e51f
MD5 d1fab3b474a1efea8ff272d487ed1780
BLAKE2b-256 ab781d06fc821279fbea8c1e70a912d7d9847af57033b0aa44f13223514b4a60

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 976e99e7ce80907cc8bc95f59614f2c98dd4ac53cc7ba6edf585aee9c1f185cd
MD5 22c0ca40cb34f28b186c3bd24623ea41
BLAKE2b-256 4f5c1f051efc74e4ccc220f6c9f174b8cdfcabd7875f64adda8593384fd635e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84f0e28e3ad1469ac6619874d525bce4af5b8129190992fceee645071e4d6fd2
MD5 bfa07e1a8a0b0585aa1502daa73c5ddf
BLAKE2b-256 f22d5aa4e52c5386e641e44eecbab7755de4209f22867cf3bc3a883e0c7f7901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 55a41035de8b21c9f7b94d1bca09080213e9691eb55738baa722f96e66d932ef
MD5 f5443b1f1d142cdbb64baec4feb86dbf
BLAKE2b-256 69f5c28c93930bb753f059863c54bed8f122f9ab202e35dcc6fbdeef18ff124b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 ebc80b361744800c241603c35b31f412f6c2e78ee9282bb5842b07d1e8aa794f
MD5 a01ae2592724fcee5d7f41e3fbf15162
BLAKE2b-256 023e9b2fefe489f185b368e6250294df4913933cd55dbab9eab1665f2d246190

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 332a54420a9ca2f329a86aee8b5a2ade30db1b7201fbe8b4f9ea3c060470b1d3
MD5 f433b164f946395e2e523d300f0229c0
BLAKE2b-256 566434213df07741dc16e51ec413247831f3802b203d6d46fa4454c609360ccd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libvalkey-4.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 40.4 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 525a0ae34a9528e18f7c152f12452ea13a71b7ce2adfee75ec1bba903131c79a
MD5 c26f15ab79956b85414a4a53320af85d
BLAKE2b-256 b99798ab964c732951e80cdce33b195e50e74aa96ff3cadcbb2ca156ce0f9139

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libvalkey-4.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 35.4 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3e05115cbd4a2e04638cefaf9fba28438afd00794b030ae8aeac1e2c6b8e007c
MD5 85932a56eb2e051c9f86049924877ddb
BLAKE2b-256 bd232da561e6f5d38b8925a8a372e07dbc3bb6b894c67e4e6d2f6196396d0455

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca14d82fcdb239713d99a7e482276c9564ad8ae29bfdaf2c4077ff6a369095cb
MD5 640eca828404f131fd5ec2edb1992f0d
BLAKE2b-256 1d902b41944a41716e08a77a44ec8cce9118cebdaa5194d30e9ac242245b66a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 33798898f2e38488d7472acb574ab2feb04b39724e5b3c885e881d57b14bc9a0
MD5 86bb33fa4b8e27b36f1289f40d7a04ee
BLAKE2b-256 a85fd1a68de8634d5852725e48aaa6d2db18ffaa3bb0047ca2028702aa2228fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d1f19d852d64964ccd09aadcdd2e4368eabbeefe6a3435dc1a4698c8125ecc82
MD5 cf16fd4d3d15365025aebb16a394d163
BLAKE2b-256 396455f6698e265eec2974076949fc92402b743a88a6bf9456b4865e07a0da0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0503a8975337d0f1d46905c48368578fc170baa238be5cd91acb9718619ce824
MD5 0644be66b04908ed72b51a915b957953
BLAKE2b-256 f14993be6e51f29c3b2d7ddf0ea186c134f77f36bb0eac56c942847bcf443f8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfea2f4871c1dd38a3d4c7fda3f84ddbb054363fec1920622c890e326f16853e
MD5 8a84e781e72db72456652b931310cf08
BLAKE2b-256 4fc1b6c2342bede2829f9177fe199ddbf279eaffc5d190aec2cb5a377a91635f

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c63d5eae2698423530306cb39550daba9a7b5b7d1fed75b545bfea529c4d262b
MD5 6894349c78a2a90b9835a65e22e23a1e
BLAKE2b-256 8fdb4ad3c6c807ea9e4fce5d91eb853ca7d0f27298a4fe8f0dd02e9f2bd8f35d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ccd053ea42acd66a374077f5415668a257bd35e0366c8e2ab68fac881b687fb1
MD5 da4f35f758411e786c7e5ff47468a225
BLAKE2b-256 f21038c2fb506e8cdb5281433a194d475d9c22345a39a7d7a1ca64e27decdeb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e45466dc6e6972dab2ffcbda06374d195aba9e1b4fe322deae35a43fc85689c2
MD5 7aa8d58936351000a7ddf5d57258f9ec
BLAKE2b-256 21cf283361d355ad7165d381e5d1af9cb9a607428b507c309e562b2f6f1191d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d01dbe4440ce8a2257a22468466c1263d73ab839d185d33b023880fc927984d0
MD5 90cbd9e1a210d140e1518c764c1eb6f4
BLAKE2b-256 087da3fc5a8592c29992a7d3e7141696bfb8262e4a91d83d323778058930a744

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 9bff3de13605d3e101e74b5f0a2085d148cc70dbb9297d714c388695186f53b9
MD5 d482bab404645128caa315cf4420eceb
BLAKE2b-256 f4b3119301e8464859df371087a3353c3eb6e06f59541eaba8694018ecee15a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libvalkey-4.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b16cc8598326540e0f5193b75b4913e4dfe5eda79f4f433c62a46927071f146a
MD5 19dccad01ae095b28a38093fff081c65
BLAKE2b-256 b48ee9e29bb4b180256d1001ce05b937c2ab5ee046db0a0f147e9fbf7a6f8a1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libvalkey-4.1.0-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 Sentry Error logging StatusPage Status page