# libvalkey-py
[](https://github.com/valkey-io/libvalkey-py/actions/workflows/integration.yaml)
[](https://opensource.org/licenses/BSD-3-Clause)
[](https://pypi.org/project/libvalkey/)
Python extension that wraps protocol parsing code in [libvalkey][libvalkey].
It primarily speeds up parsing of multi bulk replies.
[libvalkey]: http://github.com/valkey-io/libvalkey
## Install
libvalkey-py is available on [PyPI](https://pypi.org/project/libvalkey/), and can be installed via:
```bash
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.
```bash
git clone --recurse-submodules https://github.com/valkey-io/libvalkey-py
python setup.py build_ext --inplace
python -m pytest
```
### Requirements
libvalkey-py requires **Python 3.8+**.
Make sure Python development headers are available when installing libvalkey-py.
On Ubuntu/Debian systems, install them with `apt-get install python3-dev`.
## Usage
The `libvalkey` module contains the `Reader` class. This class is responsible for
parsing replies from the stream of data that is read from a Redis connection.
It does not contain functionality to handle I/O.
### Reply parser
The `Reader` class has two methods that are used when parsing replies from a
stream of data. `Reader.feed` takes a string argument that is appended to the
internal buffer. `Reader.gets` reads this buffer and returns a reply when the
buffer contains a full reply. If a single call to `feed` contains multiple
replies, `gets` should be called multiple times to extract all replies.
Example:
```python
>>> 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:
```python
>>> 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:
```python
>>> reader = libvalkey.Reader(encoding="utf-8", errors="strict")
>>> reader.feed(b"$3\r\n\xe2\x98\x83\r\n")
>>> reader.gets()
'☃'
```
Decoding of bulk data will be attempted using the specified encoding and
error handler. If the error handler is `'strict'` (the default), a
`UnicodeDecodeError` is raised when data cannot be dedcoded. This is identical
to Python's default behavior. Other valid values to `errors` include
`'replace'`, `'ignore'`, and `'backslashreplace'`. More information on the
behavior of these error handlers can be found
[here](https://docs.python.org/3/howto/unicode.html#the-string-type).
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](http://gevent.org/) 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.
Raw data
{
"_id": null,
"home_page": "https://github.com/valkey-io/libvalkey-py",
"name": "libvalkey",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "Valkey",
"author": "libvalkey-py authors",
"author_email": "libvalkey-py@lists.valkey.io",
"download_url": "https://files.pythonhosted.org/packages/38/49/57857ba9d02ba4df3bc1e71044f599c82ea590e928328e6b512dbf720228/libvalkey-4.0.1.tar.gz",
"platform": null,
"description": "# libvalkey-py\n\n[](https://github.com/valkey-io/libvalkey-py/actions/workflows/integration.yaml)\n[](https://opensource.org/licenses/BSD-3-Clause)\n[](https://pypi.org/project/libvalkey/)\n\nPython extension that wraps protocol parsing code in [libvalkey][libvalkey].\nIt primarily speeds up parsing of multi bulk replies.\n\n[libvalkey]: http://github.com/valkey-io/libvalkey\n\n## Install\n\nlibvalkey-py is available on [PyPI](https://pypi.org/project/libvalkey/), and can be installed via:\n\n```bash\npip install libvalkey\n```\n## Building and Testing\n\nBuilding 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.\n\n```bash\ngit clone --recurse-submodules https://github.com/valkey-io/libvalkey-py\npython setup.py build_ext --inplace\npython -m pytest\n```\n\n### Requirements\n\nlibvalkey-py requires **Python 3.8+**.\n\nMake sure Python development headers are available when installing libvalkey-py.\nOn Ubuntu/Debian systems, install them with `apt-get install python3-dev`.\n\n## Usage\n\nThe `libvalkey` module contains the `Reader` class. This class is responsible for\nparsing replies from the stream of data that is read from a Redis connection.\nIt does not contain functionality to handle I/O.\n\n### Reply parser\n\nThe `Reader` class has two methods that are used when parsing replies from a\nstream of data. `Reader.feed` takes a string argument that is appended to the\ninternal buffer. `Reader.gets` reads this buffer and returns a reply when the\nbuffer contains a full reply. If a single call to `feed` contains multiple\nreplies, `gets` should be called multiple times to extract all replies.\n\nExample:\n\n```python\n>>> reader = libvalkey.Reader()\n>>> reader.feed(\"$5\\r\\nhello\\r\\n\")\n>>> reader.gets()\nb'hello'\n```\n\nWhen the buffer does not contain a full reply, `gets` returns `False`.\nThis means extra data is needed and `feed` should be called again before calling\n`gets` again. Alternatively you could provide custom sentinel object via parameter,\nwhich is useful for RESP3 protocol where native boolean types are supported:\n\nExample:\n\n```python\n>>> reader.feed(\"*2\\r\\n$5\\r\\nhello\\r\\n\")\n>>> reader.gets()\nFalse\n>>> reader.feed(\"$5\\r\\nworld\\r\\n\")\n>>> reader.gets()\n[b'hello', b'world']\n>>> reader = libvalkey.Reader(notEnoughData=Ellipsis)\n>>> reader.gets()\nEllipsis\n```\n\n#### Unicode\n\n`libvalkey.Reader` is able to decode bulk data to any encoding Python supports.\nTo do so, specify the encoding you want to use for decoding replies when\ninitializing it:\n\n```python\n>>> reader = libvalkey.Reader(encoding=\"utf-8\", errors=\"strict\")\n>>> reader.feed(b\"$3\\r\\n\\xe2\\x98\\x83\\r\\n\")\n>>> reader.gets()\n'\u2603'\n```\n\nDecoding of bulk data will be attempted using the specified encoding and\nerror handler. If the error handler is `'strict'` (the default), a\n`UnicodeDecodeError` is raised when data cannot be dedcoded. This is identical\nto Python's default behavior. Other valid values to `errors` include\n`'replace'`, `'ignore'`, and `'backslashreplace'`. More information on the\nbehavior of these error handlers can be found\n[here](https://docs.python.org/3/howto/unicode.html#the-string-type).\n\n\nWhen the specified encoding cannot be found, a `LookupError` will be raised\nwhen calling `gets` for the first reply with bulk data.\n\n#### Error handling\n\nWhen a protocol error occurs (because of multiple threads using the same\nsocket, or some other condition that causes a corrupt stream), the error\n`libvalkey.ProtocolError` is raised. Because the buffer is read in a lazy\nfashion, it will only be raised when `gets` is called and the first reply in\nthe buffer contains an error. There is no way to recover from a faulty protocol\nstate, so when this happens, the I/O code feeding data to `Reader` should\nprobably reconnect.\n\nThe server can reply with error replies (`-ERR ...`). For these replies, the\ncustom error class `libvalkey.ReplyError` is returned, **but not raised**.\n\nWhen other error types should be used (so existing code doesn't have to change\nits `except` clauses), `Reader` can be initialized with the `protocolError` and\n`replyError` keywords. These keywords should contain a *class* that is a\nsubclass of `Exception`. When not provided, `Reader` will use the default\nerror types.\n\n## Benchmarks\n\nThe repository contains a benchmarking script in the `benchmark` directory,\nwhich uses [gevent](http://gevent.org/) to have non-blocking I/O and valkey-py\nto handle connections. These benchmarks are done with a patched version of\nvalkey-py that uses libvalkey-py when it is available.\n\nAll benchmarks are done with 10 concurrent connections.\n\n* SET key value + GET key\n * valkey-py: 11.76 Kops\n * valkey-py *with* libvalkey-py: 13.40 Kops\n * improvement: **1.1x**\n\nList entries in the following tests are 5 bytes.\n\n* LRANGE list 0 **9**:\n * valkey-py: 4.78 Kops\n * valkey-py *with* libvalkey-py: 12.94 Kops\n * improvement: **2.7x**\n* LRANGE list 0 **99**:\n * valkey-py: 0.73 Kops\n * valkey-py *with* libvalkey-py: 11.90 Kops\n * improvement: **16.3x**\n* LRANGE list 0 **999**:\n * valkey-py: 0.07 Kops\n * valkey-py *with* libvalkey-py: 5.83 Kops\n * improvement: **83.2x**\n\nThroughput improvement for simple SET/GET is minimal, but the larger multi bulk replies\nget, the larger the performance improvement is.\n\n## License\n\nThis code is released under the BSD license, as the license of hiredis-py at\nthe time of fork.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Python wrapper for libvalkey",
"version": "4.0.1",
"project_urls": {
"Changes": "https://github.com/valkey-io/libvalkey-py/releases",
"Homepage": "https://github.com/valkey-io/libvalkey-py",
"Issue tracker": "https://github.com/valkey-io/libvalkey-py/issues"
},
"split_keywords": [
"valkey"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "17acc7b21f810c17527f77c8bd4145e21568a95a4eccc32bce8df4c5ba5d8863",
"md5": "5d31b921fa10cc8263bbbc951b459e2d",
"sha256": "9e180a893ac62e340a63e18c6dcc91fc756c9f2291b47b35ee1febec68c6d13c"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5d31b921fa10cc8263bbbc951b459e2d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 43044,
"upload_time": "2024-11-26T14:32:50",
"upload_time_iso_8601": "2024-11-26T14:32:50.692944Z",
"url": "https://files.pythonhosted.org/packages/17/ac/c7b21f810c17527f77c8bd4145e21568a95a4eccc32bce8df4c5ba5d8863/libvalkey-4.0.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e96784c88cf0e8df1d68da9a2e7f6a79e818031a7ced1b70d66c60041e8dd7b5",
"md5": "0b423e7bf3dc8b460aa5710fc436f7fb",
"sha256": "f51c08cae774071ea354658f9a9bb7ffb7b1743661011a28668650b130e0d063"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-macosx_11_0_universal2.whl",
"has_sig": false,
"md5_digest": "0b423e7bf3dc8b460aa5710fc436f7fb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 82094,
"upload_time": "2024-11-26T14:32:52",
"upload_time_iso_8601": "2024-11-26T14:32:52.855590Z",
"url": "https://files.pythonhosted.org/packages/e9/67/84c88cf0e8df1d68da9a2e7f6a79e818031a7ced1b70d66c60041e8dd7b5/libvalkey-4.0.1-cp310-cp310-macosx_11_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7ab34a7bf5a0275674cb17e0204c05e16356c94406256d811317e6ba87e1f234",
"md5": "e6f96e94891dce56e08c8ada570355c9",
"sha256": "98a37d1cb5f4c3dde6646968b0a624d3051fd99176583a5245641050e931a682"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "e6f96e94891dce56e08c8ada570355c9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 44753,
"upload_time": "2024-11-26T14:32:54",
"upload_time_iso_8601": "2024-11-26T14:32:54.355199Z",
"url": "https://files.pythonhosted.org/packages/7a/b3/4a7bf5a0275674cb17e0204c05e16356c94406256d811317e6ba87e1f234/libvalkey-4.0.1-cp310-cp310-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "252faee00783de3ad3fbbadca23692f854f4b9f4b545c55db19657a4330e1bb4",
"md5": "4e43a0ebcafbad46e583496cbbc74dc4",
"sha256": "01c4051c3b772bd3032ca66c96f229412622ef0bef344f9ad645221f56082573"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4e43a0ebcafbad46e583496cbbc74dc4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 170126,
"upload_time": "2024-11-26T14:32:55",
"upload_time_iso_8601": "2024-11-26T14:32:55.608891Z",
"url": "https://files.pythonhosted.org/packages/25/2f/aee00783de3ad3fbbadca23692f854f4b9f4b545c55db19657a4330e1bb4/libvalkey-4.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1d56c8f80d3fa881cf79d20b537dcbc3ab5c8776db51cfa50b2a04a3191d027d",
"md5": "6252b2b449b141705ad772ab022a394b",
"sha256": "cf424fe1f45462ae4fea5f88b250ae86d7217a9662cfe5cd8a25208268129833"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6252b2b449b141705ad772ab022a394b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 165552,
"upload_time": "2024-11-26T14:32:56",
"upload_time_iso_8601": "2024-11-26T14:32:56.936604Z",
"url": "https://files.pythonhosted.org/packages/1d/56/c8f80d3fa881cf79d20b537dcbc3ab5c8776db51cfa50b2a04a3191d027d/libvalkey-4.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f10ce697bc18740d95dd0a3104404a0fbaaf4f1d463ac6b7ed2f6fc0c8be4b6a",
"md5": "2ffe47c9ed302641501e3bb9b3fb6a51",
"sha256": "ea9bdd8fc54de6ceea9e28dc28b327a443423dd1d110bb9fa1d67f02626a8679"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2ffe47c9ed302641501e3bb9b3fb6a51",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 181753,
"upload_time": "2024-11-26T14:32:58",
"upload_time_iso_8601": "2024-11-26T14:32:58.239510Z",
"url": "https://files.pythonhosted.org/packages/f1/0c/e697bc18740d95dd0a3104404a0fbaaf4f1d463ac6b7ed2f6fc0c8be4b6a/libvalkey-4.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07f649e0b1eb0cc9aee67d711386cbda604ea67752d17d9f94b62ea9866716af",
"md5": "46519b95500c11d6d75d885223369b9d",
"sha256": "641eed2e36408b8ba553c4606b2cfbee05286183249c76841188897d595c6639"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "46519b95500c11d6d75d885223369b9d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 170657,
"upload_time": "2024-11-26T14:32:59",
"upload_time_iso_8601": "2024-11-26T14:32:59.516063Z",
"url": "https://files.pythonhosted.org/packages/07/f6/49e0b1eb0cc9aee67d711386cbda604ea67752d17d9f94b62ea9866716af/libvalkey-4.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b407205b2e63936f880d0ff8cc7cc27059aa698a0d4f02dc9194854eadce985c",
"md5": "236a057be00126d2837127a383f2931b",
"sha256": "dbf76b1b51bd5fe23dd09d0b7599cf6ee7a074e73a1933910e5faa1741408708"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "236a057be00126d2837127a383f2931b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 170331,
"upload_time": "2024-11-26T14:33:00",
"upload_time_iso_8601": "2024-11-26T14:33:00.879539Z",
"url": "https://files.pythonhosted.org/packages/b4/07/205b2e63936f880d0ff8cc7cc27059aa698a0d4f02dc9194854eadce985c/libvalkey-4.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "359331734676641cb36a3ac23ffedc89b328a63a2f00eba80fc0554e2dd93872",
"md5": "f330686a5455e42ae758916e2d4c4ece",
"sha256": "75918faf78b2728ef8a73438361c328d70757cdb0e8bf57fa636e0776f302d4e"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f330686a5455e42ae758916e2d4c4ece",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 164756,
"upload_time": "2024-11-26T14:33:03",
"upload_time_iso_8601": "2024-11-26T14:33:03.974366Z",
"url": "https://files.pythonhosted.org/packages/35/93/31734676641cb36a3ac23ffedc89b328a63a2f00eba80fc0554e2dd93872/libvalkey-4.0.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b7fd1f8476e45792c1bd6bb364e7f04c0274caa37767d4ed12658b1d863874cf",
"md5": "1bde3c0b02b979ffea8c77dc07190783",
"sha256": "aa678090591e1c28a5f0647ce69531752e8f75e83a03e8963500941475898ccf"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1bde3c0b02b979ffea8c77dc07190783",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 162825,
"upload_time": "2024-11-26T14:33:05",
"upload_time_iso_8601": "2024-11-26T14:33:05.273275Z",
"url": "https://files.pythonhosted.org/packages/b7/fd/1f8476e45792c1bd6bb364e7f04c0274caa37767d4ed12658b1d863874cf/libvalkey-4.0.1-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2303c293870a74b88d8ce2c5fed2a049eb2ec2373e29ccd3eb3df32217746e00",
"md5": "8b5f0ac4618012825b3d7b517fa0cb92",
"sha256": "a1eff0939e0577ddc6b8b359a846c0a83cb7ed3b0688fe98f8f8cf3ba8aa04b7"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "8b5f0ac4618012825b3d7b517fa0cb92",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 176181,
"upload_time": "2024-11-26T14:33:06",
"upload_time_iso_8601": "2024-11-26T14:33:06.637397Z",
"url": "https://files.pythonhosted.org/packages/23/03/c293870a74b88d8ce2c5fed2a049eb2ec2373e29ccd3eb3df32217746e00/libvalkey-4.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6eb08624fa9195c4af93044860c9685b7667c1b7dd9bff6b62f815e65a512f24",
"md5": "6b6565ba82004152af3045d48999111e",
"sha256": "b3ac608744fc2727eb87cdd7613f8d64b18a210b1661706d2b2de09fffd3d2d0"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "6b6565ba82004152af3045d48999111e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 167755,
"upload_time": "2024-11-26T14:33:08",
"upload_time_iso_8601": "2024-11-26T14:33:08.033433Z",
"url": "https://files.pythonhosted.org/packages/6e/b0/8624fa9195c4af93044860c9685b7667c1b7dd9bff6b62f815e65a512f24/libvalkey-4.0.1-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f66674f722d90e37addf2b1235ce8294d50751c1a406a7dd05e7b4893f474daa",
"md5": "61f5e56dc32fb55105c459611bd9f6fa",
"sha256": "e8801cf0274b2a6b0d19ea47de351e5ce67579b8503c4f9905ab53b52fbf270e"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "61f5e56dc32fb55105c459611bd9f6fa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 165462,
"upload_time": "2024-11-26T14:33:10",
"upload_time_iso_8601": "2024-11-26T14:33:10.035679Z",
"url": "https://files.pythonhosted.org/packages/f6/66/74f722d90e37addf2b1235ce8294d50751c1a406a7dd05e7b4893f474daa/libvalkey-4.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18a116512251a897ad7022787ae395c2ecaf48449f7fce170d6656c5a27df795",
"md5": "7cc8666464a53d8489dcf55da4cf7bf2",
"sha256": "a9438415f500c1b65fe258f102b004ef690db142a74d681d10fd82e344dc947f"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "7cc8666464a53d8489dcf55da4cf7bf2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 19468,
"upload_time": "2024-11-26T14:33:11",
"upload_time_iso_8601": "2024-11-26T14:33:11.446819Z",
"url": "https://files.pythonhosted.org/packages/18/a1/16512251a897ad7022787ae395c2ecaf48449f7fce170d6656c5a27df795/libvalkey-4.0.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ba87819672c42b470c67a994db05dd876b88ad97d5e4ae3152a7e49172b0b1b",
"md5": "701f1e5da7a92b361968a9663a13d5bd",
"sha256": "cd3495a5c4c7f04c26bd5c34feb15c13da2dab5a349756a3f42f2a15521a5197"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "701f1e5da7a92b361968a9663a13d5bd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 21354,
"upload_time": "2024-11-26T14:33:12",
"upload_time_iso_8601": "2024-11-26T14:33:12.635585Z",
"url": "https://files.pythonhosted.org/packages/5b/a8/7819672c42b470c67a994db05dd876b88ad97d5e4ae3152a7e49172b0b1b/libvalkey-4.0.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c47ad7e4726c9a08c703fd4e824c7c644ae6c5f0ee3f1b99474a524f0149b77f",
"md5": "27d78075abdff313c8104c74ca4c8b8f",
"sha256": "f342da7200765da30e8a6a540722a8e9e689b0b0604e067290d308981d93826f"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "27d78075abdff313c8104c74ca4c8b8f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 43043,
"upload_time": "2024-11-26T14:33:13",
"upload_time_iso_8601": "2024-11-26T14:33:13.780416Z",
"url": "https://files.pythonhosted.org/packages/c4/7a/d7e4726c9a08c703fd4e824c7c644ae6c5f0ee3f1b99474a524f0149b77f/libvalkey-4.0.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "27ae30ba1da48e143da9c1fa0e4cf4899bbd4402b0a0c8f6c355aa76e89b6490",
"md5": "2e94a498f08ff4e2f793d2fc22359e3d",
"sha256": "0db70261f8843007ea995f7adf0d619780380ac3abc4c1ac44ad4f3e885d5594"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-macosx_11_0_universal2.whl",
"has_sig": false,
"md5_digest": "2e94a498f08ff4e2f793d2fc22359e3d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 82093,
"upload_time": "2024-11-26T14:33:15",
"upload_time_iso_8601": "2024-11-26T14:33:15.517561Z",
"url": "https://files.pythonhosted.org/packages/27/ae/30ba1da48e143da9c1fa0e4cf4899bbd4402b0a0c8f6c355aa76e89b6490/libvalkey-4.0.1-cp311-cp311-macosx_11_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "84da1c2b524ad44a7c24d7e62bb63d995bb8e59863c0f88844778c109604f83f",
"md5": "b2e7ae813a26cf5bfea49535b60e89ff",
"sha256": "785c73ba7177777d9af01f48aa3344099815cdae3fef12c5d0f35b9b392f35bf"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "b2e7ae813a26cf5bfea49535b60e89ff",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 44754,
"upload_time": "2024-11-26T14:33:16",
"upload_time_iso_8601": "2024-11-26T14:33:16.656158Z",
"url": "https://files.pythonhosted.org/packages/84/da/1c2b524ad44a7c24d7e62bb63d995bb8e59863c0f88844778c109604f83f/libvalkey-4.0.1-cp311-cp311-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f71f954f1ac80371dc50efaada4ca133219e2edb265c136c7fa2af1821caf5b2",
"md5": "12bd921408d97b432b65be376459d8a9",
"sha256": "5d56ed4c6c17bfb65bf4fe0745fdb3ae6bd1111af6171294497173e3a45226d7"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "12bd921408d97b432b65be376459d8a9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 170152,
"upload_time": "2024-11-26T14:33:17",
"upload_time_iso_8601": "2024-11-26T14:33:17.841480Z",
"url": "https://files.pythonhosted.org/packages/f7/1f/954f1ac80371dc50efaada4ca133219e2edb265c136c7fa2af1821caf5b2/libvalkey-4.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cf3f1fbe055702041bcf2a85e056955219102e8b0aa3967482a5d68f7a3bb8c8",
"md5": "31caddeb29e91629e683017f2deb342c",
"sha256": "d99b4adae993b9d8f057e150e5a2f938823d17286abcbc5cca0cb4741c530ddf"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "31caddeb29e91629e683017f2deb342c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 165334,
"upload_time": "2024-11-26T14:33:19",
"upload_time_iso_8601": "2024-11-26T14:33:19.504098Z",
"url": "https://files.pythonhosted.org/packages/cf/3f/1fbe055702041bcf2a85e056955219102e8b0aa3967482a5d68f7a3bb8c8/libvalkey-4.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "49adef273ef578fbac6e3b336c2138e457893654da0a40c75fcc76bf28be4761",
"md5": "d8e34c1a7af5a851ae3a2644a0333bec",
"sha256": "3d803812b4933a1926479aff4057f06b4332977b796038b4309d98546c56edf5"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d8e34c1a7af5a851ae3a2644a0333bec",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 181816,
"upload_time": "2024-11-26T14:33:21",
"upload_time_iso_8601": "2024-11-26T14:33:21.329211Z",
"url": "https://files.pythonhosted.org/packages/49/ad/ef273ef578fbac6e3b336c2138e457893654da0a40c75fcc76bf28be4761/libvalkey-4.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e873b681951477e98e135dee6f8b570779875a96a0367ad886327610f9134ee",
"md5": "b8efceb7c3a3080894c48f15f3506001",
"sha256": "b473dc3d005a9b57e4445cb2a9ab48f8a26ea90889458ef3cb4d3dd7b23b5a26"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "b8efceb7c3a3080894c48f15f3506001",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 170687,
"upload_time": "2024-11-26T14:33:22",
"upload_time_iso_8601": "2024-11-26T14:33:22.596894Z",
"url": "https://files.pythonhosted.org/packages/2e/87/3b681951477e98e135dee6f8b570779875a96a0367ad886327610f9134ee/libvalkey-4.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "134cd384395d2378e6481cdcb1fb7c6e6d0a3ae0feb3dffaefbd6c1eb39cb3d1",
"md5": "6297397df0a0fed4177731eebd85a756",
"sha256": "195f7e78cb6d2c391dac2d0fc1bf7e65555ebad856e0c36bcc4986e0b3b6c616"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6297397df0a0fed4177731eebd85a756",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 170453,
"upload_time": "2024-11-26T14:33:24",
"upload_time_iso_8601": "2024-11-26T14:33:24.791222Z",
"url": "https://files.pythonhosted.org/packages/13/4c/d384395d2378e6481cdcb1fb7c6e6d0a3ae0feb3dffaefbd6c1eb39cb3d1/libvalkey-4.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8fd81c64a5704ef4f843e2ffab8d815f1c918445f92e38660a6d44c7c64d1fe1",
"md5": "845f492596e2df8f1a3e21473782acb4",
"sha256": "79b446abdb18aefc984214de68ac5f50164550a00b703b81c2b9d9c1618f4a13"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "845f492596e2df8f1a3e21473782acb4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 164803,
"upload_time": "2024-11-26T14:33:26",
"upload_time_iso_8601": "2024-11-26T14:33:26.272464Z",
"url": "https://files.pythonhosted.org/packages/8f/d8/1c64a5704ef4f843e2ffab8d815f1c918445f92e38660a6d44c7c64d1fe1/libvalkey-4.0.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1656d3004b011a799781f379bdba531a3c19bc5f8cd929bafa96fc066a59b12",
"md5": "d12d27d6f4bbf81ab897877592fda9b6",
"sha256": "3453cd138a43cdcce32cbbbdc99d99472fb7905e56df8ff2f73dac5be70f0657"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "d12d27d6f4bbf81ab897877592fda9b6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 162855,
"upload_time": "2024-11-26T14:33:27",
"upload_time_iso_8601": "2024-11-26T14:33:27.850851Z",
"url": "https://files.pythonhosted.org/packages/e1/65/6d3004b011a799781f379bdba531a3c19bc5f8cd929bafa96fc066a59b12/libvalkey-4.0.1-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fbb835c8f8cedfeaf2ddb261f09e9a618a3e5ce44c8d4ea29e19ce4c1ae175d7",
"md5": "5b66307aa6e787a252399530fd3bcf77",
"sha256": "0a9acf658749ee324750643df040a62401d479de9a4507ca8f69bcf02df1b189"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "5b66307aa6e787a252399530fd3bcf77",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 176207,
"upload_time": "2024-11-26T14:33:29",
"upload_time_iso_8601": "2024-11-26T14:33:29.062903Z",
"url": "https://files.pythonhosted.org/packages/fb/b8/35c8f8cedfeaf2ddb261f09e9a618a3e5ce44c8d4ea29e19ce4c1ae175d7/libvalkey-4.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fdea428c9404f41bce80d946ed904b5749a5b3ac2f2a6a1a48f4da1c9b58f8b2",
"md5": "19beea539ff221afe62ebd7896320e39",
"sha256": "ebfe6976a10ab6fb84d885622a39ff580803f3244a048b75fb63a97048cb894c"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "19beea539ff221afe62ebd7896320e39",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 167761,
"upload_time": "2024-11-26T14:33:31",
"upload_time_iso_8601": "2024-11-26T14:33:31.473060Z",
"url": "https://files.pythonhosted.org/packages/fd/ea/428c9404f41bce80d946ed904b5749a5b3ac2f2a6a1a48f4da1c9b58f8b2/libvalkey-4.0.1-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f97b0e5fc755c78ac23a6e7a5c81288e7b44131becc11af07ef087f54054adf",
"md5": "e275a941cdba0dc58b2df43bb88e77df",
"sha256": "860862322eceb3ed2ff2031663ee42d9ff4146226af3734f818b54a70339c440"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e275a941cdba0dc58b2df43bb88e77df",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 165463,
"upload_time": "2024-11-26T14:33:32",
"upload_time_iso_8601": "2024-11-26T14:33:32.831050Z",
"url": "https://files.pythonhosted.org/packages/2f/97/b0e5fc755c78ac23a6e7a5c81288e7b44131becc11af07ef087f54054adf/libvalkey-4.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c7fd9700a1edec4ebacbcb7ccdf55ac6548f2a5693b016768d721c0d520753ad",
"md5": "f1c71a5995e372781fe76813ce0b8028",
"sha256": "dd96985818cc1ddc8882dda67fa1cf711db37d0a24a4cd70897fd83a7377a11c"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "f1c71a5995e372781fe76813ce0b8028",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 19475,
"upload_time": "2024-11-26T14:33:33",
"upload_time_iso_8601": "2024-11-26T14:33:33.986038Z",
"url": "https://files.pythonhosted.org/packages/c7/fd/9700a1edec4ebacbcb7ccdf55ac6548f2a5693b016768d721c0d520753ad/libvalkey-4.0.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8525d59dbdf8cb16d5c1f9215fc7cf66d2cbca6d05008eda1104b321df785647",
"md5": "fd854d1ae4a0c1072da4352d2e1ce4f6",
"sha256": "4a1174d53d949f38128efc038b2d77cb79c4db127f5707ad350de0cda3aa9451"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "fd854d1ae4a0c1072da4352d2e1ce4f6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 21358,
"upload_time": "2024-11-26T14:33:35",
"upload_time_iso_8601": "2024-11-26T14:33:35.487383Z",
"url": "https://files.pythonhosted.org/packages/85/25/d59dbdf8cb16d5c1f9215fc7cf66d2cbca6d05008eda1104b321df785647/libvalkey-4.0.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b62fb85f94411890d233c74aad7b581bb65a0f809b5757446a280a8fa42a50d",
"md5": "8fc105b4199114397e588682957fa5a6",
"sha256": "f3d5da92598f8e6a82a5e3dedd49dae39fce6b3089030e17681e2b73df4a6d89"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8fc105b4199114397e588682957fa5a6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 43057,
"upload_time": "2024-11-26T14:33:36",
"upload_time_iso_8601": "2024-11-26T14:33:36.532027Z",
"url": "https://files.pythonhosted.org/packages/2b/62/fb85f94411890d233c74aad7b581bb65a0f809b5757446a280a8fa42a50d/libvalkey-4.0.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "edcb6f7614cab744f0e4e0eae583b2997bf22ffee4aa333e26786b91342986b6",
"md5": "b994461c88139f556ee922cb6248fd14",
"sha256": "ce623bb8c37beb16d0f2c7c5b7080a3172dae4030e3bcd71326c7731883f766f"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-macosx_11_0_universal2.whl",
"has_sig": false,
"md5_digest": "b994461c88139f556ee922cb6248fd14",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 82198,
"upload_time": "2024-11-26T14:33:38",
"upload_time_iso_8601": "2024-11-26T14:33:38.044792Z",
"url": "https://files.pythonhosted.org/packages/ed/cb/6f7614cab744f0e4e0eae583b2997bf22ffee4aa333e26786b91342986b6/libvalkey-4.0.1-cp312-cp312-macosx_11_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cfde9515ba0f436c3e54331b66cf7652c03fc73688e0b6f22853a6fc2cc8aa23",
"md5": "5336715015165e7428d4a3128b7cd87a",
"sha256": "00adc978a791e944e2f6b442212cd3494a8d683ed215ff785dc9384968b212b6"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "5336715015165e7428d4a3128b7cd87a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 44839,
"upload_time": "2024-11-26T14:33:41",
"upload_time_iso_8601": "2024-11-26T14:33:41.112558Z",
"url": "https://files.pythonhosted.org/packages/cf/de/9515ba0f436c3e54331b66cf7652c03fc73688e0b6f22853a6fc2cc8aa23/libvalkey-4.0.1-cp312-cp312-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "21f1dd28a89f6c89e4fbcd95be18a04758f6f57fc69d38a7bc22a59377b277fc",
"md5": "15780430f0e5a7f75797f9a1c7768c64",
"sha256": "827ea20b5ee1d99cf3d2c10da24c356c55836dd6ff1689b3fbf190b5bffe1605"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "15780430f0e5a7f75797f9a1c7768c64",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 173314,
"upload_time": "2024-11-26T14:33:42",
"upload_time_iso_8601": "2024-11-26T14:33:42.737212Z",
"url": "https://files.pythonhosted.org/packages/21/f1/dd28a89f6c89e4fbcd95be18a04758f6f57fc69d38a7bc22a59377b277fc/libvalkey-4.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c617debc72596eb3e4c27a4ae1a5b5636e99b7b5e606c072c8816358ab69fb7f",
"md5": "a8db6afe563bef49d97bf16b1a22de2e",
"sha256": "f81f7d806e5dd826532c0a4b6d8bc91a485fba65a3767cfdeb796b493ac59c8c"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a8db6afe563bef49d97bf16b1a22de2e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 167968,
"upload_time": "2024-11-26T14:33:44",
"upload_time_iso_8601": "2024-11-26T14:33:44.196472Z",
"url": "https://files.pythonhosted.org/packages/c6/17/debc72596eb3e4c27a4ae1a5b5636e99b7b5e606c072c8816358ab69fb7f/libvalkey-4.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd00451b234f5125e0b9396d7ca4b9d2ab9785e21475f4da60ff019e48912f73",
"md5": "cb27e82f41bac9a89384ad513d125553",
"sha256": "65fe45323bbabee8d770127c0a763182a0d540a8c1afe6537d97dcc021fc26c4"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "cb27e82f41bac9a89384ad513d125553",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 184371,
"upload_time": "2024-11-26T14:33:45",
"upload_time_iso_8601": "2024-11-26T14:33:45.463039Z",
"url": "https://files.pythonhosted.org/packages/fd/00/451b234f5125e0b9396d7ca4b9d2ab9785e21475f4da60ff019e48912f73/libvalkey-4.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09c1e10266e11034af9194feacec78221bb01db6961b662303a980c77a61f159",
"md5": "1f411f696d2eced3c46893083dda8fa5",
"sha256": "c20ec7a26163dad23b0dfdbb81dd13ae3aa4083942b438c07dadaed88fa0ca6c"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1f411f696d2eced3c46893083dda8fa5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 173422,
"upload_time": "2024-11-26T14:33:47",
"upload_time_iso_8601": "2024-11-26T14:33:47.165810Z",
"url": "https://files.pythonhosted.org/packages/09/c1/e10266e11034af9194feacec78221bb01db6961b662303a980c77a61f159/libvalkey-4.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "88bafe3b25281e41546ea96c41b7899d2a83a262463432280e07daed44beb7f5",
"md5": "87e7a6caaced47a85449be207ffb41e1",
"sha256": "4c0d5b4b01c2e4e5bad8339d8b585f42c0b10fb05a6e4469c15c43d925be6285"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "87e7a6caaced47a85449be207ffb41e1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 173617,
"upload_time": "2024-11-26T14:33:48",
"upload_time_iso_8601": "2024-11-26T14:33:48.403572Z",
"url": "https://files.pythonhosted.org/packages/88/ba/fe3b25281e41546ea96c41b7899d2a83a262463432280e07daed44beb7f5/libvalkey-4.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "05b8a75b6edcaabdc6245ee719357d307e2fccb375ca09d012327fbc1ef68771",
"md5": "fc19ba4657a6adb57ca085c7db5e785e",
"sha256": "c151a43b250b6e6412c5b0a75093c49d248bbe541db91d2d7f04fd523ea616b3"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "fc19ba4657a6adb57ca085c7db5e785e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 167110,
"upload_time": "2024-11-26T14:33:49",
"upload_time_iso_8601": "2024-11-26T14:33:49.728657Z",
"url": "https://files.pythonhosted.org/packages/05/b8/a75b6edcaabdc6245ee719357d307e2fccb375ca09d012327fbc1ef68771/libvalkey-4.0.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a9ae602254b8865a0fb21df3f3cd57815ca7e6049cd79318bfb426449b661cee",
"md5": "162a545d80031df52d8936fb725db705",
"sha256": "4c8f59bb57f8e02e287da54a2e1250b9d591131922c006b873e5e2cad50fc36c"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "162a545d80031df52d8936fb725db705",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 164932,
"upload_time": "2024-11-26T14:33:51",
"upload_time_iso_8601": "2024-11-26T14:33:51.102609Z",
"url": "https://files.pythonhosted.org/packages/a9/ae/602254b8865a0fb21df3f3cd57815ca7e6049cd79318bfb426449b661cee/libvalkey-4.0.1-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0fc6116f5432c8234630079f3dadcf48828db41c2bfcdfaeb36ef197a2efa380",
"md5": "d25fa7e926f7fdf312260ae2faf1be1f",
"sha256": "89e79fade6e6953c786b0e2d255a2930733f5d9e7ef07cf47a4eb0db4eabba5e"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "d25fa7e926f7fdf312260ae2faf1be1f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 178905,
"upload_time": "2024-11-26T14:33:52",
"upload_time_iso_8601": "2024-11-26T14:33:52.416679Z",
"url": "https://files.pythonhosted.org/packages/0f/c6/116f5432c8234630079f3dadcf48828db41c2bfcdfaeb36ef197a2efa380/libvalkey-4.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce00ec095e022b7e5c2035787ad7389e0a11157ceb98f4ceae7fc44805907be0",
"md5": "913b92b4e733dcf53ad6dea69667e0a1",
"sha256": "56495ab791f539dc3ee30378f9783f017e000ad8b03751ad2426003f74eee0bc"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "913b92b4e733dcf53ad6dea69667e0a1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 170350,
"upload_time": "2024-11-26T14:33:53",
"upload_time_iso_8601": "2024-11-26T14:33:53.769967Z",
"url": "https://files.pythonhosted.org/packages/ce/00/ec095e022b7e5c2035787ad7389e0a11157ceb98f4ceae7fc44805907be0/libvalkey-4.0.1-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a584d8bd771b07854c58cbf8926d98fed1701a4dcbe97ef31e8fea63416fc461",
"md5": "1716bfcf5a98b88e43bcc858e68ace0d",
"sha256": "df9d7ba691c49c632bdc953b5c0af5c50231d0ae3bb0397688f63257a12786c0"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1716bfcf5a98b88e43bcc858e68ace0d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 168125,
"upload_time": "2024-11-26T14:33:55",
"upload_time_iso_8601": "2024-11-26T14:33:55.212953Z",
"url": "https://files.pythonhosted.org/packages/a5/84/d8bd771b07854c58cbf8926d98fed1701a4dcbe97ef31e8fea63416fc461/libvalkey-4.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "458800d5d2d0960d0023c52d25d5ae87d47b5aec995241788be5c424826727aa",
"md5": "732402d9761663173b082145f626964f",
"sha256": "a39ad585b3d2d48d6f5b60941f9d6a5f3f30a396ae129db15bf626316f71594f"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "732402d9761663173b082145f626964f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 19651,
"upload_time": "2024-11-26T14:33:56",
"upload_time_iso_8601": "2024-11-26T14:33:56.625028Z",
"url": "https://files.pythonhosted.org/packages/45/88/00d5d2d0960d0023c52d25d5ae87d47b5aec995241788be5c424826727aa/libvalkey-4.0.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f57a3f837524d63ed927f6ab3da3be2050f6c838279c796d5b44b617cad0047",
"md5": "6b1406601ef327848f8dedf47b23eb97",
"sha256": "7b39754c9cdf7fe704c636a2ea179c17229566e7c79af453df3a604b98879dc3"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "6b1406601ef327848f8dedf47b23eb97",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 21451,
"upload_time": "2024-11-26T14:33:57",
"upload_time_iso_8601": "2024-11-26T14:33:57.755530Z",
"url": "https://files.pythonhosted.org/packages/8f/57/a3f837524d63ed927f6ab3da3be2050f6c838279c796d5b44b617cad0047/libvalkey-4.0.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "513c8571abc9b8a78281312b99348bccb35dfa161a3a3e9b963afdd473beea40",
"md5": "0f670e799297d4a6891662fa78f46682",
"sha256": "f72346eca7408cfd6d6f407e7e548040b310ed6fdaec7d9ea67b49f20dc90a9e"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0f670e799297d4a6891662fa78f46682",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 43065,
"upload_time": "2024-11-26T14:33:58",
"upload_time_iso_8601": "2024-11-26T14:33:58.883767Z",
"url": "https://files.pythonhosted.org/packages/51/3c/8571abc9b8a78281312b99348bccb35dfa161a3a3e9b963afdd473beea40/libvalkey-4.0.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e08197217ff273fde5670b84682a2d67fe372890d14595ae0a15284626975ba",
"md5": "d6cbe243ee4cbb89dcff2972c5fbe04c",
"sha256": "66b4558ca5b8fa48fde40dfc79547779d78c5397906f5ea5671b9a75f0952ff4"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-macosx_11_0_universal2.whl",
"has_sig": false,
"md5_digest": "d6cbe243ee4cbb89dcff2972c5fbe04c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 82206,
"upload_time": "2024-11-26T14:34:00",
"upload_time_iso_8601": "2024-11-26T14:34:00.181395Z",
"url": "https://files.pythonhosted.org/packages/8e/08/197217ff273fde5670b84682a2d67fe372890d14595ae0a15284626975ba/libvalkey-4.0.1-cp313-cp313-macosx_11_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "51e1a806533c315cf758812e4f609548ccbb51c10221e2a3c6f9aa6e17633ee9",
"md5": "b0cceae2b27380c1f4961c9a8d0c517e",
"sha256": "33d29f8d826b59e972a8502e8547d5fef7b1a1376fa0884cf1360c15977bca50"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "b0cceae2b27380c1f4961c9a8d0c517e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 44840,
"upload_time": "2024-11-26T14:34:01",
"upload_time_iso_8601": "2024-11-26T14:34:01.310953Z",
"url": "https://files.pythonhosted.org/packages/51/e1/a806533c315cf758812e4f609548ccbb51c10221e2a3c6f9aa6e17633ee9/libvalkey-4.0.1-cp313-cp313-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7bc89908fdb4a5661bef8972cf94d149f5c5199c3835bba1a6f523225e2d6c37",
"md5": "22e1ededbded29067729721b90f0bae4",
"sha256": "8adea3c5824937c1e94bb1d5bc30c57661e8bbcb1a79e8ead77b45bbe206f488"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "22e1ededbded29067729721b90f0bae4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 173200,
"upload_time": "2024-11-26T14:34:02",
"upload_time_iso_8601": "2024-11-26T14:34:02.453941Z",
"url": "https://files.pythonhosted.org/packages/7b/c8/9908fdb4a5661bef8972cf94d149f5c5199c3835bba1a6f523225e2d6c37/libvalkey-4.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80d23b6c235393137b16dacddb04ac6b632f3998cd10cb52b1e34b2eb7bdcabf",
"md5": "ad20e6d6b8074833439859f34466233c",
"sha256": "50e956e1bc0ab21e2479fb5729456ae74de808a1be799b9163bf7a25029eeb41"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ad20e6d6b8074833439859f34466233c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 168270,
"upload_time": "2024-11-26T14:34:06",
"upload_time_iso_8601": "2024-11-26T14:34:06.909596Z",
"url": "https://files.pythonhosted.org/packages/80/d2/3b6c235393137b16dacddb04ac6b632f3998cd10cb52b1e34b2eb7bdcabf/libvalkey-4.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79b3844123ae52d63d9ec97f4ad026054a0b616d83fd886adcfd2f8484939044",
"md5": "e24e40da8904eae21606e00caf626c76",
"sha256": "56d6db545639a5fbb1c634621634a7f87845b7867056b1460a8299cc489e3364"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e24e40da8904eae21606e00caf626c76",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 184290,
"upload_time": "2024-11-26T14:34:08",
"upload_time_iso_8601": "2024-11-26T14:34:08.335250Z",
"url": "https://files.pythonhosted.org/packages/79/b3/844123ae52d63d9ec97f4ad026054a0b616d83fd886adcfd2f8484939044/libvalkey-4.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c13390d1f1fac2167e5e4531cbc090ec99e974271fc05e4c0c8597db593596d",
"md5": "861fc0e8efcf2fcbd499a7c9b6a12236",
"sha256": "b83e133826ca50506c9f49b5c4fd64ef0dc3bbc6e85bb18b781a08320bf3f0db"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "861fc0e8efcf2fcbd499a7c9b6a12236",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 173279,
"upload_time": "2024-11-26T14:34:09",
"upload_time_iso_8601": "2024-11-26T14:34:09.721300Z",
"url": "https://files.pythonhosted.org/packages/7c/13/390d1f1fac2167e5e4531cbc090ec99e974271fc05e4c0c8597db593596d/libvalkey-4.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c9f74deb4ea77efb2cbf24c2a7364628b93f3bd02bff7203162c88e9bfe8f13",
"md5": "f2e261ced4ab9ccd39ac92ea05b2d365",
"sha256": "9e58b6dcea57df7ee8d80f914ed8895141fbb53d6f344b310ebe6cae3e407d0f"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f2e261ced4ab9ccd39ac92ea05b2d365",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 173436,
"upload_time": "2024-11-26T14:34:11",
"upload_time_iso_8601": "2024-11-26T14:34:11.091802Z",
"url": "https://files.pythonhosted.org/packages/6c/9f/74deb4ea77efb2cbf24c2a7364628b93f3bd02bff7203162c88e9bfe8f13/libvalkey-4.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dbe69bb87d6d2fe4ba4da960104356c2b165766cb1d420ef1d7f0f671729f3ab",
"md5": "3ffc3226aa552c1e0c27f33685d2c1cc",
"sha256": "35576248ac379e755cf40c4ebe6bf735f278d46b5e449d0c8ea9f66869e3a8d4"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3ffc3226aa552c1e0c27f33685d2c1cc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 167050,
"upload_time": "2024-11-26T14:34:12",
"upload_time_iso_8601": "2024-11-26T14:34:12.451929Z",
"url": "https://files.pythonhosted.org/packages/db/e6/9bb87d6d2fe4ba4da960104356c2b165766cb1d420ef1d7f0f671729f3ab/libvalkey-4.0.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2eaa35eda3faa3a7e9a5702c1833cf2ff0fdb024661d8342b24393198db968a2",
"md5": "fbd6f0b8ca5432cca278c29f5e029f51",
"sha256": "2be9cd8533638be94956567602554bbffa65d6fc8e758cd628f317a58cbcafda"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "fbd6f0b8ca5432cca278c29f5e029f51",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 164934,
"upload_time": "2024-11-26T14:34:14",
"upload_time_iso_8601": "2024-11-26T14:34:14.707995Z",
"url": "https://files.pythonhosted.org/packages/2e/aa/35eda3faa3a7e9a5702c1833cf2ff0fdb024661d8342b24393198db968a2/libvalkey-4.0.1-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba546439403407317d1228f8b2d5e38917ff162cd86b371bf28953e727674b20",
"md5": "0e9e3558d3e5d253a9bad3f9437516fd",
"sha256": "a03058988844b5a56f296d0d5608bbbe38df1b875246d6c6d7b442af793b5197"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "0e9e3558d3e5d253a9bad3f9437516fd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 178943,
"upload_time": "2024-11-26T14:34:16",
"upload_time_iso_8601": "2024-11-26T14:34:16.310633Z",
"url": "https://files.pythonhosted.org/packages/ba/54/6439403407317d1228f8b2d5e38917ff162cd86b371bf28953e727674b20/libvalkey-4.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f5548628c445f9683d2b0f2df3cf2084ec48917d33ccf3f857b2b4b25c6ba3a8",
"md5": "cec91442f873609f17003b529c96f193",
"sha256": "885a2ca644a2fdaf555e9fdab2bbe7de0f91de4e2a07726751efa35417736d55"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "cec91442f873609f17003b529c96f193",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 170398,
"upload_time": "2024-11-26T14:34:17",
"upload_time_iso_8601": "2024-11-26T14:34:17.671695Z",
"url": "https://files.pythonhosted.org/packages/f5/54/8628c445f9683d2b0f2df3cf2084ec48917d33ccf3f857b2b4b25c6ba3a8/libvalkey-4.0.1-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1869780ad4d818fbb63efb3763041109fbdbe20a901413effa70a8fcf0ec56b",
"md5": "641e127fa90d355070c378b9468f4aab",
"sha256": "90fb5252391a8a9a3bb2a4eadd3f24a8af1032821d818e620da16854fb52503e"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "641e127fa90d355070c378b9468f4aab",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 168104,
"upload_time": "2024-11-26T14:34:19",
"upload_time_iso_8601": "2024-11-26T14:34:19.625879Z",
"url": "https://files.pythonhosted.org/packages/e1/86/9780ad4d818fbb63efb3763041109fbdbe20a901413effa70a8fcf0ec56b/libvalkey-4.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "61b28ec653c1e1cb85a8135f6413be90e40c1d3c6732f5933f4d3990f1777d09",
"md5": "7d809e8803c8a03567c0af03abf8d26d",
"sha256": "ac6d515ece9c769ce8a0692fcb0d2ceeb5a71503a7db0cbfef0c255b5fb56b19"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "7d809e8803c8a03567c0af03abf8d26d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 19657,
"upload_time": "2024-11-26T14:34:20",
"upload_time_iso_8601": "2024-11-26T14:34:20.909265Z",
"url": "https://files.pythonhosted.org/packages/61/b2/8ec653c1e1cb85a8135f6413be90e40c1d3c6732f5933f4d3990f1777d09/libvalkey-4.0.1-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6192f0b490a7bd7749aeed9e0dfca1f73e860a82ccb3ddb729591e4324c54367",
"md5": "885202e22db1187b5fbc2916755d5267",
"sha256": "125ff9fdba066a97e4bbdea69649184a5f5fcb832106bbaca81b80ff8dbee55c"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "885202e22db1187b5fbc2916755d5267",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 21461,
"upload_time": "2024-11-26T14:34:22",
"upload_time_iso_8601": "2024-11-26T14:34:22.010083Z",
"url": "https://files.pythonhosted.org/packages/61/92/f0b490a7bd7749aeed9e0dfca1f73e860a82ccb3ddb729591e4324c54367/libvalkey-4.0.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eb9b16cf35d50004c918da27cd9f33e27a1037690b523e8d4e8244b497988d8a",
"md5": "0767adcb2cbbd77cb85bf355b853232b",
"sha256": "9f389b48f37e7d14fd42eb47e52b799c1624edafc2b9398b9fe2f4e204d072a4"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0767adcb2cbbd77cb85bf355b853232b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 43052,
"upload_time": "2024-11-26T14:34:23",
"upload_time_iso_8601": "2024-11-26T14:34:23.146911Z",
"url": "https://files.pythonhosted.org/packages/eb/9b/16cf35d50004c918da27cd9f33e27a1037690b523e8d4e8244b497988d8a/libvalkey-4.0.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f619865dc1a17f8a4b4f5c63cb926bf30cfff61c69446b27f83a9c7b8da65d5e",
"md5": "c42fc2163b3f0ce6662fb780307c6f2e",
"sha256": "200b135258f6ada4aaacf8499e2d2d3484b39a03b2178f64d4da16eb39bcbf77"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-macosx_11_0_universal2.whl",
"has_sig": false,
"md5_digest": "c42fc2163b3f0ce6662fb780307c6f2e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 82130,
"upload_time": "2024-11-26T14:34:24",
"upload_time_iso_8601": "2024-11-26T14:34:24.345979Z",
"url": "https://files.pythonhosted.org/packages/f6/19/865dc1a17f8a4b4f5c63cb926bf30cfff61c69446b27f83a9c7b8da65d5e/libvalkey-4.0.1-cp38-cp38-macosx_11_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b403c12e79b6dfc1d9f90315288bf81e7c4df5ddbfeb22ade52c61d5eacb93ec",
"md5": "8ee623634156665fecb4e086af9bab20",
"sha256": "4aaa2b8ef0a3cc1a72abbb29667be2321ea5cd31f3b131ea0a35e4ee86caea6f"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "8ee623634156665fecb4e086af9bab20",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 44774,
"upload_time": "2024-11-26T14:34:25",
"upload_time_iso_8601": "2024-11-26T14:34:25.520033Z",
"url": "https://files.pythonhosted.org/packages/b4/03/c12e79b6dfc1d9f90315288bf81e7c4df5ddbfeb22ade52c61d5eacb93ec/libvalkey-4.0.1-cp38-cp38-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d784c6fa981a5a922dccf2c6eebb0d9cad3fbb3122c7d21ad3d9f444f67cc97f",
"md5": "c4c41912ca8370abe0789af1fbb08a1f",
"sha256": "91143449ee77ca072799759469df20ff538b82e0c538e3f3a4afbe5f1c7bfeaf"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c4c41912ca8370abe0789af1fbb08a1f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 172594,
"upload_time": "2024-11-26T14:34:26",
"upload_time_iso_8601": "2024-11-26T14:34:26.793827Z",
"url": "https://files.pythonhosted.org/packages/d7/84/c6fa981a5a922dccf2c6eebb0d9cad3fbb3122c7d21ad3d9f444f67cc97f/libvalkey-4.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad28e1745166d26c73cb7a6fa1df5f51f0326a4e7e79fd8a9948f81a750132e9",
"md5": "4a6a65b4168b4cf1c84a369062f5d61a",
"sha256": "e266a71b747cf5f8c8882966c58c080a61f8cb772bbf6dbb2d67530034ebd611"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4a6a65b4168b4cf1c84a369062f5d61a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 167113,
"upload_time": "2024-11-26T14:34:28",
"upload_time_iso_8601": "2024-11-26T14:34:28.048359Z",
"url": "https://files.pythonhosted.org/packages/ad/28/e1745166d26c73cb7a6fa1df5f51f0326a4e7e79fd8a9948f81a750132e9/libvalkey-4.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b14e61c0b3392f8f97bc169c3f9eaee8053ec514e3ee85ed3fea0b3ee0cc6072",
"md5": "482fc93618cfc8f9a249ce4199317406",
"sha256": "f9bb157a7fdc91b49d274eeb7961fcdb03d32380d1c25b9bcbb4dd490944539e"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "482fc93618cfc8f9a249ce4199317406",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 183759,
"upload_time": "2024-11-26T14:34:29",
"upload_time_iso_8601": "2024-11-26T14:34:29.316419Z",
"url": "https://files.pythonhosted.org/packages/b1/4e/61c0b3392f8f97bc169c3f9eaee8053ec514e3ee85ed3fea0b3ee0cc6072/libvalkey-4.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5d043c41bbbbc05e781396508ad689e3b5507701ba3c57da204bee0486bfb3b",
"md5": "e5e492c57c3e8c2503d8914dab1cb3d4",
"sha256": "be5dae7eebe303f549b9cab63fb9d6b1a1730b00e5011b0cb3d3403dc2d70ad9"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e5e492c57c3e8c2503d8914dab1cb3d4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 172950,
"upload_time": "2024-11-26T14:34:30",
"upload_time_iso_8601": "2024-11-26T14:34:30.602532Z",
"url": "https://files.pythonhosted.org/packages/e5/d0/43c41bbbbc05e781396508ad689e3b5507701ba3c57da204bee0486bfb3b/libvalkey-4.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "803e1a03a45f9dfbb634da3db90ec96c92df56fa1a844cbd7a479f790e6b513f",
"md5": "1ce2047373f3f0811ea08fd50ad93f4c",
"sha256": "60466c4bfd4d55ce6233d951627a4eacdae6888de0885695b5b6f3deafde57bf"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1ce2047373f3f0811ea08fd50ad93f4c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 172691,
"upload_time": "2024-11-26T14:34:32",
"upload_time_iso_8601": "2024-11-26T14:34:32.008663Z",
"url": "https://files.pythonhosted.org/packages/80/3e/1a03a45f9dfbb634da3db90ec96c92df56fa1a844cbd7a479f790e6b513f/libvalkey-4.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c2f65e4a05ed217f5e59a5677c5c7fea110f3a343349f0c1b8425132f4a285c",
"md5": "d5259b7c2a27ee2b807fb6fa3a7c2741",
"sha256": "f448af77c485fabb2f93928ca759f9813bc8999f2fb0560d9c2e4870aa6e0edc"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d5259b7c2a27ee2b807fb6fa3a7c2741",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 165533,
"upload_time": "2024-11-26T14:34:33",
"upload_time_iso_8601": "2024-11-26T14:34:33.556388Z",
"url": "https://files.pythonhosted.org/packages/3c/2f/65e4a05ed217f5e59a5677c5c7fea110f3a343349f0c1b8425132f4a285c/libvalkey-4.0.1-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "166a4cb7e3770694029c8289e041734f96b0d0203a36d6330bc1276979815191",
"md5": "bf93b3834c05f5cbfa6490ab95a8e766",
"sha256": "cc4354d075614a736e62d8283fe173df66e55b5260e6c29ff851a1d3680a5d1e"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "bf93b3834c05f5cbfa6490ab95a8e766",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 163574,
"upload_time": "2024-11-26T14:34:34",
"upload_time_iso_8601": "2024-11-26T14:34:34.823847Z",
"url": "https://files.pythonhosted.org/packages/16/6a/4cb7e3770694029c8289e041734f96b0d0203a36d6330bc1276979815191/libvalkey-4.0.1-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26b7d49605d0e0a0f998f9addf724fd20ac2142bbb3c714e80f34406d7cee1fc",
"md5": "2c8d871ef6f2a69ce4efa37a63338417",
"sha256": "6445163e102f10217532b6547edcc239f2dd0bced13fd982da10b352d0771b21"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "2c8d871ef6f2a69ce4efa37a63338417",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 176969,
"upload_time": "2024-11-26T14:34:36",
"upload_time_iso_8601": "2024-11-26T14:34:36.463816Z",
"url": "https://files.pythonhosted.org/packages/26/b7/d49605d0e0a0f998f9addf724fd20ac2142bbb3c714e80f34406d7cee1fc/libvalkey-4.0.1-cp38-cp38-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad04876ea16da27d5000d6b4d763a0fa0b43a06fb4e45b70acb70f12eeef3f84",
"md5": "3da0cfd78dc87353e7921183c515f8bb",
"sha256": "aa162ddb08a5d9a3b2d08f6ebe92385a049077c9b4e168e5171c615fbc8155b8"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "3da0cfd78dc87353e7921183c515f8bb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 168622,
"upload_time": "2024-11-26T14:34:37",
"upload_time_iso_8601": "2024-11-26T14:34:37.824865Z",
"url": "https://files.pythonhosted.org/packages/ad/04/876ea16da27d5000d6b4d763a0fa0b43a06fb4e45b70acb70f12eeef3f84/libvalkey-4.0.1-cp38-cp38-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b4de208e3335988ae2d35ca07f9e7b4718ccc2c0eef7e50ca6c4149c37c37df",
"md5": "b6e5eca2c1a167f0b29bb4be3911700d",
"sha256": "48cc9f0fd6724780949bddbbadda9ee338b63a8923202bd7df0e2de4feea63bf"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b6e5eca2c1a167f0b29bb4be3911700d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 166221,
"upload_time": "2024-11-26T14:34:39",
"upload_time_iso_8601": "2024-11-26T14:34:39.165133Z",
"url": "https://files.pythonhosted.org/packages/2b/4d/e208e3335988ae2d35ca07f9e7b4718ccc2c0eef7e50ca6c4149c37c37df/libvalkey-4.0.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b81828b1db1fb2dbcda215bb3806b89d2493e6c4a7ab4b529c7bcbdc6e1cc96",
"md5": "dc1ba15172f50ec93f26cbd251288274",
"sha256": "471ac81196e1bf5d00069be2bc6fee4f52744b0a3c219b51f3d3115a7903e190"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "dc1ba15172f50ec93f26cbd251288274",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 19490,
"upload_time": "2024-11-26T14:34:40",
"upload_time_iso_8601": "2024-11-26T14:34:40.546671Z",
"url": "https://files.pythonhosted.org/packages/2b/81/828b1db1fb2dbcda215bb3806b89d2493e6c4a7ab4b529c7bcbdc6e1cc96/libvalkey-4.0.1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7fa8c34155613194fa9cbf406dd0cb05b965b8280c52d00af12062ddb609b711",
"md5": "41011bd8e2c84e227d53b67c703ff70d",
"sha256": "3ff7f2e78c0e195d862cb9bda3b3fe16183713220d5f2faae653d9b187249c9b"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "41011bd8e2c84e227d53b67c703ff70d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 21368,
"upload_time": "2024-11-26T14:34:41",
"upload_time_iso_8601": "2024-11-26T14:34:41.718497Z",
"url": "https://files.pythonhosted.org/packages/7f/a8/c34155613194fa9cbf406dd0cb05b965b8280c52d00af12062ddb609b711/libvalkey-4.0.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce17d432510a70089a9781b81dd94d649d156f8af9db0c8b9603702b0ec95dcc",
"md5": "84f29d663a8331831f3ff07f638636ed",
"sha256": "e9c5975aae213a3c7251c3e8989c78b2ee39be5eace45a7d99fadc6a4a5a7bc4"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "84f29d663a8331831f3ff07f638636ed",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 43036,
"upload_time": "2024-11-26T14:34:42",
"upload_time_iso_8601": "2024-11-26T14:34:42.965441Z",
"url": "https://files.pythonhosted.org/packages/ce/17/d432510a70089a9781b81dd94d649d156f8af9db0c8b9603702b0ec95dcc/libvalkey-4.0.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "498864f54ed1ce28fc1c27353ff676b8673820384af72bafa12930566c0d8843",
"md5": "fd1fb7b7501f1ce2453403f03513f606",
"sha256": "c3ce037eeb03682c1dea8435bc0b9c118dba105cd8dca353b4a49cd741fff60f"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-macosx_11_0_universal2.whl",
"has_sig": false,
"md5_digest": "fd1fb7b7501f1ce2453403f03513f606",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 82089,
"upload_time": "2024-11-26T14:34:44",
"upload_time_iso_8601": "2024-11-26T14:34:44.594310Z",
"url": "https://files.pythonhosted.org/packages/49/88/64f54ed1ce28fc1c27353ff676b8673820384af72bafa12930566c0d8843/libvalkey-4.0.1-cp39-cp39-macosx_11_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e42ca64b3aa6fceb32026f965d983251b59a30017dd973c243ed0050400cebba",
"md5": "beb1d657c69133afda516c99b25ff4c9",
"sha256": "d9ff6deda50245842b901501e282be0399fd6c5289ae9f7a6cc5c62a2e5303d7"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "beb1d657c69133afda516c99b25ff4c9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 44751,
"upload_time": "2024-11-26T14:34:46",
"upload_time_iso_8601": "2024-11-26T14:34:46.478876Z",
"url": "https://files.pythonhosted.org/packages/e4/2c/a64b3aa6fceb32026f965d983251b59a30017dd973c243ed0050400cebba/libvalkey-4.0.1-cp39-cp39-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a09aaa4cc4075fa05d98607011efd98888bf7e9eb9c7278bc9e3ea14206cc3e8",
"md5": "fbf8cfa625e631751b5d44ffdeddfc75",
"sha256": "cd77106af55d6c0fb588fe58c2daea2ccf05ffab3713266b66157add022b9623"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fbf8cfa625e631751b5d44ffdeddfc75",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 169574,
"upload_time": "2024-11-26T14:34:47",
"upload_time_iso_8601": "2024-11-26T14:34:47.732580Z",
"url": "https://files.pythonhosted.org/packages/a0/9a/aa4cc4075fa05d98607011efd98888bf7e9eb9c7278bc9e3ea14206cc3e8/libvalkey-4.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd7c870dc7b68a0166bc216c403157e25fdd29e34ed1429b6821903cac31ad81",
"md5": "bc3d423714aaf96ead95b9273af05574",
"sha256": "ff5e5559b3aa04f1cd630b07f320ff0bd336471e5c74ef27a30e198b1a35b7c8"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "bc3d423714aaf96ead95b9273af05574",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 164870,
"upload_time": "2024-11-26T14:34:49",
"upload_time_iso_8601": "2024-11-26T14:34:49.099200Z",
"url": "https://files.pythonhosted.org/packages/bd/7c/870dc7b68a0166bc216c403157e25fdd29e34ed1429b6821903cac31ad81/libvalkey-4.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "876c525d00c790cfae5fc196d2518de878e15d4b54459dc71aed5137e8bf6282",
"md5": "c8c4f99e47fb4b0076f707b9f88fda77",
"sha256": "70deceeb55973d6b5911b06f7ceadeea022a2496a75aa9774453f68b70ab924b"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c8c4f99e47fb4b0076f707b9f88fda77",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 181172,
"upload_time": "2024-11-26T14:34:50",
"upload_time_iso_8601": "2024-11-26T14:34:50.484945Z",
"url": "https://files.pythonhosted.org/packages/87/6c/525d00c790cfae5fc196d2518de878e15d4b54459dc71aed5137e8bf6282/libvalkey-4.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b0b6b0e6a1f509a6a11b3f925038d4e3d0fd9da18d56d3be34ed41b8a44d6c8b",
"md5": "dfe7fb716c81bd05668f9ca16a7c29b1",
"sha256": "ce6b42ab06ba28d7fc8d24b8da9eccda4033e9342b6d4731c823998ec0294a09"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "dfe7fb716c81bd05668f9ca16a7c29b1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 170052,
"upload_time": "2024-11-26T14:34:51",
"upload_time_iso_8601": "2024-11-26T14:34:51.851596Z",
"url": "https://files.pythonhosted.org/packages/b0/b6/b0e6a1f509a6a11b3f925038d4e3d0fd9da18d56d3be34ed41b8a44d6c8b/libvalkey-4.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cac0bcedb0f40ee4d12694f3c7d6809d7de8b8205636fe291f1b7daf6094d8cc",
"md5": "e3313a942d08781dee3798ea641489a9",
"sha256": "c38f42b6632fdfd39c0e361d004c0c93f9059b6c3b36626f903a371abbb8af8b"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e3313a942d08781dee3798ea641489a9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 169800,
"upload_time": "2024-11-26T14:34:53",
"upload_time_iso_8601": "2024-11-26T14:34:53.217354Z",
"url": "https://files.pythonhosted.org/packages/ca/c0/bcedb0f40ee4d12694f3c7d6809d7de8b8205636fe291f1b7daf6094d8cc/libvalkey-4.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "572e40dfde852a9dde4baf961531a294d02152d89c4bbd7fc72ccf798c92b951",
"md5": "318da070daf1f9abfa8a50d0f34d4914",
"sha256": "d2175fd547761e67f00141b7d22ea6ba730da6ae72f182b92d122ed6b9371f27"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "318da070daf1f9abfa8a50d0f34d4914",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 164293,
"upload_time": "2024-11-26T14:34:54",
"upload_time_iso_8601": "2024-11-26T14:34:54.922816Z",
"url": "https://files.pythonhosted.org/packages/57/2e/40dfde852a9dde4baf961531a294d02152d89c4bbd7fc72ccf798c92b951/libvalkey-4.0.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b74f34c6bd1097b33cc0eeeb514b0992639f6e5df9edf86d424d9ffc09dd6d32",
"md5": "0bf58345b36bdbd744db1fcc9941a710",
"sha256": "13856099dd591714975ee4399f1c6a1b87d4a7a79960681b641b57ee70bcc5a3"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0bf58345b36bdbd744db1fcc9941a710",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 162324,
"upload_time": "2024-11-26T14:34:57",
"upload_time_iso_8601": "2024-11-26T14:34:57.310582Z",
"url": "https://files.pythonhosted.org/packages/b7/4f/34c6bd1097b33cc0eeeb514b0992639f6e5df9edf86d424d9ffc09dd6d32/libvalkey-4.0.1-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "83a831fd517128120e4df4aa0209519ac6a467d38ecbc898dae9100a1f288ac7",
"md5": "c4c393b352ba30592974c7889277ddef",
"sha256": "fa4dc913f28d799e755fbf2bd411bc0e2f342b9a4cdc2336aab68419b405e17d"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "c4c393b352ba30592974c7889277ddef",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 175654,
"upload_time": "2024-11-26T14:34:58",
"upload_time_iso_8601": "2024-11-26T14:34:58.648414Z",
"url": "https://files.pythonhosted.org/packages/83/a8/31fd517128120e4df4aa0209519ac6a467d38ecbc898dae9100a1f288ac7/libvalkey-4.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8df6b46976335a946e3f3c1cfe8155bcb2b3ad0b6496ec87a8ca90f4da561a56",
"md5": "a6c154399ac30890e5a452e4b2144e07",
"sha256": "be54d0ce94ff65ff8eede2ab78635e0f582f27db3e9143a1e132910896157684"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "a6c154399ac30890e5a452e4b2144e07",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 167234,
"upload_time": "2024-11-26T14:35:00",
"upload_time_iso_8601": "2024-11-26T14:35:00.117712Z",
"url": "https://files.pythonhosted.org/packages/8d/f6/b46976335a946e3f3c1cfe8155bcb2b3ad0b6496ec87a8ca90f4da561a56/libvalkey-4.0.1-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b08df3cdaed3bcd15a9470fbb2511de9b3237e3b956a1c8d835b75ff1d56c0e",
"md5": "5611e861e8986dcf002878338695815e",
"sha256": "6c7500ddd11760372c3d9ace0efea0cf00834857be7f7da6321ba9a0ba01379f"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "5611e861e8986dcf002878338695815e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 164994,
"upload_time": "2024-11-26T14:35:03",
"upload_time_iso_8601": "2024-11-26T14:35:03.133059Z",
"url": "https://files.pythonhosted.org/packages/3b/08/df3cdaed3bcd15a9470fbb2511de9b3237e3b956a1c8d835b75ff1d56c0e/libvalkey-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff6b7342449b847165e773ccf320189161ec26663dbc93fcc5099539a270ae09",
"md5": "67e8af770a2c5ad322879312000bba9f",
"sha256": "e5b7cf073a416f2be03b6aebe19d626f36a1350da9170dc2947d8364a77d6c3d"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "67e8af770a2c5ad322879312000bba9f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 19489,
"upload_time": "2024-11-26T14:35:04",
"upload_time_iso_8601": "2024-11-26T14:35:04.596097Z",
"url": "https://files.pythonhosted.org/packages/ff/6b/7342449b847165e773ccf320189161ec26663dbc93fcc5099539a270ae09/libvalkey-4.0.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cd9d64a33e7141ef8cb63078a3b3e4e4821adfff401198cfa536679ca78e0247",
"md5": "cf576e3b1c92d4ef140214c129964227",
"sha256": "d050e7ac0906fc1650c5675b0a68da53181425937986559d129da665382e444a"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "cf576e3b1c92d4ef140214c129964227",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 21367,
"upload_time": "2024-11-26T14:35:05",
"upload_time_iso_8601": "2024-11-26T14:35:05.791342Z",
"url": "https://files.pythonhosted.org/packages/cd/9d/64a33e7141ef8cb63078a3b3e4e4821adfff401198cfa536679ca78e0247/libvalkey-4.0.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "397d8dec58f9f2f0f4eb8b1b861a4ee5ef2c8e7b63a46f0ffbba274f5170125b",
"md5": "ca94c0f6996c931e5004512c9f7167d5",
"sha256": "75528a996263e57880d12a5b1421d90f3b63d8f65e1229af02075079ba17be0a"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ca94c0f6996c931e5004512c9f7167d5",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 37210,
"upload_time": "2024-11-26T14:35:06",
"upload_time_iso_8601": "2024-11-26T14:35:06.987081Z",
"url": "https://files.pythonhosted.org/packages/39/7d/8dec58f9f2f0f4eb8b1b861a4ee5ef2c8e7b63a46f0ffbba274f5170125b/libvalkey-4.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77d9857376c3e0af4988d1b8ad13e8ee964dcfae9860e1917febd4f6b0819feb",
"md5": "b0aa3776fd5cdfe35b7d185603cecec7",
"sha256": "4ee4f42a117cc172286f3180fdd2db9d74e7d3f28f97466e29d69e7c126eb084"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "b0aa3776fd5cdfe35b7d185603cecec7",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 39638,
"upload_time": "2024-11-26T14:35:08",
"upload_time_iso_8601": "2024-11-26T14:35:08.209896Z",
"url": "https://files.pythonhosted.org/packages/77/d9/857376c3e0af4988d1b8ad13e8ee964dcfae9860e1917febd4f6b0819feb/libvalkey-4.0.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c2ae9c0fcf578a56d860a9e056e67fbdff54b33952a88b63c384bc05b0cfe215",
"md5": "065e973427eec18f430057f68fbaee3d",
"sha256": "cb120643254a1b44fee2d07a9cb2eef80e65635ac6cd82af7c76b4c09941575e"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "065e973427eec18f430057f68fbaee3d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 48760,
"upload_time": "2024-11-26T14:35:09",
"upload_time_iso_8601": "2024-11-26T14:35:09.510347Z",
"url": "https://files.pythonhosted.org/packages/c2/ae/9c0fcf578a56d860a9e056e67fbdff54b33952a88b63c384bc05b0cfe215/libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff3d76fa39c775c33e356be5b7b687b85d7fea512e1fd314a17b75f143e85b67",
"md5": "b03342c805b202788dd86058b7ee2443",
"sha256": "9e62c472774dd38d9e5809d4bea07ec6309a088e2102ddce8beef5a3e0d68b76"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b03342c805b202788dd86058b7ee2443",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 56262,
"upload_time": "2024-11-26T14:35:12",
"upload_time_iso_8601": "2024-11-26T14:35:12.351599Z",
"url": "https://files.pythonhosted.org/packages/ff/3d/76fa39c775c33e356be5b7b687b85d7fea512e1fd314a17b75f143e85b67/libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5acb60131ef56e5152829c834c9c55cc5facb0a1988ba909c23d43f13bb65e0d",
"md5": "147f368a16f1fb9a5aec68679aa6ba77",
"sha256": "a73ce687cda35c1a07c24bfb09b3b877c3d74837b59674cded032d03d12c1e55"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "147f368a16f1fb9a5aec68679aa6ba77",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 48920,
"upload_time": "2024-11-26T14:35:16",
"upload_time_iso_8601": "2024-11-26T14:35:16.500243Z",
"url": "https://files.pythonhosted.org/packages/5a/cb/60131ef56e5152829c834c9c55cc5facb0a1988ba909c23d43f13bb65e0d/libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e8ac69d01a8e2ad5c94bd261784b8e8c2be3992b48492009baf56fcd16d1ab15",
"md5": "72567a1934877c8c4b1e351c32366091",
"sha256": "1cd593e96281b80f5831292b9befe631a88415c68ad0748fe3d69101a093c501"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "72567a1934877c8c4b1e351c32366091",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 21366,
"upload_time": "2024-11-26T14:35:17",
"upload_time_iso_8601": "2024-11-26T14:35:17.808994Z",
"url": "https://files.pythonhosted.org/packages/e8/ac/69d01a8e2ad5c94bd261784b8e8c2be3992b48492009baf56fcd16d1ab15/libvalkey-4.0.1-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "281539c3c69ee642ea1271be2c92ca8e628e251b898d98306953b70a37d46310",
"md5": "8175ab984fb6bd8972f0a2c703d1880d",
"sha256": "a50f5f7482aa64038aa93ba12c45bffd2950a5485288558adc80ebc409b20a21"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8175ab984fb6bd8972f0a2c703d1880d",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 37244,
"upload_time": "2024-11-26T14:35:19",
"upload_time_iso_8601": "2024-11-26T14:35:19.088856Z",
"url": "https://files.pythonhosted.org/packages/28/15/39c3c69ee642ea1271be2c92ca8e628e251b898d98306953b70a37d46310/libvalkey-4.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "92828801ecc1d4f875b7f218cc6ad9345cf7ef3c0e9eec2ada6c7fc34b6c5609",
"md5": "a0c50618b8149806948bad3962657277",
"sha256": "bda1b59ed326fc0fe909b4be38297d37cba1ee332913f1ab1a8f17bd9791e2c9"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp38-pypy38_pp73-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "a0c50618b8149806948bad3962657277",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 39663,
"upload_time": "2024-11-26T14:35:21",
"upload_time_iso_8601": "2024-11-26T14:35:21.478905Z",
"url": "https://files.pythonhosted.org/packages/92/82/8801ecc1d4f875b7f218cc6ad9345cf7ef3c0e9eec2ada6c7fc34b6c5609/libvalkey-4.0.1-pp38-pypy38_pp73-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aba70458e8387f860c96c64242c8c78118d228a54a619a64b59d918c5a44bdf6",
"md5": "f72aaf271526977f2b92d830e780c605",
"sha256": "f111810607172cada546003d444e9f0d7b2c9d1a5f305e56d365bda89adbce8d"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f72aaf271526977f2b92d830e780c605",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 48790,
"upload_time": "2024-11-26T14:35:22",
"upload_time_iso_8601": "2024-11-26T14:35:22.873850Z",
"url": "https://files.pythonhosted.org/packages/ab/a7/0458e8387f860c96c64242c8c78118d228a54a619a64b59d918c5a44bdf6/libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26d6e79606ad905d9ef0df36b5a4c3d933636467eef4f16dcbc719a6800de02d",
"md5": "46f16919f6589977f1b998a1556529a9",
"sha256": "a2cf10a178140e94116ba467c209d38bc73962211a666e5b85e018194dd3c67e"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "46f16919f6589977f1b998a1556529a9",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 56353,
"upload_time": "2024-11-26T14:35:24",
"upload_time_iso_8601": "2024-11-26T14:35:24.884581Z",
"url": "https://files.pythonhosted.org/packages/26/d6/e79606ad905d9ef0df36b5a4c3d933636467eef4f16dcbc719a6800de02d/libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cba9c62cfa984c864088c22d9b326abdfd83b561d28f8f2eaf9863e6189d3349",
"md5": "2017dd5273e494fef943ee6ab85b499f",
"sha256": "3c1b982292085c1b14b487d348b6dd572a1e2cf9b892b96bae8b74d21304f4e4"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2017dd5273e494fef943ee6ab85b499f",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 48991,
"upload_time": "2024-11-26T14:35:26",
"upload_time_iso_8601": "2024-11-26T14:35:26.609370Z",
"url": "https://files.pythonhosted.org/packages/cb/a9/c62cfa984c864088c22d9b326abdfd83b561d28f8f2eaf9863e6189d3349/libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c78e322f5eedf6b9e14fa6b9749197b9f8a486736fa29b1b42f26ef0f7e5497c",
"md5": "c927579713abb3ebcb8e47682c42aaf1",
"sha256": "3a5f27e938173df8dda85c7f76d0f92cfb8a5a6f59ac094da133e70bd5526ccf"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "c927579713abb3ebcb8e47682c42aaf1",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 21380,
"upload_time": "2024-11-26T14:35:27",
"upload_time_iso_8601": "2024-11-26T14:35:27.974264Z",
"url": "https://files.pythonhosted.org/packages/c7/8e/322f5eedf6b9e14fa6b9749197b9f8a486736fa29b1b42f26ef0f7e5497c/libvalkey-4.0.1-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0386f6e93a4f19df53f381d66bcd8ef9aa256c660d0eb924e58b0fdccec250b5",
"md5": "ecdda90a27b7c30a4bb1093f621d3cb3",
"sha256": "55a5b78467c0605817e12469630e627c3cccccb44ff810c4943337fbf3979529"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ecdda90a27b7c30a4bb1093f621d3cb3",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 37185,
"upload_time": "2024-11-26T14:35:29",
"upload_time_iso_8601": "2024-11-26T14:35:29.263640Z",
"url": "https://files.pythonhosted.org/packages/03/86/f6e93a4f19df53f381d66bcd8ef9aa256c660d0eb924e58b0fdccec250b5/libvalkey-4.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68c1cc3658e45979a9cfe0e03df32b863a9ed75d1cedbc12147644ba6e4c406a",
"md5": "a684f312c9313f1ad72927f1d20c78fc",
"sha256": "af5a237ed6fec3c9977dd57248f11d9ab71a2d8a8954eb76f65171b7454f9f23"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp39-pypy39_pp73-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "a684f312c9313f1ad72927f1d20c78fc",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 39605,
"upload_time": "2024-11-26T14:35:30",
"upload_time_iso_8601": "2024-11-26T14:35:30.673576Z",
"url": "https://files.pythonhosted.org/packages/68/c1/cc3658e45979a9cfe0e03df32b863a9ed75d1cedbc12147644ba6e4c406a/libvalkey-4.0.1-pp39-pypy39_pp73-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "76374e13d72109f2e946f9d472b6e9564c332a983d20ef1c1ddc54794d02dc17",
"md5": "c922b1518441ebde943bade860368222",
"sha256": "c5ce282d3b888bbabb71eb065defb66383f0775fb1f12da42edfff1800d85336"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c922b1518441ebde943bade860368222",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 48703,
"upload_time": "2024-11-26T14:35:32",
"upload_time_iso_8601": "2024-11-26T14:35:32.068096Z",
"url": "https://files.pythonhosted.org/packages/76/37/4e13d72109f2e946f9d472b6e9564c332a983d20ef1c1ddc54794d02dc17/libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f3c76bfbca61ca46414c2c59a8006a88f04f8653c99a2f41ccc1b0663a8c005",
"md5": "d371f07fc2d8fd5f59459d801876c905",
"sha256": "6c2feb0686f51def52095d3429404db5092efb1edb336a961acc4887389c177a"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d371f07fc2d8fd5f59459d801876c905",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 56226,
"upload_time": "2024-11-26T14:35:34",
"upload_time_iso_8601": "2024-11-26T14:35:34.257912Z",
"url": "https://files.pythonhosted.org/packages/2f/3c/76bfbca61ca46414c2c59a8006a88f04f8653c99a2f41ccc1b0663a8c005/libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "29bbf245b3b517b9ca1f41a4e3dc3600fdec3c59765d18c1ca079de44b3e0f6e",
"md5": "e323404de1c66358c71e76f7f27cb20f",
"sha256": "30b9048d4f3745ecaa7e82aa985dbe57b8f96c6f5586767b9afd63d1c3021295"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e323404de1c66358c71e76f7f27cb20f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 48891,
"upload_time": "2024-11-26T14:35:35",
"upload_time_iso_8601": "2024-11-26T14:35:35.736778Z",
"url": "https://files.pythonhosted.org/packages/29/bb/f245b3b517b9ca1f41a4e3dc3600fdec3c59765d18c1ca079de44b3e0f6e/libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a54c256395784535d31cf398f5a32a4fc2dac31003c28491fe7868e3ea07cd5",
"md5": "94706b2552993f1a13c3aa2df6445226",
"sha256": "2e321a8af5ea12281898744f41cf7f8c4008770dcc12f8f0afbc5f0b3cd40c4f"
},
"downloads": -1,
"filename": "libvalkey-4.0.1-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "94706b2552993f1a13c3aa2df6445226",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 21367,
"upload_time": "2024-11-26T14:35:37",
"upload_time_iso_8601": "2024-11-26T14:35:37.122335Z",
"url": "https://files.pythonhosted.org/packages/2a/54/c256395784535d31cf398f5a32a4fc2dac31003c28491fe7868e3ea07cd5/libvalkey-4.0.1-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "384957857ba9d02ba4df3bc1e71044f599c82ea590e928328e6b512dbf720228",
"md5": "b69edb860db5877cb7cef2dbbcca2a8f",
"sha256": "fe60ef535bc826fc35f4019228a0a46bdce8b41fd6013a7591e822a8a17c3170"
},
"downloads": -1,
"filename": "libvalkey-4.0.1.tar.gz",
"has_sig": false,
"md5_digest": "b69edb860db5877cb7cef2dbbcca2a8f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 109005,
"upload_time": "2024-11-26T14:35:38",
"upload_time_iso_8601": "2024-11-26T14:35:38.504485Z",
"url": "https://files.pythonhosted.org/packages/38/49/57857ba9d02ba4df3bc1e71044f599c82ea590e928328e6b512dbf720228/libvalkey-4.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-26 14:35:38",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "valkey-io",
"github_project": "libvalkey-py",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "libvalkey"
}