Name | rocksdict JSON |
Version |
0.3.25
JSON |
| download |
home_page | None |
Summary | Rocksdb Python Binding |
upload_time | 2024-12-14 05:11:50 |
maintainer | None |
docs_url | None |
author | None |
requires_python | None |
license | None |
keywords |
rocksdb
dbm
dict
key-value
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# RocksDict / SpeeDict
**Key-value storage for Python & Wrapper of Rocksdb and Speedb**
![CI](https://github.com/Congyuwang/RocksDict/actions/workflows/CI.yml/badge.svg)
![PyPI](https://img.shields.io/pypi/dm/rocksdict)
![PyPI](https://img.shields.io/pypi/wheel/rocksdict)
[![Support python versions](https://img.shields.io/pypi/pyversions/rocksdict.svg)](https://pypi.org/project/rocksdict/)
## Installation
Wheels available for macOS amd64/arm64, linux amd64/arm64, and windows amd64.
- `pip install rocksdict` for rocksdb backend, then `from rocksdict import Rdict`
- `pip install speedict` for speedb backend, then `from speedict import Rdict`
## Introduction
This library has two purposes.
1. As an on-disk key-value storage solution for Python.
2. As a RocksDB / Speedict interface.
These two purposes operate in different modes:
- **Default mode**, which allows storing `int`, `float`,
`bool`, `str`, `bytes`, and other python objects (with `Pickle`).
- **Raw mode** (`options=Options(raw_mode=True)`),
which allows storing only `bytes`.
## Easily inspect RocksDB created by C++, Java, or Other Languages
Since v0.3.24b2.
```python
from rocksdict import Rdict
# This will automatically load latest options and column families.
# Note also that this is automatically RAW MODE,
# as it knows that the db is not created by RocksDict
# (since v0.3.24b2).
db = Rdict("db_path")
# list column families
cfs = Rdict.list_cf("db_path")
print(cfs)
# use one of the column families
cf1 = db.get_column_family(cfs[1])
# iterate through all key-value pairs in cf1
for k, v in cf1.items():
print(f"{k} -> {v}")
# iterate through all wide columns in cf1
for k, v in cf1.entities():
print(f"{k} -> {v}")
```
## Examples
### A minimal example
```python
from rocksdict import Rdict
import numpy as np
import pandas as pd
path = str("./test_dict")
# create a Rdict with default options at `path`
db = Rdict(path)
db[1.0] = 1
db["huge integer"] = 2343546543243564534233536434567543
db["good"] = True
db["bytes"] = b"bytes"
db["this is a list"] = [1, 2, 3]
db["store a dict"] = {0: 1}
db[b"numpy"] = np.array([1, 2, 3])
db["a table"] = pd.DataFrame({"a": [1, 2], "b": [2, 1]})
# reopen Rdict from disk
db.close()
db = Rdict(path)
assert db[1.0] == 1
assert db["huge integer"] == 2343546543243564534233536434567543
assert db["good"] == True
assert db["bytes"] == b"bytes"
assert db["this is a list"] == [1, 2, 3]
assert db["store a dict"] == {0: 1}
assert np.all(db[b"numpy"] == np.array([1, 2, 3]))
assert np.all(db["a table"] == pd.DataFrame({"a": [1, 2], "b": [2, 1]}))
# iterate through all elements
for k, v in db.items():
print(f"{k} -> {v}")
# batch get:
print(db[["good", "bad", 1.0]])
# [True, False, 1]
# delete Rdict from dict
db.close()
Rdict.destroy(path)
```
### An Example of Raw Mode
This mode allows only bytes as keys and values.
```python
from rocksdict import Rdict, Options
PATH_TO_ROCKSDB = str("path")
# open raw_mode, which allows only bytes
db = Rdict(path=PATH_TO_ROCKSDB, options=Options(raw_mode=True))
db[b'a'] = b'a'
db[b'b'] = b'b'
db[b'c'] = b'c'
db[b'd'] = b'd'
for k, v in db.items():
print(f"{k} -> {v}")
# close and delete
db.close()
Rdict.destroy(PATH_TO_ROCKSDB)
```
## New Feature Since v0.3.3
Loading Options from RocksDict Path.
### Load Options and add A New ColumnFamily
```python
from rocksdict import Options, Rdict
path = str("./rocksdict_path")
opts, cols = Options.load_latest(path)
opts.create_missing_column_families(True)
cols["bytes"] = Options()
self.test_dict = Rdict(path, options=opts, column_families=cols)
```
### Reopening RocksDB Reads DB Options Automatically
```python
import shutil
from rocksdict import Rdict, Options, SliceTransform, PlainTableFactoryOptions
import os
def db_options():
opt = Options()
# create table
opt.create_if_missing(True)
# config to more jobs
opt.set_max_background_jobs(os.cpu_count())
# configure mem-table to a large value (256 MB)
opt.set_write_buffer_size(0x10000000)
opt.set_level_zero_file_num_compaction_trigger(4)
# configure l0 and l1 size, let them have the same size (1 GB)
opt.set_max_bytes_for_level_base(0x40000000)
# 256 MB file size
opt.set_target_file_size_base(0x10000000)
# use a smaller compaction multiplier
opt.set_max_bytes_for_level_multiplier(4.0)
# use 8-byte prefix (2 ^ 64 is far enough for transaction counts)
opt.set_prefix_extractor(SliceTransform.create_max_len_prefix(8))
# set to plain-table
opt.set_plain_table_factory(PlainTableFactoryOptions())
return opt
# create DB
db = Rdict("./some_path", db_options())
db[0] = 1
db.close()
# automatic reloading all options on reopening
db = Rdict("./some_path")
assert db[0] == 1
# destroy
db.close()
Rdict.destroy("./some_path")
```
## More Examples on BatchWrite, SstFileWrite, Snapshot, RocksDB Options, and etc.
Go to [example](https://github.com/Congyuwang/RocksDict/tree/main/examples) folder.
## Limitations
Currently, do not support merge operation and custom comparator.
## Full Documentation
See [rocksdict documentation](https://congyuwang.github.io/RocksDict/rocksdict.html).
Raw data
{
"_id": null,
"home_page": null,
"name": "rocksdict",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "rocksdb, dbm, dict, key-value",
"author": null,
"author_email": null,
"download_url": null,
"platform": null,
"description": "# RocksDict / SpeeDict\n\n**Key-value storage for Python & Wrapper of Rocksdb and Speedb**\n\n![CI](https://github.com/Congyuwang/RocksDict/actions/workflows/CI.yml/badge.svg)\n![PyPI](https://img.shields.io/pypi/dm/rocksdict)\n![PyPI](https://img.shields.io/pypi/wheel/rocksdict)\n[![Support python versions](https://img.shields.io/pypi/pyversions/rocksdict.svg)](https://pypi.org/project/rocksdict/)\n\n## Installation\n\nWheels available for macOS amd64/arm64, linux amd64/arm64, and windows amd64.\n\n- `pip install rocksdict` for rocksdb backend, then `from rocksdict import Rdict`\n- `pip install speedict` for speedb backend, then `from speedict import Rdict`\n\n## Introduction\n\nThis library has two purposes.\n\n1. As an on-disk key-value storage solution for Python.\n2. As a RocksDB / Speedict interface.\n\nThese two purposes operate in different modes:\n\n- **Default mode**, which allows storing `int`, `float`,\n `bool`, `str`, `bytes`, and other python objects (with `Pickle`).\n\n- **Raw mode** (`options=Options(raw_mode=True)`),\n which allows storing only `bytes`.\n\n## Easily inspect RocksDB created by C++, Java, or Other Languages\n\nSince v0.3.24b2.\n\n```python\nfrom rocksdict import Rdict\n\n# This will automatically load latest options and column families.\n# Note also that this is automatically RAW MODE,\n# as it knows that the db is not created by RocksDict\n# (since v0.3.24b2).\ndb = Rdict(\"db_path\")\n\n# list column families\ncfs = Rdict.list_cf(\"db_path\")\nprint(cfs)\n\n# use one of the column families\ncf1 = db.get_column_family(cfs[1])\n\n# iterate through all key-value pairs in cf1\nfor k, v in cf1.items():\n print(f\"{k} -> {v}\")\n\n# iterate through all wide columns in cf1\nfor k, v in cf1.entities():\n print(f\"{k} -> {v}\")\n```\n\n## Examples\n\n### A minimal example\n\n```python\nfrom rocksdict import Rdict\nimport numpy as np\nimport pandas as pd\n\npath = str(\"./test_dict\")\n\n# create a Rdict with default options at `path`\ndb = Rdict(path)\ndb[1.0] = 1\ndb[\"huge integer\"] = 2343546543243564534233536434567543\ndb[\"good\"] = True\ndb[\"bytes\"] = b\"bytes\"\ndb[\"this is a list\"] = [1, 2, 3]\ndb[\"store a dict\"] = {0: 1}\ndb[b\"numpy\"] = np.array([1, 2, 3])\ndb[\"a table\"] = pd.DataFrame({\"a\": [1, 2], \"b\": [2, 1]})\n\n# reopen Rdict from disk\ndb.close()\ndb = Rdict(path)\nassert db[1.0] == 1\nassert db[\"huge integer\"] == 2343546543243564534233536434567543\nassert db[\"good\"] == True\nassert db[\"bytes\"] == b\"bytes\"\nassert db[\"this is a list\"] == [1, 2, 3]\nassert db[\"store a dict\"] == {0: 1}\nassert np.all(db[b\"numpy\"] == np.array([1, 2, 3]))\nassert np.all(db[\"a table\"] == pd.DataFrame({\"a\": [1, 2], \"b\": [2, 1]}))\n\n# iterate through all elements\nfor k, v in db.items():\n print(f\"{k} -> {v}\")\n\n# batch get:\nprint(db[[\"good\", \"bad\", 1.0]])\n# [True, False, 1]\n\n# delete Rdict from dict\ndb.close()\nRdict.destroy(path)\n```\n\n### An Example of Raw Mode\n\nThis mode allows only bytes as keys and values.\n\n```python\nfrom rocksdict import Rdict, Options\n\nPATH_TO_ROCKSDB = str(\"path\")\n\n# open raw_mode, which allows only bytes\ndb = Rdict(path=PATH_TO_ROCKSDB, options=Options(raw_mode=True))\n\ndb[b'a'] = b'a'\ndb[b'b'] = b'b'\ndb[b'c'] = b'c'\ndb[b'd'] = b'd'\n\nfor k, v in db.items():\n print(f\"{k} -> {v}\")\n\n# close and delete\ndb.close()\nRdict.destroy(PATH_TO_ROCKSDB)\n```\n\n## New Feature Since v0.3.3\n\nLoading Options from RocksDict Path.\n\n### Load Options and add A New ColumnFamily\n\n```python\nfrom rocksdict import Options, Rdict\npath = str(\"./rocksdict_path\")\n\nopts, cols = Options.load_latest(path)\nopts.create_missing_column_families(True)\ncols[\"bytes\"] = Options()\nself.test_dict = Rdict(path, options=opts, column_families=cols)\n```\n\n### Reopening RocksDB Reads DB Options Automatically\n\n```python\nimport shutil\n\nfrom rocksdict import Rdict, Options, SliceTransform, PlainTableFactoryOptions\nimport os\n\ndef db_options():\n opt = Options()\n # create table\n opt.create_if_missing(True)\n # config to more jobs\n opt.set_max_background_jobs(os.cpu_count())\n # configure mem-table to a large value (256 MB)\n opt.set_write_buffer_size(0x10000000)\n opt.set_level_zero_file_num_compaction_trigger(4)\n # configure l0 and l1 size, let them have the same size (1 GB)\n opt.set_max_bytes_for_level_base(0x40000000)\n # 256 MB file size\n opt.set_target_file_size_base(0x10000000)\n # use a smaller compaction multiplier\n opt.set_max_bytes_for_level_multiplier(4.0)\n # use 8-byte prefix (2 ^ 64 is far enough for transaction counts)\n opt.set_prefix_extractor(SliceTransform.create_max_len_prefix(8))\n # set to plain-table\n opt.set_plain_table_factory(PlainTableFactoryOptions())\n return opt\n\n\n# create DB\ndb = Rdict(\"./some_path\", db_options())\ndb[0] = 1\ndb.close()\n\n# automatic reloading all options on reopening\ndb = Rdict(\"./some_path\")\nassert db[0] == 1\n\n# destroy\ndb.close()\nRdict.destroy(\"./some_path\")\n```\n\n## More Examples on BatchWrite, SstFileWrite, Snapshot, RocksDB Options, and etc.\n\nGo to [example](https://github.com/Congyuwang/RocksDict/tree/main/examples) folder.\n\n## Limitations\n\nCurrently, do not support merge operation and custom comparator.\n\n## Full Documentation\n\nSee [rocksdict documentation](https://congyuwang.github.io/RocksDict/rocksdict.html).\n\n",
"bugtrack_url": null,
"license": null,
"summary": "Rocksdb Python Binding",
"version": "0.3.25",
"project_urls": null,
"split_keywords": [
"rocksdb",
" dbm",
" dict",
" key-value"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "993864351e406e86b0c1eb984575b98820a0006ae652b39416caf5038e5a4641",
"md5": "0454f18c9f752f35a513b1b8532e5ea9",
"sha256": "21a2db5f131711d7451949671af40d7221c8238517b1a7f97d6c06da7fd336a2"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp310-cp310-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "0454f18c9f752f35a513b1b8532e5ea9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 3837443,
"upload_time": "2024-12-14T05:11:50",
"upload_time_iso_8601": "2024-12-14T05:11:50.849135Z",
"url": "https://files.pythonhosted.org/packages/99/38/64351e406e86b0c1eb984575b98820a0006ae652b39416caf5038e5a4641/rocksdict-0.3.25-cp310-cp310-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fbb17d528ca91d1e64de44083493d82ae7c3652f2505f8a197108fbd918d3ee2",
"md5": "68da1f2b0534316a3d80171642cd45d9",
"sha256": "b2c855ee29156ac6dea179dc58419ead1e3d88c3ef5b34a1bb7a38d8c69926a8"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "68da1f2b0534316a3d80171642cd45d9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 3428657,
"upload_time": "2024-12-14T05:11:54",
"upload_time_iso_8601": "2024-12-14T05:11:54.377606Z",
"url": "https://files.pythonhosted.org/packages/fb/b1/7d528ca91d1e64de44083493d82ae7c3652f2505f8a197108fbd918d3ee2/rocksdict-0.3.25-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af80d40e9140c937af7652f8488d2183b805a533f974f6090af5afb237a0a3aa",
"md5": "f963aa510c1192645f6282351055c22b",
"sha256": "5ece7498496acac2afda15630a3e049ac693a27828b1692106d8579108fe64e8"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f963aa510c1192645f6282351055c22b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 3789222,
"upload_time": "2024-12-14T05:11:57",
"upload_time_iso_8601": "2024-12-14T05:11:57.234979Z",
"url": "https://files.pythonhosted.org/packages/af/80/d40e9140c937af7652f8488d2183b805a533f974f6090af5afb237a0a3aa/rocksdict-0.3.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "57119ee33edd4fb44c1ee097895b82f96a5c592ce9f47a4ab2e09072c4d6ac64",
"md5": "f6624b6a206953c9d9576743e4c5e9de",
"sha256": "3e04ec3232eda99eb58257cd5bab760bcc33c499ed20913ffff9222e42fe9979"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f6624b6a206953c9d9576743e4c5e9de",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4001903,
"upload_time": "2024-12-14T05:11:59",
"upload_time_iso_8601": "2024-12-14T05:11:59.516128Z",
"url": "https://files.pythonhosted.org/packages/57/11/9ee33edd4fb44c1ee097895b82f96a5c592ce9f47a4ab2e09072c4d6ac64/rocksdict-0.3.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45b1ca64c16f5c9af2a36cb65113f117e1774af6cba31fa9bebbe8d7b2096d8f",
"md5": "8ccfed9785781d18cdfa8135d75b7da8",
"sha256": "140710704f6a291ade43cfcdc05ebf75f6514458181830aafbdaebce0e03df8a"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp310-cp310-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "8ccfed9785781d18cdfa8135d75b7da8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 3799923,
"upload_time": "2024-12-14T05:12:03",
"upload_time_iso_8601": "2024-12-14T05:12:03.329794Z",
"url": "https://files.pythonhosted.org/packages/45/b1/ca64c16f5c9af2a36cb65113f117e1774af6cba31fa9bebbe8d7b2096d8f/rocksdict-0.3.25-cp310-cp310-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f81d8c8adea37de5141ab5049f6f2ada871b772ca31b2cc1a6a1c7d9174f8a63",
"md5": "3687a694fcedbc4e0085081f1e8d1562",
"sha256": "71c4aeef4a9cab52032c828373f361c8850e09afb2718e5d68c29f7dccbac729"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "3687a694fcedbc4e0085081f1e8d1562",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4057139,
"upload_time": "2024-12-14T05:12:06",
"upload_time_iso_8601": "2024-12-14T05:12:06.534341Z",
"url": "https://files.pythonhosted.org/packages/f8/1d/8c8adea37de5141ab5049f6f2ada871b772ca31b2cc1a6a1c7d9174f8a63/rocksdict-0.3.25-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aae7c963f349c0ff28e2fc17c593282a449eb6189de2d627caf05b36cba361fc",
"md5": "d4e7f6ef779b28c988f3c50c70591fad",
"sha256": "59a13bbd61d6582cb9fcc567472dcbed0406725bf2a1632ddd13a94fb2ccb476"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d4e7f6ef779b28c988f3c50c70591fad",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4731121,
"upload_time": "2024-12-14T05:12:08",
"upload_time_iso_8601": "2024-12-14T05:12:08.350610Z",
"url": "https://files.pythonhosted.org/packages/aa/e7/c963f349c0ff28e2fc17c593282a449eb6189de2d627caf05b36cba361fc/rocksdict-0.3.25-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f4d21e61d4e9852ba0d218c95f1daf5e54ec385048fab651fc066be2ab493776",
"md5": "34238cb3add868d9894c67e9575b3b94",
"sha256": "c28b8335d7ed902c07bbf81434c0ee0a0f348bc1b9439ceac1297ec310413d94"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "34238cb3add868d9894c67e9575b3b94",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 5043749,
"upload_time": "2024-12-14T05:12:10",
"upload_time_iso_8601": "2024-12-14T05:12:10.191559Z",
"url": "https://files.pythonhosted.org/packages/f4/d2/1e61d4e9852ba0d218c95f1daf5e54ec385048fab651fc066be2ab493776/rocksdict-0.3.25-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af0fa26bfd6b07d735b37c56b389deca5efefe3dc3987a7aa45d624ad69e36b6",
"md5": "e5ca2b0df350781fdbee2012ffffff59",
"sha256": "90659b4547c2c50b0639f97f641fe927675902444761f7094d79c6acd60d7cbc"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "e5ca2b0df350781fdbee2012ffffff59",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 3741519,
"upload_time": "2024-12-14T05:12:13",
"upload_time_iso_8601": "2024-12-14T05:12:13.323207Z",
"url": "https://files.pythonhosted.org/packages/af/0f/a26bfd6b07d735b37c56b389deca5efefe3dc3987a7aa45d624ad69e36b6/rocksdict-0.3.25-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b40d033657c6f1440852eb510d0da5fadd5d42e92174d885516517c3b09d4b04",
"md5": "e0aeb634f0b5d606a7261fbe14353f1c",
"sha256": "d92048af17fe3b56382f485cf3f6d8da391d3be4c596c69d9d1930b25fd9dfd8"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp311-cp311-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "e0aeb634f0b5d606a7261fbe14353f1c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 3837394,
"upload_time": "2024-12-14T05:12:16",
"upload_time_iso_8601": "2024-12-14T05:12:16.419472Z",
"url": "https://files.pythonhosted.org/packages/b4/0d/033657c6f1440852eb510d0da5fadd5d42e92174d885516517c3b09d4b04/rocksdict-0.3.25-cp311-cp311-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6ce46c236b5de2013bba1b7a8822ebf5cc72729f6ed0839c08c35ffb5d0d3c17",
"md5": "6a9ff1f93bfa1e97082464db54bf3040",
"sha256": "e61c77e4c598407f23ea6fa9b23ec7115e555e0040e47324fa79a4010448422f"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6a9ff1f93bfa1e97082464db54bf3040",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 3428543,
"upload_time": "2024-12-14T05:12:18",
"upload_time_iso_8601": "2024-12-14T05:12:18.051430Z",
"url": "https://files.pythonhosted.org/packages/6c/e4/6c236b5de2013bba1b7a8822ebf5cc72729f6ed0839c08c35ffb5d0d3c17/rocksdict-0.3.25-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d181cba1110a3487680b556c3aa435a7bb08ea3e56138b88dd1b2c028ec1c434",
"md5": "8e3ee5c91fca5f16a17f729388a4c671",
"sha256": "e44f6c973e258b88d9fe26cfab21c1259006bd02624f2ad006296b741ad147bc"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8e3ee5c91fca5f16a17f729388a4c671",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 3788935,
"upload_time": "2024-12-14T05:12:21",
"upload_time_iso_8601": "2024-12-14T05:12:21.332195Z",
"url": "https://files.pythonhosted.org/packages/d1/81/cba1110a3487680b556c3aa435a7bb08ea3e56138b88dd1b2c028ec1c434/rocksdict-0.3.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2123c409313ed6dffbe1c6b7eab4a3bf80472001db1c917c9a8fc2acdcddf8f6",
"md5": "b7a735966ff4faa56a44da076367322d",
"sha256": "718d75941d7a6a150b898888983206ee97bbcb07ff4de212ada65e3fe4ecb715"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b7a735966ff4faa56a44da076367322d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4001774,
"upload_time": "2024-12-14T05:12:23",
"upload_time_iso_8601": "2024-12-14T05:12:23.549867Z",
"url": "https://files.pythonhosted.org/packages/21/23/c409313ed6dffbe1c6b7eab4a3bf80472001db1c917c9a8fc2acdcddf8f6/rocksdict-0.3.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "349a205e638dc9d5d39981f551c757711339469491c6f596db8fc345c5192154",
"md5": "37346330d5ded29788bb5a93d6b592af",
"sha256": "e1d39321b4d834677b712eb275f466808143693512fbbc603c20a06cfb67c5d1"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp311-cp311-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "37346330d5ded29788bb5a93d6b592af",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 3800037,
"upload_time": "2024-12-14T05:12:26",
"upload_time_iso_8601": "2024-12-14T05:12:26.582082Z",
"url": "https://files.pythonhosted.org/packages/34/9a/205e638dc9d5d39981f551c757711339469491c6f596db8fc345c5192154/rocksdict-0.3.25-cp311-cp311-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46ae8c0ce2590f7d399bfb6af66b057a385491eb66f58a6bd83d89ac2b1ed795",
"md5": "bbdfd043bb4fe043b8bfdf6b412e8413",
"sha256": "018c94d83c29e5714febec3ec399e08fb680812f81067bd76ce9e92142a77959"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "bbdfd043bb4fe043b8bfdf6b412e8413",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4056959,
"upload_time": "2024-12-14T05:12:28",
"upload_time_iso_8601": "2024-12-14T05:12:28.116888Z",
"url": "https://files.pythonhosted.org/packages/46/ae/8c0ce2590f7d399bfb6af66b057a385491eb66f58a6bd83d89ac2b1ed795/rocksdict-0.3.25-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a45bc5186ed60993184a2b87022f754a40c32c6d4be95d324c2c86b0fca283f9",
"md5": "852d70b8ed187a89a1650530b1432108",
"sha256": "700ba7171a09724be7eda8e8014290a59af78d09b9915727452fd11a2364c43b"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "852d70b8ed187a89a1650530b1432108",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4731031,
"upload_time": "2024-12-14T05:12:29",
"upload_time_iso_8601": "2024-12-14T05:12:29.683901Z",
"url": "https://files.pythonhosted.org/packages/a4/5b/c5186ed60993184a2b87022f754a40c32c6d4be95d324c2c86b0fca283f9/rocksdict-0.3.25-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "123374430450f591a0eafa7ce0de22e476b0b9cbd27331a583a71cc82a16128f",
"md5": "d135d03891cfec33c26f2f54fb078fae",
"sha256": "8081e8f9b883c85c4c76023074fb2c44e18c0a5a2720a396b71751325315367a"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d135d03891cfec33c26f2f54fb078fae",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 5043370,
"upload_time": "2024-12-14T05:12:31",
"upload_time_iso_8601": "2024-12-14T05:12:31.192406Z",
"url": "https://files.pythonhosted.org/packages/12/33/74430450f591a0eafa7ce0de22e476b0b9cbd27331a583a71cc82a16128f/rocksdict-0.3.25-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e9f78cedb15aa1cc0ec8319f65f38f536f9726e130d72db2b1a6914d71653dc",
"md5": "e2d906e81fd45258f4bcefb7a954d5e6",
"sha256": "4597b02353c34df7b612f062245d525222368c87deb0d1e824632036a3693fa8"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "e2d906e81fd45258f4bcefb7a954d5e6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 3741505,
"upload_time": "2024-12-14T05:12:32",
"upload_time_iso_8601": "2024-12-14T05:12:32.815933Z",
"url": "https://files.pythonhosted.org/packages/3e/9f/78cedb15aa1cc0ec8319f65f38f536f9726e130d72db2b1a6914d71653dc/rocksdict-0.3.25-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "da20b054bd432889cc8005e6c1aaa3c5715610cba38a7fb8a257ad538f0771a2",
"md5": "fc0d6c89245db123bbe283de38a0d406",
"sha256": "c72b788badccc9359cd5052926a46c4d897864a2809447b327a1fb735b0c9dfb"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp312-cp312-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "fc0d6c89245db123bbe283de38a0d406",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 3839923,
"upload_time": "2024-12-14T05:12:35",
"upload_time_iso_8601": "2024-12-14T05:12:35.736070Z",
"url": "https://files.pythonhosted.org/packages/da/20/b054bd432889cc8005e6c1aaa3c5715610cba38a7fb8a257ad538f0771a2/rocksdict-0.3.25-cp312-cp312-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16dd58ea880e455c4d5114608f41dfb73521b66afad65afa8e40d1f6ed1970bd",
"md5": "30c9f92c91266c39f3bf8803ba3b7400",
"sha256": "2b9211ac00d598a7ff158dab3f55fdcad5e138b86fd1afd9bc53d1beb443eb0d"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "30c9f92c91266c39f3bf8803ba3b7400",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 3432929,
"upload_time": "2024-12-14T05:12:38",
"upload_time_iso_8601": "2024-12-14T05:12:38.458122Z",
"url": "https://files.pythonhosted.org/packages/16/dd/58ea880e455c4d5114608f41dfb73521b66afad65afa8e40d1f6ed1970bd/rocksdict-0.3.25-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "717000fef7100acb480e5ec1c5afa6a236e9769aad730536fbcc2634570c689b",
"md5": "fdc7216cfa41290f62645c9eaffd7989",
"sha256": "aa7bb105be5acaf5bafad29ae622729dc4da83780b52e364b236a08d10dad748"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fdc7216cfa41290f62645c9eaffd7989",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 3792215,
"upload_time": "2024-12-14T05:12:41",
"upload_time_iso_8601": "2024-12-14T05:12:41.232327Z",
"url": "https://files.pythonhosted.org/packages/71/70/00fef7100acb480e5ec1c5afa6a236e9769aad730536fbcc2634570c689b/rocksdict-0.3.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0603b128f2d99d2883fc184e7879ba7962540ffa855186e88f89fc523bb3acb3",
"md5": "248551c111c005ec73fb4d0f47f38573",
"sha256": "af241476d7b0049b222e663f699bd2bc7a25b9206ee9793f7bbe17ca32109306"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "248551c111c005ec73fb4d0f47f38573",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4005507,
"upload_time": "2024-12-14T05:12:42",
"upload_time_iso_8601": "2024-12-14T05:12:42.846371Z",
"url": "https://files.pythonhosted.org/packages/06/03/b128f2d99d2883fc184e7879ba7962540ffa855186e88f89fc523bb3acb3/rocksdict-0.3.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74d02ee2b8598de0d87ffa5653c9145ceed8baea19b502e91b37b2ab07a3ea29",
"md5": "c856ac646d08abe9081f73ee6dc78fa2",
"sha256": "56c570d55d615e8ba75d19cd7fdb7397aaff07062e21e8d74f17397efbe7c457"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp312-cp312-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "c856ac646d08abe9081f73ee6dc78fa2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 3804390,
"upload_time": "2024-12-14T05:12:44",
"upload_time_iso_8601": "2024-12-14T05:12:44.442609Z",
"url": "https://files.pythonhosted.org/packages/74/d0/2ee2b8598de0d87ffa5653c9145ceed8baea19b502e91b37b2ab07a3ea29/rocksdict-0.3.25-cp312-cp312-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f75da08eb8c21e736b94a64225dc3fc2b3b87ad7a5f6a3e5bf144f75438fac5",
"md5": "0eceb2fdf96f114e02444d7bc9f06136",
"sha256": "dc47220ad9d30dcf124e62e63193a5aedb6419b18ac7b591ff1357eded6a81ff"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "0eceb2fdf96f114e02444d7bc9f06136",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4060983,
"upload_time": "2024-12-14T05:12:46",
"upload_time_iso_8601": "2024-12-14T05:12:46.452221Z",
"url": "https://files.pythonhosted.org/packages/8f/75/da08eb8c21e736b94a64225dc3fc2b3b87ad7a5f6a3e5bf144f75438fac5/rocksdict-0.3.25-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6683274d71ad9014a5c6d1d956cb33127abaee8b3ff8f6f5e7d1f4c284d6242",
"md5": "eaeabdd000659bb5f8c090756f48cd22",
"sha256": "3b73ddaedab0590e46e8656c6ce68bf38dda2de2562ead0a5ee7d0cecd24e3a5"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "eaeabdd000659bb5f8c090756f48cd22",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4733836,
"upload_time": "2024-12-14T05:12:48",
"upload_time_iso_8601": "2024-12-14T05:12:48.933180Z",
"url": "https://files.pythonhosted.org/packages/e6/68/3274d71ad9014a5c6d1d956cb33127abaee8b3ff8f6f5e7d1f4c284d6242/rocksdict-0.3.25-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc02957206f1d35522ddcb284f162279bf5efe80b9ddcd30c929ad93c2971493",
"md5": "ad918eee63a184c31c7467a825577f8b",
"sha256": "74e6cc1cc45314d1d0fc765f105359dfdfe9abfc082ec7aedec592ee35fed306"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ad918eee63a184c31c7467a825577f8b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 5047827,
"upload_time": "2024-12-14T05:12:51",
"upload_time_iso_8601": "2024-12-14T05:12:51.854047Z",
"url": "https://files.pythonhosted.org/packages/bc/02/957206f1d35522ddcb284f162279bf5efe80b9ddcd30c929ad93c2971493/rocksdict-0.3.25-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc446ee01fa1c101d679daebd60567f7370aaecd12711634c556bf2abf655a9c",
"md5": "f3193684acc2377bee34228e3af28dd4",
"sha256": "44f118b5c400bb55fdde8a00cbbc5992cc22b3d3e64ce6a907ddf013a5a306fd"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "f3193684acc2377bee34228e3af28dd4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 3745449,
"upload_time": "2024-12-14T05:12:54",
"upload_time_iso_8601": "2024-12-14T05:12:54.733769Z",
"url": "https://files.pythonhosted.org/packages/cc/44/6ee01fa1c101d679daebd60567f7370aaecd12711634c556bf2abf655a9c/rocksdict-0.3.25-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f12285628d17507a2cc4063f9092d23d853f1014c78518c27da4a1bcbd09926",
"md5": "e9b143106618c8d808b4b6e4fb7d1dff",
"sha256": "61b48f19a3cbed861a6d0343fc1e7106c80c337f04f8b9ac24fe705088ff8007"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp313-cp313-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "e9b143106618c8d808b4b6e4fb7d1dff",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 3839517,
"upload_time": "2024-12-14T05:12:56",
"upload_time_iso_8601": "2024-12-14T05:12:56.315601Z",
"url": "https://files.pythonhosted.org/packages/6f/12/285628d17507a2cc4063f9092d23d853f1014c78518c27da4a1bcbd09926/rocksdict-0.3.25-cp313-cp313-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ebb8685fc6f9c8bbf7db29f95775873d9244542118ae675c2cfc22dffdc9d91a",
"md5": "8fdc7b6ce414ff5d09964d9e9929427c",
"sha256": "f16e0d943bc1ae748f9ecd34bc337449462af4e41d7f7ff29ce41a3b3fd3a4a3"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8fdc7b6ce414ff5d09964d9e9929427c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 3432633,
"upload_time": "2024-12-14T05:12:58",
"upload_time_iso_8601": "2024-12-14T05:12:58.023308Z",
"url": "https://files.pythonhosted.org/packages/eb/b8/685fc6f9c8bbf7db29f95775873d9244542118ae675c2cfc22dffdc9d91a/rocksdict-0.3.25-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3ae6f5436169a246e875a50e98bc62dec8b77f3a89c7780213252e062b6a3ac",
"md5": "ad1f0bd68135fd6493e7bb5b1c6bd2ba",
"sha256": "3aad156bdc364c3abe5bf1045c344727ae5f9de8b2fd87a29294a91df0395151"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ad1f0bd68135fd6493e7bb5b1c6bd2ba",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 3792139,
"upload_time": "2024-12-14T05:13:00",
"upload_time_iso_8601": "2024-12-14T05:13:00.481948Z",
"url": "https://files.pythonhosted.org/packages/e3/ae/6f5436169a246e875a50e98bc62dec8b77f3a89c7780213252e062b6a3ac/rocksdict-0.3.25-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5709d19fb003e8cda0a407452fdd853ba31b1f0943f3ce0afffaa1f194f7addd",
"md5": "806295586b3bbfdf64f782db7460e3e8",
"sha256": "87cf2e108b9eba49e5e05b8a2508af039650d9b91081343f0d9df92742b2926f"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "806295586b3bbfdf64f782db7460e3e8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4004970,
"upload_time": "2024-12-14T05:13:03",
"upload_time_iso_8601": "2024-12-14T05:13:03.547557Z",
"url": "https://files.pythonhosted.org/packages/57/09/d19fb003e8cda0a407452fdd853ba31b1f0943f3ce0afffaa1f194f7addd/rocksdict-0.3.25-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1fa69d7a63f3bceaa867319ba80172ce49fac018fefbffd30bb1a2a8d3e4f49c",
"md5": "827a1c1929b17cb234f345db7eb2e429",
"sha256": "fed9932f800a1fac02cbf0824305c6d78adbd61a35e0437161023263b236507e"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp313-cp313-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "827a1c1929b17cb234f345db7eb2e429",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 3803438,
"upload_time": "2024-12-14T05:13:05",
"upload_time_iso_8601": "2024-12-14T05:13:05.247431Z",
"url": "https://files.pythonhosted.org/packages/1f/a6/9d7a63f3bceaa867319ba80172ce49fac018fefbffd30bb1a2a8d3e4f49c/rocksdict-0.3.25-cp313-cp313-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cac9355ec66af66f25d5130712f18d07ef1cd677582cd106438d5b1570db0b3b",
"md5": "963604d3df56203721221d10148f39e9",
"sha256": "10109d575538d527ab7de4316684003b6c29668f038722e27acaef64071ca481"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp313-cp313-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "963604d3df56203721221d10148f39e9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4060553,
"upload_time": "2024-12-14T05:13:08",
"upload_time_iso_8601": "2024-12-14T05:13:08.148757Z",
"url": "https://files.pythonhosted.org/packages/ca/c9/355ec66af66f25d5130712f18d07ef1cd677582cd106438d5b1570db0b3b/rocksdict-0.3.25-cp313-cp313-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "824a2344f86e62c714fc2fcd71f30141ed2e9f6c016cb027dcbcbd764613870f",
"md5": "0f60ba5248a35b4e29134bee6ed58e13",
"sha256": "414a365ac3d9595cc8e4c274fc0468a2681cd7b37fb2b48123ee612684db68b2"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0f60ba5248a35b4e29134bee6ed58e13",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4733661,
"upload_time": "2024-12-14T05:13:10",
"upload_time_iso_8601": "2024-12-14T05:13:10.331844Z",
"url": "https://files.pythonhosted.org/packages/82/4a/2344f86e62c714fc2fcd71f30141ed2e9f6c016cb027dcbcbd764613870f/rocksdict-0.3.25-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "94e9c4694a28da9de641515de34be4d2351b268a074a9c9f7d61e4c86165ef31",
"md5": "997e0cf253c36d6fa47a9ac5781d68cd",
"sha256": "51cc1354a4d88362839ed6ba47f60c644461ed392fcf1bef33bc32d745c26520"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "997e0cf253c36d6fa47a9ac5781d68cd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 5047453,
"upload_time": "2024-12-14T05:13:12",
"upload_time_iso_8601": "2024-12-14T05:13:12.151789Z",
"url": "https://files.pythonhosted.org/packages/94/e9/c4694a28da9de641515de34be4d2351b268a074a9c9f7d61e4c86165ef31/rocksdict-0.3.25-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "30b7c1ba3128892e437b9bacf5c9e83b69a226325582171afaa159fc3434ee72",
"md5": "fbfc1544edd2ee1205be34515ef6983b",
"sha256": "0cf79a46844aa36243b21b94bcf10322d244469835ca9e51ac525227ff13aa9f"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "fbfc1544edd2ee1205be34515ef6983b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 3745178,
"upload_time": "2024-12-14T05:13:13",
"upload_time_iso_8601": "2024-12-14T05:13:13.719944Z",
"url": "https://files.pythonhosted.org/packages/30/b7/c1ba3128892e437b9bacf5c9e83b69a226325582171afaa159fc3434ee72/rocksdict-0.3.25-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e97150956dd432bfc3fd1f4c165fa1c2444a3678735ee639fee5d361055bd8e2",
"md5": "578b9bb876018b6b1d6d77e981c5867c",
"sha256": "bd5479d722707d07b879b5e663424aa471c10aa37ea1556e8f0bbfa3a7f0d838"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp37-cp37m-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "578b9bb876018b6b1d6d77e981c5867c",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 3837922,
"upload_time": "2024-12-14T05:13:15",
"upload_time_iso_8601": "2024-12-14T05:13:15.439749Z",
"url": "https://files.pythonhosted.org/packages/e9/71/50956dd432bfc3fd1f4c165fa1c2444a3678735ee639fee5d361055bd8e2/rocksdict-0.3.25-cp37-cp37m-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "92bc61203d55e2b4f5f8e531432c59dd53655f08c26352debde16c0830f61f11",
"md5": "37e59b72b2a371a25fba07990f6ff95f",
"sha256": "7a8820c068189d49225cb1534212f30ffb959f1222243296266f7724a7987448"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp37-cp37m-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "37e59b72b2a371a25fba07990f6ff95f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 3428817,
"upload_time": "2024-12-14T05:13:16",
"upload_time_iso_8601": "2024-12-14T05:13:16.927897Z",
"url": "https://files.pythonhosted.org/packages/92/bc/61203d55e2b4f5f8e531432c59dd53655f08c26352debde16c0830f61f11/rocksdict-0.3.25-cp37-cp37m-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "90f9e925d5168d7a291191ed809b5e9d9370436fb7a0a3c628cca75aa0e6e632",
"md5": "e55c0b8085b342b1651ccd729f2d8f53",
"sha256": "d222de7ef08e26c4d22ba01ea87b2533b96bdef8f034fd05d8d216f305ee1361"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e55c0b8085b342b1651ccd729f2d8f53",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 3789444,
"upload_time": "2024-12-14T05:13:18",
"upload_time_iso_8601": "2024-12-14T05:13:18.579101Z",
"url": "https://files.pythonhosted.org/packages/90/f9/e925d5168d7a291191ed809b5e9d9370436fb7a0a3c628cca75aa0e6e632/rocksdict-0.3.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d25add1ce2edc0896444c0f48b6c2764db679a3348028574d220b2659478c6d2",
"md5": "1c52539fb112a09ce9cea4b84b2636c3",
"sha256": "eac1786b61c8a464489d3752aab68a9407d5fc074058aee64a33e5c62b753c29"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1c52539fb112a09ce9cea4b84b2636c3",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 4002716,
"upload_time": "2024-12-14T05:13:20",
"upload_time_iso_8601": "2024-12-14T05:13:20.225274Z",
"url": "https://files.pythonhosted.org/packages/d2/5a/dd1ce2edc0896444c0f48b6c2764db679a3348028574d220b2659478c6d2/rocksdict-0.3.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "88a9fa8eb34b60c3a33bce30d088623debc5952ed119cd0070ef5769cace2d2a",
"md5": "5e12a6c09debad49ac44344c02c9dd9b",
"sha256": "62ae1abc4e00d3cbb20feff3bc9ad004067b3b67ce0bb349c28bec1cc0ae275f"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp37-cp37m-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "5e12a6c09debad49ac44344c02c9dd9b",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 3800460,
"upload_time": "2024-12-14T05:13:23",
"upload_time_iso_8601": "2024-12-14T05:13:23.011343Z",
"url": "https://files.pythonhosted.org/packages/88/a9/fa8eb34b60c3a33bce30d088623debc5952ed119cd0070ef5769cace2d2a/rocksdict-0.3.25-cp37-cp37m-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a5c5fc2397e1304df4676a14969bc791ea7cf0dfc2025d3f8a205d9ff206031",
"md5": "7d71b79d478d54233e7a03386bdcf561",
"sha256": "499550a3d1f7019cceb212d27b3b1a8c38238538fcd33b2771f031999b80f011"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp37-cp37m-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "7d71b79d478d54233e7a03386bdcf561",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 4057553,
"upload_time": "2024-12-14T05:13:24",
"upload_time_iso_8601": "2024-12-14T05:13:24.669035Z",
"url": "https://files.pythonhosted.org/packages/1a/5c/5fc2397e1304df4676a14969bc791ea7cf0dfc2025d3f8a205d9ff206031/rocksdict-0.3.25-cp37-cp37m-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cd097b4ec2bcb7941ef5ba5848182874fc339686565e0bf7e380aac8bbc5c09f",
"md5": "0e49313f4bda9c99594f0c9069fb2925",
"sha256": "cffc549c0e50e7080bfb85feea0cc1fdde4670d7998a278aece3746c87bb21e4"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp37-cp37m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0e49313f4bda9c99594f0c9069fb2925",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 4731224,
"upload_time": "2024-12-14T05:13:27",
"upload_time_iso_8601": "2024-12-14T05:13:27.018294Z",
"url": "https://files.pythonhosted.org/packages/cd/09/7b4ec2bcb7941ef5ba5848182874fc339686565e0bf7e380aac8bbc5c09f/rocksdict-0.3.25-cp37-cp37m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "976b8c79421a38f186cba856724139a3b963fa80109aa4d3d09c365e1f0c2d80",
"md5": "3e55e320a6c005743a2f3b5b5bd767cf",
"sha256": "572f4ff8435a8698367fd29f85147c1295545c188f08e06d742a0c9873eaa22d"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3e55e320a6c005743a2f3b5b5bd767cf",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 5044284,
"upload_time": "2024-12-14T05:13:28",
"upload_time_iso_8601": "2024-12-14T05:13:28.648356Z",
"url": "https://files.pythonhosted.org/packages/97/6b/8c79421a38f186cba856724139a3b963fa80109aa4d3d09c365e1f0c2d80/rocksdict-0.3.25-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d16171f42eb5032f3944d5faedf6ff1194b62f9a8f1c510e1b2ab3938659f67",
"md5": "6f1ca707310476d4ac1d3a0f198e984d",
"sha256": "b3d2a55b2020b7b9bab9caa1ad414520ab9ca1c17767e5ded9b314e14a486e20"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "6f1ca707310476d4ac1d3a0f198e984d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 3741516,
"upload_time": "2024-12-14T05:13:31",
"upload_time_iso_8601": "2024-12-14T05:13:31.624581Z",
"url": "https://files.pythonhosted.org/packages/5d/16/171f42eb5032f3944d5faedf6ff1194b62f9a8f1c510e1b2ab3938659f67/rocksdict-0.3.25-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a8d14458d2cecaeee903970bb3169bf79c9b6b21d18e6da669a4cea50e88cee",
"md5": "ae6c852c18847aaf7265468b5967cdd2",
"sha256": "60c9359de6768b375fa5460b0aa12c81bfd4e5a77c69a09655a245e64727f32b"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp38-cp38-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "ae6c852c18847aaf7265468b5967cdd2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 3837814,
"upload_time": "2024-12-14T05:13:33",
"upload_time_iso_8601": "2024-12-14T05:13:33.884310Z",
"url": "https://files.pythonhosted.org/packages/7a/8d/14458d2cecaeee903970bb3169bf79c9b6b21d18e6da669a4cea50e88cee/rocksdict-0.3.25-cp38-cp38-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a89f7550bcfa5649c1fd565246996127daa0cdcaa458f15aada4622be8eb1d18",
"md5": "008c4aedc1c2ca61a846faf7f89be5a2",
"sha256": "4b81a2c98283190191aba08f2111a0be9bf023fd126b07a6081452bca5de7433"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "008c4aedc1c2ca61a846faf7f89be5a2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 3428895,
"upload_time": "2024-12-14T05:13:35",
"upload_time_iso_8601": "2024-12-14T05:13:35.611168Z",
"url": "https://files.pythonhosted.org/packages/a8/9f/7550bcfa5649c1fd565246996127daa0cdcaa458f15aada4622be8eb1d18/rocksdict-0.3.25-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e24e5bd3d45a44ce166184bac4bcffc4485ccb814bfddfbe5ce2142d41b191e",
"md5": "81033a8d8e054888f22a0c1d705ea59d",
"sha256": "3d48881c8876d131fd454a2929783f4823eeb013b636a31fe53980daf31a227c"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "81033a8d8e054888f22a0c1d705ea59d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 3789513,
"upload_time": "2024-12-14T05:13:37",
"upload_time_iso_8601": "2024-12-14T05:13:37.214340Z",
"url": "https://files.pythonhosted.org/packages/6e/24/e5bd3d45a44ce166184bac4bcffc4485ccb814bfddfbe5ce2142d41b191e/rocksdict-0.3.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7cc88e108e6e93e362b1dcfc72ae1699448e27b263c93d02da3227afbb8d5779",
"md5": "a199af6f859dff4f7ea94c8c1a3b3f6f",
"sha256": "6bbaed3dd4712595490568ae632f55b10c62c1354b5656f2d77aafc580d79842"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a199af6f859dff4f7ea94c8c1a3b3f6f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4002658,
"upload_time": "2024-12-14T05:13:40",
"upload_time_iso_8601": "2024-12-14T05:13:40.243589Z",
"url": "https://files.pythonhosted.org/packages/7c/c8/8e108e6e93e362b1dcfc72ae1699448e27b263c93d02da3227afbb8d5779/rocksdict-0.3.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "63571ab944104aef6d89049485152cbfea4d1fc3a7c269a1790205e363d9bc2e",
"md5": "403dc1ed7657c996d81c34e421444ab1",
"sha256": "d31bd73067c2591fd67898a370b641a8386c0c9c2c31d0c5c83d000f585beab0"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp38-cp38-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "403dc1ed7657c996d81c34e421444ab1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 3800184,
"upload_time": "2024-12-14T05:13:41",
"upload_time_iso_8601": "2024-12-14T05:13:41.877517Z",
"url": "https://files.pythonhosted.org/packages/63/57/1ab944104aef6d89049485152cbfea4d1fc3a7c269a1790205e363d9bc2e/rocksdict-0.3.25-cp38-cp38-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a89e393061e6bdde2b4de3f6b097a92372ada6e4793b63582aec46cfc2568689",
"md5": "801d9dcba28b80028c5610c2bf3aad9e",
"sha256": "c01e5c78a6332a983a2f22758808f412844acd44cd0018362d28c5b0c7a6b900"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp38-cp38-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "801d9dcba28b80028c5610c2bf3aad9e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4057796,
"upload_time": "2024-12-14T05:13:44",
"upload_time_iso_8601": "2024-12-14T05:13:44.637276Z",
"url": "https://files.pythonhosted.org/packages/a8/9e/393061e6bdde2b4de3f6b097a92372ada6e4793b63582aec46cfc2568689/rocksdict-0.3.25-cp38-cp38-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f31ba8a676ea75cd0ae220b72c437ca5d862e475857c840af53b7b82579312de",
"md5": "c03ca0c6b938ae0557134cd099bbcb66",
"sha256": "7713481aa530c6e3cf01a77b497996e054e9b457f6055dc9a11b0b2c77af0bda"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "c03ca0c6b938ae0557134cd099bbcb66",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4731217,
"upload_time": "2024-12-14T05:13:46",
"upload_time_iso_8601": "2024-12-14T05:13:46.334731Z",
"url": "https://files.pythonhosted.org/packages/f3/1b/a8a676ea75cd0ae220b72c437ca5d862e475857c840af53b7b82579312de/rocksdict-0.3.25-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19decb5cbaf928cf605ac290b59f4a1371a647a3f0588d793c45f87705666471",
"md5": "b64bc19190f8374a775a81484cba67b6",
"sha256": "6adfb28bed299ebe20bf1e320a87518c6a91777059b1616640aadbefaec4d788"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b64bc19190f8374a775a81484cba67b6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 5044272,
"upload_time": "2024-12-14T05:13:49",
"upload_time_iso_8601": "2024-12-14T05:13:49.450033Z",
"url": "https://files.pythonhosted.org/packages/19/de/cb5cbaf928cf605ac290b59f4a1371a647a3f0588d793c45f87705666471/rocksdict-0.3.25-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c43deb9b632b1831b3ebe59365746c8cd79b5bd3e043984ec87f21d1fd9bd61",
"md5": "7ca409d20968abb757ffafb0b51aa0c2",
"sha256": "bd1219bacedf4b90794b170affc635cc60835b84e9500ba2d6faeef436ed36fb"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "7ca409d20968abb757ffafb0b51aa0c2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 3741235,
"upload_time": "2024-12-14T05:13:51",
"upload_time_iso_8601": "2024-12-14T05:13:51.279146Z",
"url": "https://files.pythonhosted.org/packages/1c/43/deb9b632b1831b3ebe59365746c8cd79b5bd3e043984ec87f21d1fd9bd61/rocksdict-0.3.25-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e30a44ee2ed46ac993434c2ae5a3f9cad8276204bd3ab731565346facb4c190",
"md5": "4ae09ecb7946fe0c2f534c15aee7d8d0",
"sha256": "994809bff2c98251e498e4813a408fa341a34902776590ff7ffbfc32ed4d4b1a"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp39-cp39-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "4ae09ecb7946fe0c2f534c15aee7d8d0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 3838203,
"upload_time": "2024-12-14T05:13:52",
"upload_time_iso_8601": "2024-12-14T05:13:52.843548Z",
"url": "https://files.pythonhosted.org/packages/1e/30/a44ee2ed46ac993434c2ae5a3f9cad8276204bd3ab731565346facb4c190/rocksdict-0.3.25-cp39-cp39-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "33e4baa7842363696708df52f53c534b2e6202547742a14f3f27806ab8af9f73",
"md5": "3f284dbe32a1f35ae6693270ca8a740e",
"sha256": "2ef222fe5f41e53220df0c54aae5407902ebb78ef9e40e871f482f55e3c90d6a"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3f284dbe32a1f35ae6693270ca8a740e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 3429419,
"upload_time": "2024-12-14T05:13:54",
"upload_time_iso_8601": "2024-12-14T05:13:54.378721Z",
"url": "https://files.pythonhosted.org/packages/33/e4/baa7842363696708df52f53c534b2e6202547742a14f3f27806ab8af9f73/rocksdict-0.3.25-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f8b7a562f80cbad7fac74c80c41fea50ceabafb0334bba245594d1940adf24f",
"md5": "b4cf889fb3393b290e3a80b3233349b0",
"sha256": "454f76fb31d93b7aac15b3e750d0283effcb5134a3b05eeabed450ea757d86d3"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b4cf889fb3393b290e3a80b3233349b0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 3789742,
"upload_time": "2024-12-14T05:13:55",
"upload_time_iso_8601": "2024-12-14T05:13:55.840240Z",
"url": "https://files.pythonhosted.org/packages/5f/8b/7a562f80cbad7fac74c80c41fea50ceabafb0334bba245594d1940adf24f/rocksdict-0.3.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2c3557d1c9cc55d220dc9b6a5f70b503546e139c18fa78b39747fb0e5d358f9",
"md5": "05fe2046e423a7ff59acb149633ff49c",
"sha256": "0b817a6697bebe5ff1ad4762f9db88e6b84aab8b6a7457129b78a36aba8294bb"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "05fe2046e423a7ff59acb149633ff49c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4002742,
"upload_time": "2024-12-14T05:13:57",
"upload_time_iso_8601": "2024-12-14T05:13:57.447634Z",
"url": "https://files.pythonhosted.org/packages/a2/c3/557d1c9cc55d220dc9b6a5f70b503546e139c18fa78b39747fb0e5d358f9/rocksdict-0.3.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9d6e36f35801e5d1dfc661ee6f4b2919d0de54867b04c81285877e0dc49a1958",
"md5": "c60ed244dd4bab51d66cb6761279bafd",
"sha256": "aed0ffea96a1face0bc0f17291d69f5c856c8c236362f97861b41d9a574aa227"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp39-cp39-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "c60ed244dd4bab51d66cb6761279bafd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 3800392,
"upload_time": "2024-12-14T05:13:59",
"upload_time_iso_8601": "2024-12-14T05:13:59.151053Z",
"url": "https://files.pythonhosted.org/packages/9d/6e/36f35801e5d1dfc661ee6f4b2919d0de54867b04c81285877e0dc49a1958/rocksdict-0.3.25-cp39-cp39-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e2ed6e57df8060de56fdf37c0b65e4707a51fbe2941756fa28d4e809a05a29f",
"md5": "86bfcd037c944f8ffcb78bc3710fcb54",
"sha256": "ac5b86645a7c61232cd089edc70e1732b9a9b55ad061e938985c39ce6e817e7e"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "86bfcd037c944f8ffcb78bc3710fcb54",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4057901,
"upload_time": "2024-12-14T05:14:01",
"upload_time_iso_8601": "2024-12-14T05:14:01.933347Z",
"url": "https://files.pythonhosted.org/packages/5e/2e/d6e57df8060de56fdf37c0b65e4707a51fbe2941756fa28d4e809a05a29f/rocksdict-0.3.25-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09960f0996585b814fff262d1f29f7596166b8271921f528b8db1c187d063323",
"md5": "9ce6d94f7cafda4ec8ef0dd265668601",
"sha256": "a17ca92672aee41d0fea9f41167dd05374cf03e4d81ae27d085a15d39d142c51"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "9ce6d94f7cafda4ec8ef0dd265668601",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4731537,
"upload_time": "2024-12-14T05:14:04",
"upload_time_iso_8601": "2024-12-14T05:14:04.638515Z",
"url": "https://files.pythonhosted.org/packages/09/96/0f0996585b814fff262d1f29f7596166b8271921f528b8db1c187d063323/rocksdict-0.3.25-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b21b2a4854c76467e066b4b129db664e208eab8cb805ca1a70a5b161d747feb",
"md5": "0e45c65d919216d0cf9f118d579470b1",
"sha256": "aec22464f32299216820d06e7bf32c1a2097ff476ff02838b41ea043119d38eb"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "0e45c65d919216d0cf9f118d579470b1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 5044559,
"upload_time": "2024-12-14T05:14:07",
"upload_time_iso_8601": "2024-12-14T05:14:07.530561Z",
"url": "https://files.pythonhosted.org/packages/2b/21/b2a4854c76467e066b4b129db664e208eab8cb805ca1a70a5b161d747feb/rocksdict-0.3.25-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af89ec1e413557ba67e51a1304f294581929db753285ab21f322bf9b8f614603",
"md5": "1c56ce8c1440013b1ceb7313ce4200a7",
"sha256": "29baccb2734707fe89d7d1e5b787fe1c5db56eae7e996d430c981a61dd41c683"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "1c56ce8c1440013b1ceb7313ce4200a7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 3741200,
"upload_time": "2024-12-14T05:14:09",
"upload_time_iso_8601": "2024-12-14T05:14:09.382411Z",
"url": "https://files.pythonhosted.org/packages/af/89/ec1e413557ba67e51a1304f294581929db753285ab21f322bf9b8f614603/rocksdict-0.3.25-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "744119cadc6b7ad9dbcf849a4d752858d17e155ef77952f6150e0ed943c56bdc",
"md5": "d0b8c4b60eba52ab8c977a520e6ab94b",
"sha256": "d78e8b55ace8a1ca998de6ba9a8702c108171fa68221166db3acc9c61d8de6c0"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp310-pypy310_pp73-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "d0b8c4b60eba52ab8c977a520e6ab94b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 3837004,
"upload_time": "2024-12-14T05:14:13",
"upload_time_iso_8601": "2024-12-14T05:14:13.143083Z",
"url": "https://files.pythonhosted.org/packages/74/41/19cadc6b7ad9dbcf849a4d752858d17e155ef77952f6150e0ed943c56bdc/rocksdict-0.3.25-pp310-pypy310_pp73-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d940f28ed20753994910d0067c96e9fff51e5e503776f53e4ec95880ea5eeeb6",
"md5": "4f621bc9d338b09bae0d7c44a749efe2",
"sha256": "85d57d314d3070f138d9c0ee7b46a1e89357f6630ea341750248ecafb6d02b7f"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4f621bc9d338b09bae0d7c44a749efe2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 3428293,
"upload_time": "2024-12-14T05:14:14",
"upload_time_iso_8601": "2024-12-14T05:14:14.736600Z",
"url": "https://files.pythonhosted.org/packages/d9/40/f28ed20753994910d0067c96e9fff51e5e503776f53e4ec95880ea5eeeb6/rocksdict-0.3.25-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19221ef4682f629bc2cc4c4a103161883b8443772d399c2bf7bac8c0fe8b46ca",
"md5": "3e95095661706502d293423226989e8d",
"sha256": "c826f9a57934f607bd0040e2dd09ce7df64f38b8db9055bdf565a22e31fe8254"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3e95095661706502d293423226989e8d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 3788819,
"upload_time": "2024-12-14T05:14:16",
"upload_time_iso_8601": "2024-12-14T05:14:16.314944Z",
"url": "https://files.pythonhosted.org/packages/19/22/1ef4682f629bc2cc4c4a103161883b8443772d399c2bf7bac8c0fe8b46ca/rocksdict-0.3.25-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46c7fc3c3862fc703e9cefb83e5f93a04d8bc766d9ade3c9e0cfd6f275baf726",
"md5": "8766d1e9e1836aa27b2ca26d036f775b",
"sha256": "5e5c59e0d1aa36d381dc4aa7af4053568128e9ec5e008cfc2f1140caa4c576a0"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8766d1e9e1836aa27b2ca26d036f775b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 4001652,
"upload_time": "2024-12-14T05:14:18",
"upload_time_iso_8601": "2024-12-14T05:14:18.417827Z",
"url": "https://files.pythonhosted.org/packages/46/c7/fc3c3862fc703e9cefb83e5f93a04d8bc766d9ade3c9e0cfd6f275baf726/rocksdict-0.3.25-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2789ca3c9cd28db14d95c933560e109fbf07d0abae53a682a12397cd05457632",
"md5": "86a26628f0c70eb949abbddca0df68f4",
"sha256": "8f622c31aca5d4ee9c7d1a6aa4429c3edd0845aa767c010c21c6df4397bcd565"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "86a26628f0c70eb949abbddca0df68f4",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 3799697,
"upload_time": "2024-12-14T05:14:20",
"upload_time_iso_8601": "2024-12-14T05:14:20.135414Z",
"url": "https://files.pythonhosted.org/packages/27/89/ca3c9cd28db14d95c933560e109fbf07d0abae53a682a12397cd05457632/rocksdict-0.3.25-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19c06b4018aa608115bcfc5c570663582f141f7a3ad86e837359cf98eb6cc2b6",
"md5": "5e98f71283efa3147f418d4e51af44a2",
"sha256": "eaf423c4372464c2a63927ccaf403e24e825fe63541b5a907fd54896d4626bd8"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "5e98f71283efa3147f418d4e51af44a2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 4057243,
"upload_time": "2024-12-14T05:14:21",
"upload_time_iso_8601": "2024-12-14T05:14:21.816776Z",
"url": "https://files.pythonhosted.org/packages/19/c0/6b4018aa608115bcfc5c570663582f141f7a3ad86e837359cf98eb6cc2b6/rocksdict-0.3.25-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f855cf8b962f5c81408c51b4257cb5b6d95dcbaad2a5169779e6f82887de17d",
"md5": "cffa9287407fbb440b1f5c43110628f0",
"sha256": "ec6a055146d226ac840ad7597ba18a2da8980fe0a02dac8aa9021845f8c207b1"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "cffa9287407fbb440b1f5c43110628f0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 4730987,
"upload_time": "2024-12-14T05:14:23",
"upload_time_iso_8601": "2024-12-14T05:14:23.747353Z",
"url": "https://files.pythonhosted.org/packages/8f/85/5cf8b962f5c81408c51b4257cb5b6d95dcbaad2a5169779e6f82887de17d/rocksdict-0.3.25-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f311c6910f8fd17165d647808989401a721d7b06ab157890dcaedbb77153b22",
"md5": "55058e420139782025708cb579a25931",
"sha256": "b1e8efb309f4343a21b95cdf74be1166f6be23ee189a4871ece39d9b3bf498c9"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "55058e420139782025708cb579a25931",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 5043355,
"upload_time": "2024-12-14T05:14:25",
"upload_time_iso_8601": "2024-12-14T05:14:25.426785Z",
"url": "https://files.pythonhosted.org/packages/8f/31/1c6910f8fd17165d647808989401a721d7b06ab157890dcaedbb77153b22/rocksdict-0.3.25-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e662bf21f4e8cef2b0059d06868977762cb43c86d926e160d652da61294bf2d",
"md5": "3a45b21ae18056e7ec059b52cbe129e6",
"sha256": "f78d09456110401909a67868cc7e20456ae01787fda38be62974725b1f15fb6d"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "3a45b21ae18056e7ec059b52cbe129e6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 3741638,
"upload_time": "2024-12-14T05:14:27",
"upload_time_iso_8601": "2024-12-14T05:14:27.343170Z",
"url": "https://files.pythonhosted.org/packages/2e/66/2bf21f4e8cef2b0059d06868977762cb43c86d926e160d652da61294bf2d/rocksdict-0.3.25-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "617fd8f6375df2d1daccd7679c2f3b51c9178c828de33a79073fe63bb11a1d2e",
"md5": "24fc253c2886b767972b211b3d7fdac1",
"sha256": "a4c3b5369ac721feec5d110d75f27135c079d4cc0757bc6f6eb94eeb45680304"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp39-pypy39_pp73-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "24fc253c2886b767972b211b3d7fdac1",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 3837368,
"upload_time": "2024-12-14T05:14:29",
"upload_time_iso_8601": "2024-12-14T05:14:29.183236Z",
"url": "https://files.pythonhosted.org/packages/61/7f/d8f6375df2d1daccd7679c2f3b51c9178c828de33a79073fe63bb11a1d2e/rocksdict-0.3.25-pp39-pypy39_pp73-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d08d60e0c90415ee39a17120c53c75ad2f2e1bd4a24e7e29cdfbd6d12f138a7a",
"md5": "edfd9fd82657d5bbdbe548d97578c6c1",
"sha256": "6abf484f4a4bc3d4ce8a081ac6c3ffd3e065c15c2097848776360c81e50d64ca"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "edfd9fd82657d5bbdbe548d97578c6c1",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 3428305,
"upload_time": "2024-12-14T05:14:31",
"upload_time_iso_8601": "2024-12-14T05:14:31.930075Z",
"url": "https://files.pythonhosted.org/packages/d0/8d/60e0c90415ee39a17120c53c75ad2f2e1bd4a24e7e29cdfbd6d12f138a7a/rocksdict-0.3.25-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "242aff41eaef034dbb583e5a80701cc53cf4f4f75ab5e282032cab657802bfdb",
"md5": "d1b10c9f989ce1e9e58045144dfb2621",
"sha256": "6501257245b0d4544d93feeb69a7943bbaf7f0c797232ecb5683e99129342033"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d1b10c9f989ce1e9e58045144dfb2621",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 3789301,
"upload_time": "2024-12-14T05:14:33",
"upload_time_iso_8601": "2024-12-14T05:14:33.740483Z",
"url": "https://files.pythonhosted.org/packages/24/2a/ff41eaef034dbb583e5a80701cc53cf4f4f75ab5e282032cab657802bfdb/rocksdict-0.3.25-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6357c3efc2559cff8ba2ee7a00fb7fe90fc66506a4832955bae3fd7555c94999",
"md5": "beaeb8eca01752c1d3dcdcf8fe1a7080",
"sha256": "be984d868c982a480ae70d741bd0cb475b5c312e23d4092df204f5374cf3f38e"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "beaeb8eca01752c1d3dcdcf8fe1a7080",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 4002210,
"upload_time": "2024-12-14T05:14:35",
"upload_time_iso_8601": "2024-12-14T05:14:35.630010Z",
"url": "https://files.pythonhosted.org/packages/63/57/c3efc2559cff8ba2ee7a00fb7fe90fc66506a4832955bae3fd7555c94999/rocksdict-0.3.25-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7ae5a2b8673800d40ab4ecbf5618ff314068b4f6b1f772d6980c4135e66d655a",
"md5": "74f5bafdc8fa66857277ab4a5564f04c",
"sha256": "4cb42e8ce45fc7cf80ff664309113e6f5993aa8d5983487e26b45b7648644f93"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "74f5bafdc8fa66857277ab4a5564f04c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 3799914,
"upload_time": "2024-12-14T05:14:38",
"upload_time_iso_8601": "2024-12-14T05:14:38.111857Z",
"url": "https://files.pythonhosted.org/packages/7a/e5/a2b8673800d40ab4ecbf5618ff314068b4f6b1f772d6980c4135e66d655a/rocksdict-0.3.25-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b4eca645f96baa7117c045335ee6b5e7b60f1df8e12c19370b919b13d11cc41c",
"md5": "c31e238e011af616208084abad48341a",
"sha256": "0fd775c20b3c5f078f290312db27a237e467551a244cf3d29827ddff4c368765"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "c31e238e011af616208084abad48341a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 4057317,
"upload_time": "2024-12-14T05:14:40",
"upload_time_iso_8601": "2024-12-14T05:14:40.007076Z",
"url": "https://files.pythonhosted.org/packages/b4/ec/a645f96baa7117c045335ee6b5e7b60f1df8e12c19370b919b13d11cc41c/rocksdict-0.3.25-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c09fac44b195689a6b97b5aefdd68d7b752210991ade3c225772498f6181c2e",
"md5": "adb344c396daab3d884a00da22fe5970",
"sha256": "f654723c61e1ef10a3cdc1c92d4a4f2692d462f264ecc514d71be8e72d1e48de"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "adb344c396daab3d884a00da22fe5970",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 4731181,
"upload_time": "2024-12-14T05:14:42",
"upload_time_iso_8601": "2024-12-14T05:14:42.745462Z",
"url": "https://files.pythonhosted.org/packages/7c/09/fac44b195689a6b97b5aefdd68d7b752210991ade3c225772498f6181c2e/rocksdict-0.3.25-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "802dbd072767b74533d1d65e57d20654647cb49338029d5d59260728391aa9f5",
"md5": "05b95bcf1dc33d8f3b08b0770fc3f656",
"sha256": "6783dfb06425fbc2e77351a915b7d2fbcbfc6118af0cc61328d84ab489fe22c7"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "05b95bcf1dc33d8f3b08b0770fc3f656",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 5043799,
"upload_time": "2024-12-14T05:14:46",
"upload_time_iso_8601": "2024-12-14T05:14:46.250996Z",
"url": "https://files.pythonhosted.org/packages/80/2d/bd072767b74533d1d65e57d20654647cb49338029d5d59260728391aa9f5/rocksdict-0.3.25-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a61a0e6b46da8532b46b7af414a4a2d71bcad9d2942c011db95be295d1a3f6a6",
"md5": "9d5c14df25f8735f041a214dd35aeeae",
"sha256": "91172d80d5c7eb4c12ae0ce367814ebcee9930edb7158e733e3b0fb4c662977b"
},
"downloads": -1,
"filename": "rocksdict-0.3.25-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "9d5c14df25f8735f041a214dd35aeeae",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 3741366,
"upload_time": "2024-12-14T05:14:49",
"upload_time_iso_8601": "2024-12-14T05:14:49.266022Z",
"url": "https://files.pythonhosted.org/packages/a6/1a/0e6b46da8532b46b7af414a4a2d71bcad9d2942c011db95be295d1a3f6a6/rocksdict-0.3.25-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-14 05:11:50",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "rocksdict"
}