keyvi


Namekeyvi JSON
Version 0.6.2 PyPI version JSON
download
home_pagehttp://keyvi.org
SummaryPython package for keyvi
upload_time2024-10-01 12:03:36
maintainerNone
docs_urlNone
authorHendrik Muhs
requires_pythonNone
licenseASL 2.0
keywords fst
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Keyvi - the short form for "Key value index" is a key value store (KVS) optimized for size and lookup speed. The usage of shared memory makes it scalable and resistant. The biggest difference to other stores is the underlying data structure based on [finite state machine](https://en.wikipedia.org/wiki/Finite-state_machine). Storage is very space efficient, fast and by design makes various sorts of approximate matching be it fuzzy string matching or geo highly efficient. The immutable FST data structure can be used stand-alone for static datasets. If you need online writes, you can use keyvi index, a _near realtime index_.

## Quick Start

Install keyvi with

```
pip3 install keyvi
```

create your first very simple index:

```
import keyvi.index
index = keyvi.index.Index("test-index")

index.Set('key', '{"answer": 42, "condition": "always"}')
index.Flush()
# get the entry for key
m = index.Get('key')
print(m.value)

# match fuzzy(levenshtein distance) with max edit distance 1, exact prefix 2
matches = index.GetFuzzy("kei", 1, 2)
print([m.matched_string for m in matches])
```

For more information visit the [docs](https://keyvidev.github.io/keyvi/index.html) and [project](http://keyvi.org) pages.

            

Raw data

            {
    "_id": null,
    "home_page": "http://keyvi.org",
    "name": "keyvi",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "FST",
    "author": "Hendrik Muhs",
    "author_email": "hendrik.muhs@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/0a/4b/d7da56e88c8eb8253486b9e354a21c66ed2bae8cb31e12023f26db2d5c18/keyvi-0.6.2.tar.gz",
    "platform": null,
    "description": "Keyvi - the short form for \"Key value index\" is a key value store (KVS) optimized for size and lookup speed. The usage of shared memory makes it scalable and resistant. The biggest difference to other stores is the underlying data structure based on [finite state machine](https://en.wikipedia.org/wiki/Finite-state_machine). Storage is very space efficient, fast and by design makes various sorts of approximate matching be it fuzzy string matching or geo highly efficient. The immutable FST data structure can be used stand-alone for static datasets. If you need online writes, you can use keyvi index, a _near realtime index_.\n\n## Quick Start\n\nInstall keyvi with\n\n```\npip3 install keyvi\n```\n\ncreate your first very simple index:\n\n```\nimport keyvi.index\nindex = keyvi.index.Index(\"test-index\")\n\nindex.Set('key', '{\"answer\": 42, \"condition\": \"always\"}')\nindex.Flush()\n# get the entry for key\nm = index.Get('key')\nprint(m.value)\n\n# match fuzzy(levenshtein distance) with max edit distance 1, exact prefix 2\nmatches = index.GetFuzzy(\"kei\", 1, 2)\nprint([m.matched_string for m in matches])\n```\n\nFor more information visit the [docs](https://keyvidev.github.io/keyvi/index.html) and [project](http://keyvi.org) pages.\n",
    "bugtrack_url": null,
    "license": "ASL 2.0",
    "summary": "Python package for keyvi",
    "version": "0.6.2",
    "project_urls": {
        "Download": "https://github.com/KeyviDev/keyvi/tarball/v0.6.2",
        "Homepage": "http://keyvi.org"
    },
    "split_keywords": [
        "fst"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfaf4d778d886795a04c41ddec972f3b62bdc6aab793e24951d2ed4871440c31",
                "md5": "e6d951a56b40f8131f116618d9aa68b4",
                "sha256": "8f1e92c94d62b68e3531dd3af317d0ce789a3bbda91298efa7943b46c394bbe1"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6d951a56b40f8131f116618d9aa68b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 16410077,
            "upload_time": "2024-10-01T12:01:58",
            "upload_time_iso_8601": "2024-10-01T12:01:58.988862Z",
            "url": "https://files.pythonhosted.org/packages/df/af/4d778d886795a04c41ddec972f3b62bdc6aab793e24951d2ed4871440c31/keyvi-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6ffe9ab83036cc6bafa3ec1d1d5e0ed2a3a9e840debcc4f60e765fa5ea5684a",
                "md5": "09f3447bb3c37f8e9514894a93f75848",
                "sha256": "efe031d12fa7b98f185bdd9ae8cd04a446eb71b2232477fcc011d9d7a3b1ccd0"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp310-cp310-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "09f3447bb3c37f8e9514894a93f75848",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 16037700,
            "upload_time": "2024-10-01T12:02:02",
            "upload_time_iso_8601": "2024-10-01T12:02:02.861164Z",
            "url": "https://files.pythonhosted.org/packages/b6/ff/e9ab83036cc6bafa3ec1d1d5e0ed2a3a9e840debcc4f60e765fa5ea5684a/keyvi-0.6.2-cp310-cp310-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fc588c7ec3fd41f624133935872a829570818512c60879acf5d6c6eeae4f341",
                "md5": "fa36701beb07a45b7b0e233a21839e03",
                "sha256": "d8d24b5f2570c3b518d0e839317a043a559a624a0dffcfa847898f94c9d35aab"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fa36701beb07a45b7b0e233a21839e03",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 13196769,
            "upload_time": "2024-10-01T12:02:05",
            "upload_time_iso_8601": "2024-10-01T12:02:05.503830Z",
            "url": "https://files.pythonhosted.org/packages/8f/c5/88c7ec3fd41f624133935872a829570818512c60879acf5d6c6eeae4f341/keyvi-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5042c9f22dfd816ed16068dd0a88f1bf73548f2bfe60aea15edb80f21a548356",
                "md5": "4baa7f8fa40f46b0c125178f88cfd3b4",
                "sha256": "cba25a3cc818254d2bafb462ca458d4baaf37c14d79e07629bb3c07b5d00aaa7"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4baa7f8fa40f46b0c125178f88cfd3b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 13609481,
            "upload_time": "2024-10-01T12:02:08",
            "upload_time_iso_8601": "2024-10-01T12:02:08.062016Z",
            "url": "https://files.pythonhosted.org/packages/50/42/c9f22dfd816ed16068dd0a88f1bf73548f2bfe60aea15edb80f21a548356/keyvi-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7e6dbc12ea1c111390d375bfc46bdade91b9ff192798457c8a56b2ce0d39f4c",
                "md5": "e2a2758489d83181c804f430a31c8a2d",
                "sha256": "87d2deb0ff66f3970cbee8e1efb2c7cc742c0a2c6c4499efe60646bb7379aee7"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e2a2758489d83181c804f430a31c8a2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 13774458,
            "upload_time": "2024-10-01T12:02:10",
            "upload_time_iso_8601": "2024-10-01T12:02:10.536141Z",
            "url": "https://files.pythonhosted.org/packages/f7/e6/dbc12ea1c111390d375bfc46bdade91b9ff192798457c8a56b2ce0d39f4c/keyvi-0.6.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a4980f35ca1eecf5ca19ec6422ade24d79ba31d49b850d4e621a6f1e82008b9",
                "md5": "ecdefbeca86ae6d21f9d17f21fb07dbb",
                "sha256": "d5be087a6a6ddb0de00f66d74b9652479556d3d5a2b44cf7da3e4710a4692b06"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ecdefbeca86ae6d21f9d17f21fb07dbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 14001982,
            "upload_time": "2024-10-01T12:02:13",
            "upload_time_iso_8601": "2024-10-01T12:02:13.446611Z",
            "url": "https://files.pythonhosted.org/packages/3a/49/80f35ca1eecf5ca19ec6422ade24d79ba31d49b850d4e621a6f1e82008b9/keyvi-0.6.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0343038f34bc2fbd7bf450cef29e6c0ced9415e96d1c0cb6f8e0753aaf85a8f",
                "md5": "2f3fe22f4bbcbbdfcda89665ba753381",
                "sha256": "aae3a49a8cc94ad31404007e0c3f89cf879a9c7ae2825a563cb69ff5fb466708"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f3fe22f4bbcbbdfcda89665ba753381",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 16405468,
            "upload_time": "2024-10-01T12:02:15",
            "upload_time_iso_8601": "2024-10-01T12:02:15.642796Z",
            "url": "https://files.pythonhosted.org/packages/a0/34/3038f34bc2fbd7bf450cef29e6c0ced9415e96d1c0cb6f8e0753aaf85a8f/keyvi-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efb9dfb7c9754491107dec2c63be38615f4e8767ebf4a23297e7fc8fb29077f9",
                "md5": "f6ef1d8c4bdadc29dd02ae40dc48116c",
                "sha256": "05659985b15f20b8259b7c6488ce62f0bff869733aea66ba77dca3a5ef76c0db"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp311-cp311-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f6ef1d8c4bdadc29dd02ae40dc48116c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 16035620,
            "upload_time": "2024-10-01T12:02:17",
            "upload_time_iso_8601": "2024-10-01T12:02:17.918111Z",
            "url": "https://files.pythonhosted.org/packages/ef/b9/dfb7c9754491107dec2c63be38615f4e8767ebf4a23297e7fc8fb29077f9/keyvi-0.6.2-cp311-cp311-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "461118a65f7c217c85c8639cd652f551b285f53039670f64d9513ce0dd450639",
                "md5": "4fa8bef8daa01f293517ca1d6ccd1b0f",
                "sha256": "77d150b737e9a3136a26307e694a012b8c3ad48d46bb0bb419f07208db0bc0c2"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4fa8bef8daa01f293517ca1d6ccd1b0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 13342522,
            "upload_time": "2024-10-01T12:02:20",
            "upload_time_iso_8601": "2024-10-01T12:02:20.429680Z",
            "url": "https://files.pythonhosted.org/packages/46/11/18a65f7c217c85c8639cd652f551b285f53039670f64d9513ce0dd450639/keyvi-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a07af29b7a73630438dd440a480b1ddea84a95917f6a539299dcb11a931e9a6",
                "md5": "344fe14e13c8a1a4fd1cb197f8d3f7e1",
                "sha256": "d9826617bf5cd82f87b65f38ae075e42f49f10b7d4c08078802e23962b5f6313"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "344fe14e13c8a1a4fd1cb197f8d3f7e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 13748817,
            "upload_time": "2024-10-01T12:02:23",
            "upload_time_iso_8601": "2024-10-01T12:02:23.019633Z",
            "url": "https://files.pythonhosted.org/packages/6a/07/af29b7a73630438dd440a480b1ddea84a95917f6a539299dcb11a931e9a6/keyvi-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "932e133ce468cd80e8c7f825cd7581d7061389cec652dfefd9ea6997d3539c87",
                "md5": "97bdcbb2a21e44205f68c4898a4a28e5",
                "sha256": "94bd5725185603551487d9134df74c53bfeee8345e80a1dfce835e3bfc502d4d"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "97bdcbb2a21e44205f68c4898a4a28e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 13865588,
            "upload_time": "2024-10-01T12:02:25",
            "upload_time_iso_8601": "2024-10-01T12:02:25.649871Z",
            "url": "https://files.pythonhosted.org/packages/93/2e/133ce468cd80e8c7f825cd7581d7061389cec652dfefd9ea6997d3539c87/keyvi-0.6.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fde67f464edd2a87f43d3e8c4b91f43e97a7c58c030b1b8336ebe6348a9b0971",
                "md5": "627620e56c1d27af58429f92d9ace5e9",
                "sha256": "f3325eebc64213f5f7faba9a7566b2d0aa4890274853a1e7bbcfb0dff0b94645"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "627620e56c1d27af58429f92d9ace5e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 14097288,
            "upload_time": "2024-10-01T12:02:28",
            "upload_time_iso_8601": "2024-10-01T12:02:28.179025Z",
            "url": "https://files.pythonhosted.org/packages/fd/e6/7f464edd2a87f43d3e8c4b91f43e97a7c58c030b1b8336ebe6348a9b0971/keyvi-0.6.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a160b420c811a30e2b2c00a4b836b752a0c7b6258700beae5140bf3304b34df9",
                "md5": "ff2932a15288c94d7df8bf04c954bd11",
                "sha256": "8e8b55da5c9e5cdcd417aa20875961c074c9c358297dc0c0aa9986ed4411d586"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff2932a15288c94d7df8bf04c954bd11",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 16421939,
            "upload_time": "2024-10-01T12:02:30",
            "upload_time_iso_8601": "2024-10-01T12:02:30.622218Z",
            "url": "https://files.pythonhosted.org/packages/a1/60/b420c811a30e2b2c00a4b836b752a0c7b6258700beae5140bf3304b34df9/keyvi-0.6.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54d76b2aedb39e3f23280ed80bef3c0480b829fcc37e3250baaad16ae4a0503e",
                "md5": "5f48914f7053d5cbcb8bc30c68a64a43",
                "sha256": "0dcb393fa3d0d9aa02ae10b53601b8667339b31cefbf8b17813cf51af302b400"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp312-cp312-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5f48914f7053d5cbcb8bc30c68a64a43",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 16052287,
            "upload_time": "2024-10-01T12:02:33",
            "upload_time_iso_8601": "2024-10-01T12:02:33.057970Z",
            "url": "https://files.pythonhosted.org/packages/54/d7/6b2aedb39e3f23280ed80bef3c0480b829fcc37e3250baaad16ae4a0503e/keyvi-0.6.2-cp312-cp312-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e9f82a6071db4bcd881dcfb6a751aed90ba26196177cf85d9ca8e47662cb3f8",
                "md5": "b5cd5b68a82ac2f8c167612a58d71126",
                "sha256": "954d1a13a3b0670f21f7ccdcd68a49ec269889ce3523aa0aa50a4b395b4119af"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b5cd5b68a82ac2f8c167612a58d71126",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 13353156,
            "upload_time": "2024-10-01T12:02:35",
            "upload_time_iso_8601": "2024-10-01T12:02:35.265249Z",
            "url": "https://files.pythonhosted.org/packages/4e/9f/82a6071db4bcd881dcfb6a751aed90ba26196177cf85d9ca8e47662cb3f8/keyvi-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb9b476e3d8ddb6607e4b5eabf7fd9531ab281ee8a167fa9d9485e506bbd95ef",
                "md5": "10227956d6c4353967ff7d6eee166221",
                "sha256": "20341bb607fb2ff2cc96983437b012f88baf8ec9cae347ca9789e82f73d2dca2"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10227956d6c4353967ff7d6eee166221",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 13786923,
            "upload_time": "2024-10-01T12:02:37",
            "upload_time_iso_8601": "2024-10-01T12:02:37.461288Z",
            "url": "https://files.pythonhosted.org/packages/bb/9b/476e3d8ddb6607e4b5eabf7fd9531ab281ee8a167fa9d9485e506bbd95ef/keyvi-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa33f1faa6f729fafb32cb0d44d5467cc13af9a8494d9370bb14ea1d8cf1c19e",
                "md5": "480908dd1d9bc5f6507aeb0fa80b409a",
                "sha256": "aaeedd445922c785cc45a7c20954db79846d9090547c1d3b583d9bf5f74d5caf"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "480908dd1d9bc5f6507aeb0fa80b409a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 13764889,
            "upload_time": "2024-10-01T12:02:39",
            "upload_time_iso_8601": "2024-10-01T12:02:39.569466Z",
            "url": "https://files.pythonhosted.org/packages/aa/33/f1faa6f729fafb32cb0d44d5467cc13af9a8494d9370bb14ea1d8cf1c19e/keyvi-0.6.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f750dc96ca115413a57339d1793a5372e097349021c167b31365df81cb647760",
                "md5": "4bc7d23ada67c8194e6053dd43777591",
                "sha256": "321835fc21a7217db6064e166cb249854e752c4723a36dd0734b8ea53de2a3f1"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4bc7d23ada67c8194e6053dd43777591",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 14051006,
            "upload_time": "2024-10-01T12:02:41",
            "upload_time_iso_8601": "2024-10-01T12:02:41.747843Z",
            "url": "https://files.pythonhosted.org/packages/f7/50/dc96ca115413a57339d1793a5372e097349021c167b31365df81cb647760/keyvi-0.6.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89fbf459e92911654d108d720e77693dc5439d9c0229b73525f779f5feb98000",
                "md5": "620451122a0eb48df0cd1bbf94dfaeff",
                "sha256": "5b6fbc991f021263e6d37d6ec62d51eedc17ecca9afba99702059d8c5fbed983"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "620451122a0eb48df0cd1bbf94dfaeff",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 16415812,
            "upload_time": "2024-10-01T12:02:44",
            "upload_time_iso_8601": "2024-10-01T12:02:44.219015Z",
            "url": "https://files.pythonhosted.org/packages/89/fb/f459e92911654d108d720e77693dc5439d9c0229b73525f779f5feb98000/keyvi-0.6.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7364ccee0337ffaf86398d440323356f366731ce289777da9ea83aa8c95ae588",
                "md5": "965eb15c876c1a2eecf00480d7f82a77",
                "sha256": "47d4adc0d64b2d60173f8ff09fc40847735cba9dba4a6089daa6bbdd243b9372"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp38-cp38-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "965eb15c876c1a2eecf00480d7f82a77",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 16047078,
            "upload_time": "2024-10-01T12:02:46",
            "upload_time_iso_8601": "2024-10-01T12:02:46.370666Z",
            "url": "https://files.pythonhosted.org/packages/73/64/ccee0337ffaf86398d440323356f366731ce289777da9ea83aa8c95ae588/keyvi-0.6.2-cp38-cp38-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fff2f3f4c76c723ed45bacf34cb3d382352d14e97c3246973a496e5003f80a15",
                "md5": "e5022104cbf08f12cd6a66e80f908a9d",
                "sha256": "b22728c292b75a414bd775e9e5ded35d046420bd5f64379db7cd653950c2d49f"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e5022104cbf08f12cd6a66e80f908a9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 13259958,
            "upload_time": "2024-10-01T12:02:48",
            "upload_time_iso_8601": "2024-10-01T12:02:48.549319Z",
            "url": "https://files.pythonhosted.org/packages/ff/f2/f3f4c76c723ed45bacf34cb3d382352d14e97c3246973a496e5003f80a15/keyvi-0.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbc526329b7f1748b814fe865628a786083d8a29f12cf7f234b529a488140c02",
                "md5": "e18ee1a7890e54f02953444306a6bbeb",
                "sha256": "241c252389bec22e57e9aff668711d315c99a62401f0e0809aa68f9412ea27e2"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e18ee1a7890e54f02953444306a6bbeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 13668989,
            "upload_time": "2024-10-01T12:02:51",
            "upload_time_iso_8601": "2024-10-01T12:02:51.057698Z",
            "url": "https://files.pythonhosted.org/packages/bb/c5/26329b7f1748b814fe865628a786083d8a29f12cf7f234b529a488140c02/keyvi-0.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3e35695b1362b1f9a242e81c2df95e61911ef82cefcdfbc9f9a5b489e274025",
                "md5": "115959a04c07ae096f20ef721900c2e4",
                "sha256": "9c02c37394baa2352a66d74b914ece903786419f26247d356c6af4da0b3e385a"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "115959a04c07ae096f20ef721900c2e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 13856124,
            "upload_time": "2024-10-01T12:02:53",
            "upload_time_iso_8601": "2024-10-01T12:02:53.841514Z",
            "url": "https://files.pythonhosted.org/packages/d3/e3/5695b1362b1f9a242e81c2df95e61911ef82cefcdfbc9f9a5b489e274025/keyvi-0.6.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e2b7a68c93fce7c43a2fcd590f7cec764494fc2dd3e79fe878cc1d9b9d9394a",
                "md5": "3812d44d3e2ec27dff2d2048847557ef",
                "sha256": "85bf2aa7aa898a00e2550786430d467588e392718a438f1f06c483d604864a77"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3812d44d3e2ec27dff2d2048847557ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 14093555,
            "upload_time": "2024-10-01T12:02:55",
            "upload_time_iso_8601": "2024-10-01T12:02:55.996914Z",
            "url": "https://files.pythonhosted.org/packages/7e/2b/7a68c93fce7c43a2fcd590f7cec764494fc2dd3e79fe878cc1d9b9d9394a/keyvi-0.6.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d59aa1698dc41c364a077a3b3ca6b3749d40e4e0f8b10fde3cacb84c4096570e",
                "md5": "71f288d2de2c4e810cb32853aa18c30f",
                "sha256": "fd88e5b09cf45dd4db9d34f5479d3ce130a906c747a00673c4444875ac152779"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "71f288d2de2c4e810cb32853aa18c30f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 16414535,
            "upload_time": "2024-10-01T12:02:58",
            "upload_time_iso_8601": "2024-10-01T12:02:58.247934Z",
            "url": "https://files.pythonhosted.org/packages/d5/9a/a1698dc41c364a077a3b3ca6b3749d40e4e0f8b10fde3cacb84c4096570e/keyvi-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea27d19c7b1e60e4eee809cce8c8efd0e7f9808b801cc68fba531c064ffcb8f9",
                "md5": "8097c53aec62e38ca05d831526a0ec63",
                "sha256": "92b9f4683e97900cf84be77d7a2e98cc3b1e92ee6e748a85272fe49b198e6b37"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp39-cp39-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8097c53aec62e38ca05d831526a0ec63",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 16046904,
            "upload_time": "2024-10-01T12:03:00",
            "upload_time_iso_8601": "2024-10-01T12:03:00.371873Z",
            "url": "https://files.pythonhosted.org/packages/ea/27/d19c7b1e60e4eee809cce8c8efd0e7f9808b801cc68fba531c064ffcb8f9/keyvi-0.6.2-cp39-cp39-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73f13968cf6795ca47e3959f3a21b569a90ae3017ca30cd5095bed1e7abbf027",
                "md5": "16e8fa5f4cc747fa894cbb69edf2d8ae",
                "sha256": "565d3bc3f545309519553a9225d3873252dfd6feef9e8c6a0764f8bf4ce28000"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "16e8fa5f4cc747fa894cbb69edf2d8ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 13229040,
            "upload_time": "2024-10-01T12:03:02",
            "upload_time_iso_8601": "2024-10-01T12:03:02.759626Z",
            "url": "https://files.pythonhosted.org/packages/73/f1/3968cf6795ca47e3959f3a21b569a90ae3017ca30cd5095bed1e7abbf027/keyvi-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "831bb6410c85c54c11ebf0b9a276d3d7ab781dc1907cab7bc1352484f9a9f374",
                "md5": "4cf8e53f9dc0b87cfb95bf4a694e80a3",
                "sha256": "f4bb8c007d5c4410524f94515e0ac2136feb20b62483416cca2e1c98994676b0"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4cf8e53f9dc0b87cfb95bf4a694e80a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 13654464,
            "upload_time": "2024-10-01T12:03:04",
            "upload_time_iso_8601": "2024-10-01T12:03:04.997306Z",
            "url": "https://files.pythonhosted.org/packages/83/1b/b6410c85c54c11ebf0b9a276d3d7ab781dc1907cab7bc1352484f9a9f374/keyvi-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9d15ac227d89894ca475bb3e0ce1bdafdf06a014b8178e809d7194d6722f467",
                "md5": "5a43fcc3103d86cd71c8f42a1499ef85",
                "sha256": "319db821d9bf172a1a5ef8f443b519b14fd0641bef1cdd05e1ead8faeb3704e1"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5a43fcc3103d86cd71c8f42a1499ef85",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 13760821,
            "upload_time": "2024-10-01T12:03:07",
            "upload_time_iso_8601": "2024-10-01T12:03:07.273648Z",
            "url": "https://files.pythonhosted.org/packages/e9/d1/5ac227d89894ca475bb3e0ce1bdafdf06a014b8178e809d7194d6722f467/keyvi-0.6.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d592916d4e3d71097f696a626cf0a3f296ba233504c46009146c5f56aa0a6789",
                "md5": "b560fb73271034898178ab5c4732c94f",
                "sha256": "7e472278a3cfe274ad3ef7c1fae05854f472f11aa50cc10bcaab76d760388aa0"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b560fb73271034898178ab5c4732c94f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 13998661,
            "upload_time": "2024-10-01T12:03:10",
            "upload_time_iso_8601": "2024-10-01T12:03:10.346729Z",
            "url": "https://files.pythonhosted.org/packages/d5/92/916d4e3d71097f696a626cf0a3f296ba233504c46009146c5f56aa0a6789/keyvi-0.6.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b312cedcecdd41d0a2533a057a3127a3784bdadb933b10f1ce0a5cd75612d03b",
                "md5": "74bf025e1e26b97c856a5e7599332c46",
                "sha256": "d8fdb3153330bd8c1f7e27a0347ef89cc3fdb9c7f1af5a79436c69f069025077"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74bf025e1e26b97c856a5e7599332c46",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 16194502,
            "upload_time": "2024-10-01T12:03:13",
            "upload_time_iso_8601": "2024-10-01T12:03:13.107566Z",
            "url": "https://files.pythonhosted.org/packages/b3/12/cedcecdd41d0a2533a057a3127a3784bdadb933b10f1ce0a5cd75612d03b/keyvi-0.6.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f1ee94d2a35fb988f669e4931845509806b3c25e6c6826c3f23a3abe93f8279",
                "md5": "ae21939c897b78a7696d5a07ada17f16",
                "sha256": "0004d6d183ceb5b6355026abd3aad9b0f80ed2f118519d7f1b20332cac6d3525"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ae21939c897b78a7696d5a07ada17f16",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1718209,
            "upload_time": "2024-10-01T12:03:16",
            "upload_time_iso_8601": "2024-10-01T12:03:16.424360Z",
            "url": "https://files.pythonhosted.org/packages/1f/1e/e94d2a35fb988f669e4931845509806b3c25e6c6826c3f23a3abe93f8279/keyvi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e83f1e060ded1c476f49856ea00ba8a36401f8ed6676da38eb0afea7b6901453",
                "md5": "0024b95f5f8a0384410866420c539e91",
                "sha256": "ea4fbaae0e8b4e5d4589a83c094ef6ec426129cae929ee890f4042158a7275c9"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0024b95f5f8a0384410866420c539e91",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 2124712,
            "upload_time": "2024-10-01T12:03:17",
            "upload_time_iso_8601": "2024-10-01T12:03:17.843278Z",
            "url": "https://files.pythonhosted.org/packages/e8/3f/1e060ded1c476f49856ea00ba8a36401f8ed6676da38eb0afea7b6901453/keyvi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0935ab47bd8a2bb8f22621fae76adfb77e7033664229c2c92d4726649edab9d6",
                "md5": "d896369c5c9784608970357229ab9461",
                "sha256": "09401f33ab0af04a9f000014acd1613ef354f7612012e956675a568875c09a01"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d896369c5c9784608970357229ab9461",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 16221853,
            "upload_time": "2024-10-01T12:03:19",
            "upload_time_iso_8601": "2024-10-01T12:03:19.333006Z",
            "url": "https://files.pythonhosted.org/packages/09/35/ab47bd8a2bb8f22621fae76adfb77e7033664229c2c92d4726649edab9d6/keyvi-0.6.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c92a73b9338a4e1888beb99befa2fffcb2c543471b3bfac22b4e6493b6462be8",
                "md5": "c41b9a96830e792b29a39669b7171247",
                "sha256": "9f5d1aa85f39b7f59d19806801a6a5b493b1c559304dbbe5b615731915060459"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c41b9a96830e792b29a39669b7171247",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 1717585,
            "upload_time": "2024-10-01T12:03:21",
            "upload_time_iso_8601": "2024-10-01T12:03:21.333323Z",
            "url": "https://files.pythonhosted.org/packages/c9/2a/73b9338a4e1888beb99befa2fffcb2c543471b3bfac22b4e6493b6462be8/keyvi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f068c8974be62213de82649ff285e572d98c587544ef70b589afbf0b7a5ff6d5",
                "md5": "194cc7cd0f2721ed15cb1390d43cb4f8",
                "sha256": "ab3007eca25a874e0b270aec20f77701fa92ecf3ea4802f6c7bce8819b5a8e2d"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "194cc7cd0f2721ed15cb1390d43cb4f8",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 2132067,
            "upload_time": "2024-10-01T12:03:22",
            "upload_time_iso_8601": "2024-10-01T12:03:22.730078Z",
            "url": "https://files.pythonhosted.org/packages/f0/68/c8974be62213de82649ff285e572d98c587544ef70b589afbf0b7a5ff6d5/keyvi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2658611e34d6c5585383db0d16d5dfcac7cfb44e102ccdae1a25514b69eb10dd",
                "md5": "94da6b3ea5bc2a5420429d33d3459679",
                "sha256": "de55dbfc1a7ed00ce8cbad60e41bbb949df8b6dbf655c2fee8ff29d373b17c09"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "94da6b3ea5bc2a5420429d33d3459679",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 16215235,
            "upload_time": "2024-10-01T12:03:24",
            "upload_time_iso_8601": "2024-10-01T12:03:24.870370Z",
            "url": "https://files.pythonhosted.org/packages/26/58/611e34d6c5585383db0d16d5dfcac7cfb44e102ccdae1a25514b69eb10dd/keyvi-0.6.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "759f979ed7ec400e459bade639bb09ae74bc97b4be02a23070b0f1ba0dfe83e6",
                "md5": "4bca843af3b53c9b8065661a6385158e",
                "sha256": "95ad7a354f37e23b455da740395326c42c51934dc6c0c860bdc89785e1ab6ff5"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4bca843af3b53c9b8065661a6385158e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1715952,
            "upload_time": "2024-10-01T12:03:26",
            "upload_time_iso_8601": "2024-10-01T12:03:26.880104Z",
            "url": "https://files.pythonhosted.org/packages/75/9f/979ed7ec400e459bade639bb09ae74bc97b4be02a23070b0f1ba0dfe83e6/keyvi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e2d5157733dac7e1132f685836ca707151fc5e66d5969c7b35967aa48e9ceb6",
                "md5": "7d7ba85f5550167a7914dc82e40ed7df",
                "sha256": "bd02885a78fce639947af4fb854f65ae38092afa985598a79e3dc307d2196f71"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d7ba85f5550167a7914dc82e40ed7df",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 2124349,
            "upload_time": "2024-10-01T12:03:28",
            "upload_time_iso_8601": "2024-10-01T12:03:28.626679Z",
            "url": "https://files.pythonhosted.org/packages/3e/2d/5157733dac7e1132f685836ca707151fc5e66d5969c7b35967aa48e9ceb6/keyvi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa972b5f2e16b517c6c5b8fb5e59094f1aac4b631e21640c6ebd391569c9c010",
                "md5": "59c0c20ae9bd8760f2bb7f6c5581de3f",
                "sha256": "8aee1b330e24a6186d6b6978ce1c8e44d80d91741beb079ae6803d7b4b763425"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59c0c20ae9bd8760f2bb7f6c5581de3f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 16193419,
            "upload_time": "2024-10-01T12:03:31",
            "upload_time_iso_8601": "2024-10-01T12:03:31.338640Z",
            "url": "https://files.pythonhosted.org/packages/fa/97/2b5f2e16b517c6c5b8fb5e59094f1aac4b631e21640c6ebd391569c9c010/keyvi-0.6.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76aaff94ae739af362d36058376e5e374fbd3a1519b095fc1667e594cbd80b6d",
                "md5": "580c38ab94cc19a52efcb9707ec94802",
                "sha256": "9feb7f02be42fe27fb1d17691d52e255c0ff530040458d458e5e51ef57562a05"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "580c38ab94cc19a52efcb9707ec94802",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1716984,
            "upload_time": "2024-10-01T12:03:33",
            "upload_time_iso_8601": "2024-10-01T12:03:33.424711Z",
            "url": "https://files.pythonhosted.org/packages/76/aa/ff94ae739af362d36058376e5e374fbd3a1519b095fc1667e594cbd80b6d/keyvi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89fb296d8e4377159e2c8f88822f6b7688ab39be67ca21b1efa1ebe41a75b6a9",
                "md5": "ccf2104c31cccbd79858ba18796b482b",
                "sha256": "42fa582885fa01400df8f6230afebf23bdfae0cfb65582b6bf43f471e4d377ca"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ccf2104c31cccbd79858ba18796b482b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 2123156,
            "upload_time": "2024-10-01T12:03:35",
            "upload_time_iso_8601": "2024-10-01T12:03:35.350879Z",
            "url": "https://files.pythonhosted.org/packages/89/fb/296d8e4377159e2c8f88822f6b7688ab39be67ca21b1efa1ebe41a75b6a9/keyvi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a4bd7da56e88c8eb8253486b9e354a21c66ed2bae8cb31e12023f26db2d5c18",
                "md5": "5e448ad0f3350ecfa2d291749df0c28d",
                "sha256": "2e13a40d28b66c60c7ab86fb40557e74bebf6305b17d99108f0387d27d17fb69"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.2.tar.gz",
            "has_sig": false,
            "md5_digest": "5e448ad0f3350ecfa2d291749df0c28d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2860510,
            "upload_time": "2024-10-01T12:03:36",
            "upload_time_iso_8601": "2024-10-01T12:03:36.735889Z",
            "url": "https://files.pythonhosted.org/packages/0a/4b/d7da56e88c8eb8253486b9e354a21c66ed2bae8cb31e12023f26db2d5c18/keyvi-0.6.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-01 12:03:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "KeyviDev",
    "github_project": "keyvi",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "keyvi"
}
        
Elapsed time: 1.01161s