keyvi


Namekeyvi JSON
Version 0.6.3 PyPI version JSON
download
home_pagehttp://keyvi.org
SummaryPython package for keyvi
upload_time2025-02-03 19:59:39
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/b1/ed/f946cc40ebd9494241ecdf303fd9876322da9390473e183d8bd395f2ce11/keyvi-0.6.3.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.3",
    "project_urls": {
        "Download": "https://github.com/KeyviDev/keyvi/tarball/v0.6.3",
        "Homepage": "http://keyvi.org"
    },
    "split_keywords": [
        "fst"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a51232b5425fa50d88883c50fa37ab62ec0509d448902577c5d11f4e4aa392fb",
                "md5": "22cf70388e97a535bc4c63106fee2f3d",
                "sha256": "208f703b87cd4e32cd9335e8c3248a6ce34a4824b883c871ffb94e9e77966dc1"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp310-cp310-macosx_13_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "22cf70388e97a535bc4c63106fee2f3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 16305271,
            "upload_time": "2025-02-03T19:57:34",
            "upload_time_iso_8601": "2025-02-03T19:57:34.238422Z",
            "url": "https://files.pythonhosted.org/packages/a5/12/32b5425fa50d88883c50fa37ab62ec0509d448902577c5d11f4e4aa392fb/keyvi-0.6.3-cp310-cp310-macosx_13_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2285dbc2c181f2ee858652756a48d4693e79b9d75578e6da086271902c3d09fb",
                "md5": "411933f144bb91eb9d350d63a571954c",
                "sha256": "1c3c060be7c2e7634c799cc63e430e394257d4f59ce5d1576776aaa9944560d9"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp310-cp310-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "411933f144bb91eb9d350d63a571954c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 16617480,
            "upload_time": "2025-02-03T19:57:38",
            "upload_time_iso_8601": "2025-02-03T19:57:38.393890Z",
            "url": "https://files.pythonhosted.org/packages/22/85/dbc2c181f2ee858652756a48d4693e79b9d75578e6da086271902c3d09fb/keyvi-0.6.3-cp310-cp310-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a68e9a52aa81b500c6580518d3052fab7b0b90ecafe0670f6c6d35fca2fe4aa4",
                "md5": "120e86fcd3532109592a1ca6423dbb2e",
                "sha256": "8b6e252cd8112e0ba4dadcf77602ac204a4ea28536066d59b1fe1aa6d9ffca40"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "120e86fcd3532109592a1ca6423dbb2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 13316922,
            "upload_time": "2025-02-03T19:57:41",
            "upload_time_iso_8601": "2025-02-03T19:57:41.531862Z",
            "url": "https://files.pythonhosted.org/packages/a6/8e/9a52aa81b500c6580518d3052fab7b0b90ecafe0670f6c6d35fca2fe4aa4/keyvi-0.6.3-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22d67d21ba858fa7e3e35bdc6c72a79cd5cc7e52a989238a3750c0b31119f271",
                "md5": "e751dbe47e42ada317e7fbc830fd9411",
                "sha256": "4e7a49a70a05c22df0455c9c0ce4edb6ae8a9afd914a8f4057cd3b94fa2c7a03"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e751dbe47e42ada317e7fbc830fd9411",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 12562749,
            "upload_time": "2025-02-03T19:57:44",
            "upload_time_iso_8601": "2025-02-03T19:57:44.863748Z",
            "url": "https://files.pythonhosted.org/packages/22/d6/7d21ba858fa7e3e35bdc6c72a79cd5cc7e52a989238a3750c0b31119f271/keyvi-0.6.3-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8bbb0ac2955793c120369833949514c84bcf173713d0797ae1c619c16128481b",
                "md5": "ae8885fa5417cce5b0fe04ddfe1ee69d",
                "sha256": "57a19e94a2d0e7f2f154eb6724a323b10da9a4e15e0376288b2a68a1bfa8fda5"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ae8885fa5417cce5b0fe04ddfe1ee69d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 13775137,
            "upload_time": "2025-02-03T19:57:47",
            "upload_time_iso_8601": "2025-02-03T19:57:47.694391Z",
            "url": "https://files.pythonhosted.org/packages/8b/bb/0ac2955793c120369833949514c84bcf173713d0797ae1c619c16128481b/keyvi-0.6.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d73ecf1e876546fbdcad820b440b67bf153b97a46e32d30856279c0c3d05bc9d",
                "md5": "d94bf4e03a7ea1a60c7be8cf69e4aafb",
                "sha256": "0d8b820bdcba68fd85f9efdc42f7af08ae502c7b8773cfef9bde759a07c80829"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d94bf4e03a7ea1a60c7be8cf69e4aafb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 14005991,
            "upload_time": "2025-02-03T19:57:51",
            "upload_time_iso_8601": "2025-02-03T19:57:51.185320Z",
            "url": "https://files.pythonhosted.org/packages/d7/3e/cf1e876546fbdcad820b440b67bf153b97a46e32d30856279c0c3d05bc9d/keyvi-0.6.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d97406a19d674ef41c626bfb5f3145b9d72acaf4888db3132127aece89a8a7e9",
                "md5": "05b3ae9e1f8065acd5c1d1ea53aa9c7e",
                "sha256": "44c783cf964a02737195c122066540e28f607683afdd4874e4c42297ebb2de0b"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp311-cp311-macosx_13_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "05b3ae9e1f8065acd5c1d1ea53aa9c7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 16305176,
            "upload_time": "2025-02-03T19:57:55",
            "upload_time_iso_8601": "2025-02-03T19:57:55.092151Z",
            "url": "https://files.pythonhosted.org/packages/d9/74/06a19d674ef41c626bfb5f3145b9d72acaf4888db3132127aece89a8a7e9/keyvi-0.6.3-cp311-cp311-macosx_13_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60bffc1bc13b516120ae69be0a35a3dc6db17e619189999da699e8a361bea907",
                "md5": "5d09f03a69aa749e0f0c018af0fcaebc",
                "sha256": "2a14c0c4cabef0e1e16dc900d8295a971b9f27dea6a8067be8550c887c21f22a"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp311-cp311-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d09f03a69aa749e0f0c018af0fcaebc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 16611444,
            "upload_time": "2025-02-03T19:57:58",
            "upload_time_iso_8601": "2025-02-03T19:57:58.177281Z",
            "url": "https://files.pythonhosted.org/packages/60/bf/fc1bc13b516120ae69be0a35a3dc6db17e619189999da699e8a361bea907/keyvi-0.6.3-cp311-cp311-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97b78dead93960c952a5294ef7078088bb4d7359ea3da933eb74986b21177ea8",
                "md5": "3565dc44c1d0bd3c25978b89a3067372",
                "sha256": "c1c22bb7dc00ec7dd4fb5de8fd950f0f600a234c333efffcce5727fe5ec90709"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3565dc44c1d0bd3c25978b89a3067372",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 13451832,
            "upload_time": "2025-02-03T19:58:01",
            "upload_time_iso_8601": "2025-02-03T19:58:01.890094Z",
            "url": "https://files.pythonhosted.org/packages/97/b7/8dead93960c952a5294ef7078088bb4d7359ea3da933eb74986b21177ea8/keyvi-0.6.3-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afd5f864ac2725fdc135fa2daff13aceef2324ca5eba952b05ff758998e92255",
                "md5": "5e6a01f1a5f0316e8262d8915e272c0a",
                "sha256": "8f59f10e7891790def8309c506f815364a7f389cce395ae52ff8021d9a94a34c"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e6a01f1a5f0316e8262d8915e272c0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 12701920,
            "upload_time": "2025-02-03T19:58:05",
            "upload_time_iso_8601": "2025-02-03T19:58:05.362474Z",
            "url": "https://files.pythonhosted.org/packages/af/d5/f864ac2725fdc135fa2daff13aceef2324ca5eba952b05ff758998e92255/keyvi-0.6.3-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb1a6a2edb9a1ea77c31819366d64610b73a188e5ab086534d787b0bd41010fa",
                "md5": "33a4e055c6acc41b2fcfbfc138da36b0",
                "sha256": "66464c64e74f6ee1a8d4de86a9a005cba0f212da95ef67d33428e738f0f1f148"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "33a4e055c6acc41b2fcfbfc138da36b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 13870637,
            "upload_time": "2025-02-03T19:58:07",
            "upload_time_iso_8601": "2025-02-03T19:58:07.987437Z",
            "url": "https://files.pythonhosted.org/packages/eb/1a/6a2edb9a1ea77c31819366d64610b73a188e5ab086534d787b0bd41010fa/keyvi-0.6.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fbe2dfbc12a55da4660fd6021f57b199dba8ce1e2a290f97bcffe16764842848",
                "md5": "c6e91a9c4ad90574a5ae52165d3351ae",
                "sha256": "66961bcae2466b1a5ae3fa44c4adcb8c7560107ea8d58b7e2849ded8e394461f"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c6e91a9c4ad90574a5ae52165d3351ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 14093950,
            "upload_time": "2025-02-03T19:58:11",
            "upload_time_iso_8601": "2025-02-03T19:58:11.509063Z",
            "url": "https://files.pythonhosted.org/packages/fb/e2/dfbc12a55da4660fd6021f57b199dba8ce1e2a290f97bcffe16764842848/keyvi-0.6.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85255340d254a01e78059bd1aca622b144a2d13f668df737e47dc1c9876557d7",
                "md5": "3fc592f92f5a5fc4d03bde76a3db3b3c",
                "sha256": "29ea48ba8ec59b4e11805453d93f9c42012188d87a5f5f7f9de1742f1744f204"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp312-cp312-macosx_13_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3fc592f92f5a5fc4d03bde76a3db3b3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 16308533,
            "upload_time": "2025-02-03T19:58:15",
            "upload_time_iso_8601": "2025-02-03T19:58:15.231056Z",
            "url": "https://files.pythonhosted.org/packages/85/25/5340d254a01e78059bd1aca622b144a2d13f668df737e47dc1c9876557d7/keyvi-0.6.3-cp312-cp312-macosx_13_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "099cc7b156bc46863afb5d9cae3cb8aa76151cb032c23ad60238757cf002a5e3",
                "md5": "7578bffbdcc30b09abe3da8b40cbdfb5",
                "sha256": "0e004f8213231ee9e95eac9b67cc74145484f2165a595ed93cb9b771df063f85"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp312-cp312-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7578bffbdcc30b09abe3da8b40cbdfb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 16627672,
            "upload_time": "2025-02-03T19:58:18",
            "upload_time_iso_8601": "2025-02-03T19:58:18.434414Z",
            "url": "https://files.pythonhosted.org/packages/09/9c/c7b156bc46863afb5d9cae3cb8aa76151cb032c23ad60238757cf002a5e3/keyvi-0.6.3-cp312-cp312-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "758a0d745695ebe0bc998910c9d09357ffb86db88760a6c353ae02871e69dd89",
                "md5": "5bc7dac701f29a6435a5f54f46753c00",
                "sha256": "7d65e11028b08bbedb2691400770c7262055bedf06c850e4fd9aabb242fc4537"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5bc7dac701f29a6435a5f54f46753c00",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 13435504,
            "upload_time": "2025-02-03T19:58:21",
            "upload_time_iso_8601": "2025-02-03T19:58:21.836577Z",
            "url": "https://files.pythonhosted.org/packages/75/8a/0d745695ebe0bc998910c9d09357ffb86db88760a6c353ae02871e69dd89/keyvi-0.6.3-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "730d4be22578be5f37a51a6b63dd076b7fe0eef877f991bed628a3d0595b8bc6",
                "md5": "685b517973fa033c0dc53ddf3d11c450",
                "sha256": "1fd8db92c6526ff0d73f879530326b471a91829c1a09c431f9832beff43bf417"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "685b517973fa033c0dc53ddf3d11c450",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 12717425,
            "upload_time": "2025-02-03T19:58:24",
            "upload_time_iso_8601": "2025-02-03T19:58:24.634600Z",
            "url": "https://files.pythonhosted.org/packages/73/0d/4be22578be5f37a51a6b63dd076b7fe0eef877f991bed628a3d0595b8bc6/keyvi-0.6.3-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "609f456de393bc11b53eb3c914204782f79f8797cc01548a2b1a86a160ee7967",
                "md5": "707427d566bb0af6f782b3605000d114",
                "sha256": "7422dd3ac371b22cdb636d4da5319e03fccf92d43f8fe82bdb488b5bda4c60de"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "707427d566bb0af6f782b3605000d114",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 13754028,
            "upload_time": "2025-02-03T19:58:28",
            "upload_time_iso_8601": "2025-02-03T19:58:28.085509Z",
            "url": "https://files.pythonhosted.org/packages/60/9f/456de393bc11b53eb3c914204782f79f8797cc01548a2b1a86a160ee7967/keyvi-0.6.3-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16ae6f470f4fd66da87190e89ca0c5f35d9bd644c87692156f069e39fa02368d",
                "md5": "19041bd2569e8d8fe2bc2c6ec051a834",
                "sha256": "104589cd1dc97cffc23d223ae4b3539f6b6010f410fa99ab37c4d0a8b3c51153"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "19041bd2569e8d8fe2bc2c6ec051a834",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 14047529,
            "upload_time": "2025-02-03T19:58:31",
            "upload_time_iso_8601": "2025-02-03T19:58:31.574668Z",
            "url": "https://files.pythonhosted.org/packages/16/ae/6f470f4fd66da87190e89ca0c5f35d9bd644c87692156f069e39fa02368d/keyvi-0.6.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2742e2fd593bf217ffef2cd2c25a717b903646c68d3a4b2f38fa2d0a97a1d17d",
                "md5": "6b8858eeb48d46ae0caccf63059ece30",
                "sha256": "37e4d4b6ede50fb0d39b73cb4fb31b1e24d63f6dc8b7e1f7d3c46277ad27627e"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp313-cp313-macosx_13_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6b8858eeb48d46ae0caccf63059ece30",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 16305347,
            "upload_time": "2025-02-03T19:58:35",
            "upload_time_iso_8601": "2025-02-03T19:58:35.697514Z",
            "url": "https://files.pythonhosted.org/packages/27/42/e2fd593bf217ffef2cd2c25a717b903646c68d3a4b2f38fa2d0a97a1d17d/keyvi-0.6.3-cp313-cp313-macosx_13_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b15820ee8747c5923776e78e51f6dd4267ff2e091d9e95309ddaca1715c690e0",
                "md5": "2bb1e59a2b0283a92aceb23edb32afe1",
                "sha256": "856c8980566e3126a452fa44332f38885d582ba59ceb8a29a35c45514f44458f"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp313-cp313-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2bb1e59a2b0283a92aceb23edb32afe1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 16624877,
            "upload_time": "2025-02-03T19:58:40",
            "upload_time_iso_8601": "2025-02-03T19:58:40.990271Z",
            "url": "https://files.pythonhosted.org/packages/b1/58/20ee8747c5923776e78e51f6dd4267ff2e091d9e95309ddaca1715c690e0/keyvi-0.6.3-cp313-cp313-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ccb6bbb5fe630fd8fff20185257aacc0012d128cfc8ad6f50fc934ea5f46d9a",
                "md5": "3a55652db5dfa4fe955d08407eb1749e",
                "sha256": "5cca5b16738fa19a765599670290b1b63654623c4c505774e30d677ae1deed7d"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp313-cp313-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3a55652db5dfa4fe955d08407eb1749e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 13444111,
            "upload_time": "2025-02-03T19:58:43",
            "upload_time_iso_8601": "2025-02-03T19:58:43.926769Z",
            "url": "https://files.pythonhosted.org/packages/5c/cb/6bbb5fe630fd8fff20185257aacc0012d128cfc8ad6f50fc934ea5f46d9a/keyvi-0.6.3-cp313-cp313-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffa7b6a4369e6e6cca640e883338cb8f2efa4b0cf7f6d12b604a944a2d391d14",
                "md5": "3ac65225cb4441a9e615d9245b6b61c2",
                "sha256": "ebe7e294184fa9bdfe1f7ebf3ae5b69995a409f99ff930320e1dbf529f201aa3"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp313-cp313-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ac65225cb4441a9e615d9245b6b61c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 12715511,
            "upload_time": "2025-02-03T19:58:46",
            "upload_time_iso_8601": "2025-02-03T19:58:46.732423Z",
            "url": "https://files.pythonhosted.org/packages/ff/a7/b6a4369e6e6cca640e883338cb8f2efa4b0cf7f6d12b604a944a2d391d14/keyvi-0.6.3-cp313-cp313-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8b2d36c76496042c5733410de133e809e9de5c2a07b73e6a9469a8cdfd85ef7",
                "md5": "2da9d58544c8d3673a1e277beea3742d",
                "sha256": "fc11d588127eaadcdddc2215b8df1df48c477e0efacfc9702c75b8a1e47183af"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp313-cp313-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2da9d58544c8d3673a1e277beea3742d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 13758797,
            "upload_time": "2025-02-03T19:58:49",
            "upload_time_iso_8601": "2025-02-03T19:58:49.771713Z",
            "url": "https://files.pythonhosted.org/packages/d8/b2/d36c76496042c5733410de133e809e9de5c2a07b73e6a9469a8cdfd85ef7/keyvi-0.6.3-cp313-cp313-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d6cb49faa3985734f3724a59753e09c7f39796d4bfe953a5216688f636a9422",
                "md5": "9234cbb7885caf45d4891ae8f1debbd1",
                "sha256": "ec8e0935b085b0de4365fb3342638fae3cb78a234f3b590ebd00848d706c5ffc"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp313-cp313-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9234cbb7885caf45d4891ae8f1debbd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 14062633,
            "upload_time": "2025-02-03T19:58:53",
            "upload_time_iso_8601": "2025-02-03T19:58:53.276708Z",
            "url": "https://files.pythonhosted.org/packages/5d/6c/b49faa3985734f3724a59753e09c7f39796d4bfe953a5216688f636a9422/keyvi-0.6.3-cp313-cp313-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f31718ca98e3e663739c5f87e6014908349a9d001a073bd1e6ae7eebf577c9df",
                "md5": "f9262514b0becd63df753de508650128",
                "sha256": "ed623dd24021c8e381134476a1e03662412e2ea46e45fb18fd52c303f60b9dba"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp38-cp38-macosx_13_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f9262514b0becd63df753de508650128",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 16310885,
            "upload_time": "2025-02-03T19:58:57",
            "upload_time_iso_8601": "2025-02-03T19:58:57.398564Z",
            "url": "https://files.pythonhosted.org/packages/f3/17/18ca98e3e663739c5f87e6014908349a9d001a073bd1e6ae7eebf577c9df/keyvi-0.6.3-cp38-cp38-macosx_13_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3565ecb4761751b644b48e692c6f33db8eafd6d64862272b8c25b7be14eae22e",
                "md5": "fbcbf64a87cd1b27784cf381ab0b245d",
                "sha256": "d5f6091f684d05659d3138fcf8f963347d5280fec460e33f296368b44ac9ede2"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp38-cp38-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fbcbf64a87cd1b27784cf381ab0b245d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 16620745,
            "upload_time": "2025-02-03T19:59:02",
            "upload_time_iso_8601": "2025-02-03T19:59:02.390117Z",
            "url": "https://files.pythonhosted.org/packages/35/65/ecb4761751b644b48e692c6f33db8eafd6d64862272b8c25b7be14eae22e/keyvi-0.6.3-cp38-cp38-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "25706ddbbd56ca602c7e7c67d1e35caf1c25b6ef3de8429a34ae3469b7c5b999",
                "md5": "ee561d97d336dae629b239049f90537c",
                "sha256": "269e52cdd355f3534b117feaa6fc5f8b65801d0aee01d13a10264c6900e52750"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp38-cp38-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ee561d97d336dae629b239049f90537c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 13376619,
            "upload_time": "2025-02-03T19:59:06",
            "upload_time_iso_8601": "2025-02-03T19:59:06.207041Z",
            "url": "https://files.pythonhosted.org/packages/25/70/6ddbbd56ca602c7e7c67d1e35caf1c25b6ef3de8429a34ae3469b7c5b999/keyvi-0.6.3-cp38-cp38-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1602d115df3175d603d8d3b34882417aa5120b890e392e3dd9fe1bf6d40a0a78",
                "md5": "82418979d6395854c4f265c2d9c2b749",
                "sha256": "282b8dc396bc396db18dacfdd1cfd2c83dac41fe8dad345ac4e59f7d792edb9e"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp38-cp38-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "82418979d6395854c4f265c2d9c2b749",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 12624098,
            "upload_time": "2025-02-03T19:59:09",
            "upload_time_iso_8601": "2025-02-03T19:59:09.170252Z",
            "url": "https://files.pythonhosted.org/packages/16/02/d115df3175d603d8d3b34882417aa5120b890e392e3dd9fe1bf6d40a0a78/keyvi-0.6.3-cp38-cp38-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3290cd1c14ce0e16c05c03f0751c5efabf083596804537b643589f1f644fb62b",
                "md5": "1836b9e3acc52a21cecc834359d54adb",
                "sha256": "574ccc269826b34071327406d9a03870f8c27ecc3c47e537f1f95a4c62f95e04"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1836b9e3acc52a21cecc834359d54adb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 13850368,
            "upload_time": "2025-02-03T19:59:13",
            "upload_time_iso_8601": "2025-02-03T19:59:13.370348Z",
            "url": "https://files.pythonhosted.org/packages/32/90/cd1c14ce0e16c05c03f0751c5efabf083596804537b643589f1f644fb62b/keyvi-0.6.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5781f6e33db518b1927d0a76069d3aac346bb866244ad021ecd09467f9d22acc",
                "md5": "f24ec13e5fb41bea54b59f9bef8afcb6",
                "sha256": "0542e39a251c6d8217660905e035dd9ac780788b51ba01d98999ab83c6fb2367"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f24ec13e5fb41bea54b59f9bef8afcb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 14093764,
            "upload_time": "2025-02-03T19:59:17",
            "upload_time_iso_8601": "2025-02-03T19:59:17.079594Z",
            "url": "https://files.pythonhosted.org/packages/57/81/f6e33db518b1927d0a76069d3aac346bb866244ad021ecd09467f9d22acc/keyvi-0.6.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0a17621ade3f7a42d73870b9d9a01564e9bd0828b6d612acf01653e32a69dd4",
                "md5": "28243696dccdfd293b5f91aea76156f9",
                "sha256": "c885aea446708087ed3f046804cc59558d7e5ede359b168420e029c1acb72aff"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp39-cp39-macosx_13_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "28243696dccdfd293b5f91aea76156f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 16309297,
            "upload_time": "2025-02-03T19:59:20",
            "upload_time_iso_8601": "2025-02-03T19:59:20.831880Z",
            "url": "https://files.pythonhosted.org/packages/e0/a1/7621ade3f7a42d73870b9d9a01564e9bd0828b6d612acf01653e32a69dd4/keyvi-0.6.3-cp39-cp39-macosx_13_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c3833aac5480f7219dbb3b99091b87c16bad9c61887ee4eec8c9d8243697ec0",
                "md5": "9eb3719cd26cf1ae17617329205dd849",
                "sha256": "f8131eb9a5931fc53e18096e8d442ed717d3d0b2f811f107cc71a9e6b6ca120e"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp39-cp39-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9eb3719cd26cf1ae17617329205dd849",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 16620772,
            "upload_time": "2025-02-03T19:59:24",
            "upload_time_iso_8601": "2025-02-03T19:59:24.680841Z",
            "url": "https://files.pythonhosted.org/packages/0c/38/33aac5480f7219dbb3b99091b87c16bad9c61887ee4eec8c9d8243697ec0/keyvi-0.6.3-cp39-cp39-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19c2ba7297629f737b3ed9504a3b68ab150e0493063252f6d3e8ad840d47ab72",
                "md5": "e8bacae7c17a2c07f7f407ea8d24cbdf",
                "sha256": "6c2dbaf1f63c34a721663309b5feb1a7b3c2ef11be5f2d02364571ac8b4af657"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e8bacae7c17a2c07f7f407ea8d24cbdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 13346564,
            "upload_time": "2025-02-03T19:59:27",
            "upload_time_iso_8601": "2025-02-03T19:59:27.601161Z",
            "url": "https://files.pythonhosted.org/packages/19/c2/ba7297629f737b3ed9504a3b68ab150e0493063252f6d3e8ad840d47ab72/keyvi-0.6.3-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "280c9e7141504226b566800f070bf0ec1b537eb72997b3d86e3f21c8d1e115a9",
                "md5": "6aa3e4a5438125436dfcf3c06f8e7acc",
                "sha256": "40601be754f472374d482badc63434b769ae256f27b2d78e444aa15dc164129a"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6aa3e4a5438125436dfcf3c06f8e7acc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 12588749,
            "upload_time": "2025-02-03T19:59:31",
            "upload_time_iso_8601": "2025-02-03T19:59:31.201790Z",
            "url": "https://files.pythonhosted.org/packages/28/0c/9e7141504226b566800f070bf0ec1b537eb72997b3d86e3f21c8d1e115a9/keyvi-0.6.3-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00d1ca807d5ac5746c1204be03bab97bfeb01ef8b94d381afb5af41b834d2c93",
                "md5": "5def5a290467fd7aaabb680a62d08f8f",
                "sha256": "df1ce1ac77a5b1c7beb1e6c758fa4c102af7be62953bdeee8d2e3bd188285554"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5def5a290467fd7aaabb680a62d08f8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 13761075,
            "upload_time": "2025-02-03T19:59:34",
            "upload_time_iso_8601": "2025-02-03T19:59:34.169165Z",
            "url": "https://files.pythonhosted.org/packages/00/d1/ca807d5ac5746c1204be03bab97bfeb01ef8b94d381afb5af41b834d2c93/keyvi-0.6.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "518c0718e67dd3d6228518e0653af2acbb971f29b1796134f160b5e1563e36e5",
                "md5": "061fb9b7e809660d6e42bdd3337e0bb5",
                "sha256": "7ea35efe6eaf4eff78f28203c95e2b87ea698b0c017b816170871b1b4f7e2036"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "061fb9b7e809660d6e42bdd3337e0bb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 13993655,
            "upload_time": "2025-02-03T19:59:37",
            "upload_time_iso_8601": "2025-02-03T19:59:37.184137Z",
            "url": "https://files.pythonhosted.org/packages/51/8c/0718e67dd3d6228518e0653af2acbb971f29b1796134f160b5e1563e36e5/keyvi-0.6.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b1edf946cc40ebd9494241ecdf303fd9876322da9390473e183d8bd395f2ce11",
                "md5": "3717ee9225c7421be02254449f7ad7bb",
                "sha256": "fec17b5933775f5729813b71a0a2f2af551934133c02de988e61d3c5ee943c61"
            },
            "downloads": -1,
            "filename": "keyvi-0.6.3.tar.gz",
            "has_sig": false,
            "md5_digest": "3717ee9225c7421be02254449f7ad7bb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2860199,
            "upload_time": "2025-02-03T19:59:39",
            "upload_time_iso_8601": "2025-02-03T19:59:39.437040Z",
            "url": "https://files.pythonhosted.org/packages/b1/ed/f946cc40ebd9494241ecdf303fd9876322da9390473e183d8bd395f2ce11/keyvi-0.6.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-03 19:59:39",
    "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: 0.38341s