Name | kuzu JSON |
Version |
0.11.3
JSON |
| download |
home_page | https://github.com/kuzudb/kuzu |
Summary | Highly scalable, extremely fast, easy-to-use embeddable graph database |
upload_time | 2025-10-10 13:36:54 |
maintainer | None |
docs_url | None |
author | None |
requires_python | None |
license | MIT |
keywords |
graph
database
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
> [!NOTE]
> Kuzu is working on something new!
>
> We are archiving the KuzuDB project here: https://github.com/kuzudb/kuzu/
>
> For those using Kuzu currently, prior Kuzu releases will continue to be usable in the same way without modifications to your code.
>
> If you are also using extensions, moving forward you have two options:
> 1. we have a new release 0.11.3 that bundles many (but not all) of the extensions, so you can migrate to 0.11.3; or
> 2. you can follow the [instructions here](http://kuzudb.github.io/docs/extensions/#host-your-own-extension-server) to run a local extension server.
>
> Further, some of our resources are moving from our website to GitHub:
> - Docs: http://kuzudb.github.io/docs
> - Blog: http://kuzudb.github.io/blog
>
> We thank you for being early users of Kuzu and making Kuzu better over the last few years!
# Kuzu
Kuzu is an embedded graph database built for query speed and scalability. Kuzu is optimized for handling complex analytical workloads
on very large databases and provides a set of retrieval features, such as a full text search and vector indices. Our core feature set includes:
- Flexible Property Graph Data Model and Cypher query language
- Embeddable, serverless integration into applications
- Native full text search and vector index
- Columnar disk-based storage
- Columnar sparse row-based (CSR) adjacency list/join indices
- Vectorized and factorized query processor
- Novel and very fast join algorithms
- Multi-core query parallelism
- Serializable ACID transactions
- Wasm (WebAssembly) bindings for fast, secure execution in the browser
Kuzu was initially developed by Kùzu Inc. It is available under a permissible license.
## Docs and Blog
To learn more about Kuzu, see our [Documentation](https://kuzudb.github.io/docs) and [Blog](https://kuzudb.github.io/blog) page.
## Getting Started
Refer to our [Getting Started](https://kuzudb.github.io/docs/get-started/) page for your first example.
## Extensions
Kuzu has an extension framework that users can dynamically load the functionality you need at runtime.
We've developed a list of [official extensions](https://kuzudb.github.io/docs/extensions/#available-extensions) that you can use to extend Kuzu's functionality.
Kuzu requires you to install the extension before loading and using it.
Note that Kuzu no longer provides the official extension server, where you can directly install any official extensions.
If you've upgraded to the latest version v0.11.3, Kuzu has pre-installed four commonly used extensions (`algo`, `fts`, `json`, `vector`) for you.
You do not need to manually INSTALL these extensions.
For Kuzu versions before v0.11.3, or to install extensions that haven't been pre-installed, you have to set up a local extension server.
The instructions of setting up a local extension server can be found below.
### Host your own extension server
The extension server is based on NGINX and is hosted on [GitHub](https://ghcr.io/kuzudb/extension-repo). You can pull the Docker image and run it in your environment:
```bash
docker pull ghcr.io/kuzudb/extension-repo:latest
docker run -d -p 8080:80 ghcr.io/kuzudb/extension-repo:latest
```
In this example, the extension server will be available at `http://localhost:8080`. You can then install extensions from your server by appending the `FROM` clause to the `INSTALL` command:
```cypher
INSTALL <EXTENSION_NAME> FROM 'http://localhost:8080/';
```
## Build from Source
You can build from source using the instructions provided in the [developer guide](https://kuzudb.github.io/docs/developer-guide).
## License
Kuzu is licensed under the [MIT License](LICENSE).
Raw data
{
"_id": null,
"home_page": "https://github.com/kuzudb/kuzu",
"name": "kuzu",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "graph, database",
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/96/0c/f141a81485729a072dc527b474e7580d5632309c68ad1a5aa6ed9ac45387/kuzu-0.11.3.tar.gz",
"platform": null,
"description": "> [!NOTE]\n> Kuzu is working on something new!\n> \n> We are archiving the KuzuDB project here: https://github.com/kuzudb/kuzu/\n> \n> For those using Kuzu currently, prior Kuzu releases will continue to be usable in the same way without modifications to your code.\n> \n> If you are also using extensions, moving forward you have two options:\n> 1. we have a new release 0.11.3 that bundles many (but not all) of the extensions, so you can migrate to 0.11.3; or\n> 2. you can follow the [instructions here](http://kuzudb.github.io/docs/extensions/#host-your-own-extension-server) to run a local extension server.\n> \n> Further, some of our resources are moving from our website to GitHub:\n> - Docs: http://kuzudb.github.io/docs\n> - Blog: http://kuzudb.github.io/blog\n> \n> We thank you for being early users of Kuzu and making Kuzu better over the last few years!\n\n\n# Kuzu\nKuzu is an embedded graph database built for query speed and scalability. Kuzu is optimized for handling complex analytical workloads \non very large databases and provides a set of retrieval features, such as a full text search and vector indices. Our core feature set includes:\n\n- Flexible Property Graph Data Model and Cypher query language\n- Embeddable, serverless integration into applications\n- Native full text search and vector index\n- Columnar disk-based storage\n- Columnar sparse row-based (CSR) adjacency list/join indices\n- Vectorized and factorized query processor\n- Novel and very fast join algorithms\n- Multi-core query parallelism\n- Serializable ACID transactions\n- Wasm (WebAssembly) bindings for fast, secure execution in the browser\n\nKuzu was initially developed by K\u00f9zu Inc. It is available under a permissible license.\n\n## Docs and Blog\n\nTo learn more about Kuzu, see our [Documentation](https://kuzudb.github.io/docs) and [Blog](https://kuzudb.github.io/blog) page.\n\n## Getting Started\n\nRefer to our [Getting Started](https://kuzudb.github.io/docs/get-started/) page for your first example.\n\n## Extensions\nKuzu has an extension framework that users can dynamically load the functionality you need at runtime.\nWe've developed a list of [official extensions](https://kuzudb.github.io/docs/extensions/#available-extensions) that you can use to extend Kuzu's functionality.\n\nKuzu requires you to install the extension before loading and using it.\nNote that Kuzu no longer provides the official extension server, where you can directly install any official extensions.\n\nIf you've upgraded to the latest version v0.11.3, Kuzu has pre-installed four commonly used extensions (`algo`, `fts`, `json`, `vector`) for you.\nYou do not need to manually INSTALL these extensions.\n\nFor Kuzu versions before v0.11.3, or to install extensions that haven't been pre-installed, you have to set up a local extension server.\nThe instructions of setting up a local extension server can be found below.\n\n### Host your own extension server\n\nThe extension server is based on NGINX and is hosted on [GitHub](https://ghcr.io/kuzudb/extension-repo). You can pull the Docker image and run it in your environment:\n\n```bash\ndocker pull ghcr.io/kuzudb/extension-repo:latest\ndocker run -d -p 8080:80 ghcr.io/kuzudb/extension-repo:latest\n```\n\nIn this example, the extension server will be available at `http://localhost:8080`. You can then install extensions from your server by appending the `FROM` clause to the `INSTALL` command:\n\n```cypher\nINSTALL <EXTENSION_NAME> FROM 'http://localhost:8080/';\n```\n\n## Build from Source\n\nYou can build from source using the instructions provided in the [developer guide](https://kuzudb.github.io/docs/developer-guide).\n\n## License\nKuzu is licensed under the [MIT License](LICENSE).\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Highly scalable, extremely fast, easy-to-use embeddable graph database",
"version": "0.11.3",
"project_urls": {
"Changelog": "https://github.com/kuzudb/kuzu/releases",
"Documentation": "https://docs.kuzudb.com/",
"Homepage": "https://kuzudb.com/",
"Repository": "https://github.com/kuzudb/kuzu"
},
"split_keywords": [
"graph",
" database"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "f53d830489670618ceb6094b6ddc322e3e6457f5cf4fd6916526b7b8cd6e2c1f",
"md5": "b4c8c9972505dc92a4a745e2558f9cd2",
"sha256": "3d93131f3dc7b647da7a5124c975dc2cc207afc38a9fbb83badc23d2e25dbfec"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b4c8c9972505dc92a4a745e2558f9cd2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4093610,
"upload_time": "2025-10-10T13:35:47",
"upload_time_iso_8601": "2025-10-10T13:35:47.691723Z",
"url": "https://files.pythonhosted.org/packages/f5/3d/830489670618ceb6094b6ddc322e3e6457f5cf4fd6916526b7b8cd6e2c1f/kuzu-0.11.3-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "821c7cf246a66a287d466c6cc2f01d5f4e12bd6d23350217c592dc6b51988ed5",
"md5": "247ea85b46aadce1b070feb666188acf",
"sha256": "4f021a6b4e31867a0b49e369431c8f05ef4244cea1cb337c76114649975f56e3"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp310-cp310-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "247ea85b46aadce1b070feb666188acf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4517385,
"upload_time": "2025-10-10T13:35:49",
"upload_time_iso_8601": "2025-10-10T13:35:49.471197Z",
"url": "https://files.pythonhosted.org/packages/82/1c/7cf246a66a287d466c6cc2f01d5f4e12bd6d23350217c592dc6b51988ed5/kuzu-0.11.3-cp310-cp310-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d635ed37f146225167ed7a8573a09e2ee4ebafd0111b815cb0532dc823069729",
"md5": "d750db6048a615996e3248dd3f85c70d",
"sha256": "4ac7d2a81d7370dc12400431a3331c45954340b96439fcf2b730794cf670684a"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "d750db6048a615996e3248dd3f85c70d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 6795559,
"upload_time": "2025-10-10T13:35:50",
"upload_time_iso_8601": "2025-10-10T13:35:50.977458Z",
"url": "https://files.pythonhosted.org/packages/d6/35/ed37f146225167ed7a8573a09e2ee4ebafd0111b815cb0532dc823069729/kuzu-0.11.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "039f2c8e3cf777aba73d515f73c9491ba65fbebb7852f41abedfc70a26bec229",
"md5": "16a217e0cf66c94b690c72fddeb02101",
"sha256": "8621bb470390f95810c7e79e36a670e9a2f27e189ef429f3df892626de63a652"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "16a217e0cf66c94b690c72fddeb02101",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 7616362,
"upload_time": "2025-10-10T13:35:52",
"upload_time_iso_8601": "2025-10-10T13:35:52.717657Z",
"url": "https://files.pythonhosted.org/packages/03/9f/2c8e3cf777aba73d515f73c9491ba65fbebb7852f41abedfc70a26bec229/kuzu-0.11.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fb0222789dc00abb34206e6d96b0ae0eb1884b524fb7fdffd5121fc3178a9ed6",
"md5": "cb0c56cfe20530cd472285a611506de9",
"sha256": "126efba7f8a504614f5b307bcb94ac0e6d9f87f7e34b4334ca769ad6cfe2215e"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "cb0c56cfe20530cd472285a611506de9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4712323,
"upload_time": "2025-10-10T13:35:54",
"upload_time_iso_8601": "2025-10-10T13:35:54.440467Z",
"url": "https://files.pythonhosted.org/packages/fb/02/22789dc00abb34206e6d96b0ae0eb1884b524fb7fdffd5121fc3178a9ed6/kuzu-0.11.3-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "461b65d3974551f10d100ca4682b1e4beff23a9c5b7555c6ea552a3855555cc0",
"md5": "862259188f0b2be1626e378d18ad18ae",
"sha256": "836739dced9f61912a80bb7ad1df2159cef456c5b5cfe92f15394b9c51a785cb"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "862259188f0b2be1626e378d18ad18ae",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4094223,
"upload_time": "2025-10-10T13:35:56",
"upload_time_iso_8601": "2025-10-10T13:35:56.023542Z",
"url": "https://files.pythonhosted.org/packages/46/1b/65d3974551f10d100ca4682b1e4beff23a9c5b7555c6ea552a3855555cc0/kuzu-0.11.3-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a9e80efbc4812796468ca47273fc53c21c63706bc5f7bc4fa3459918d323ced8",
"md5": "3ce7906b8ad638e71207ba3a3e8bf730",
"sha256": "8d4f0e4085d3a85b0e7a8e337082bec6a3cf8c92c9a35209ffe53b2ed212ab08"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp311-cp311-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "3ce7906b8ad638e71207ba3a3e8bf730",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4519024,
"upload_time": "2025-10-10T13:35:57",
"upload_time_iso_8601": "2025-10-10T13:35:57.665469Z",
"url": "https://files.pythonhosted.org/packages/a9/e8/0efbc4812796468ca47273fc53c21c63706bc5f7bc4fa3459918d323ced8/kuzu-0.11.3-cp311-cp311-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ddb207e81d9f1858a592d1ddc1f02a483718cdfac3315bbca019b13b2ddd8c3e",
"md5": "c396ac99280b96a99867ff7a3e6c880f",
"sha256": "1419ada227d15107c2b2536c66ae715c59876585d434b1918c17598956dcd5f7"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "c396ac99280b96a99867ff7a3e6c880f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 6796096,
"upload_time": "2025-10-10T13:35:59",
"upload_time_iso_8601": "2025-10-10T13:35:59.174737Z",
"url": "https://files.pythonhosted.org/packages/dd/b2/07e81d9f1858a592d1ddc1f02a483718cdfac3315bbca019b13b2ddd8c3e/kuzu-0.11.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b1e08ea0d289ef6840fbd00e642657ed07d03690a97a01676e2b79d5c3e9ddf8",
"md5": "8ff0a0feab0ca9f68a9ae2007cb425ac",
"sha256": "ef094001d319804fcc8eb72775a184f1119d84af1bace29581a003bd806c36cd"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "8ff0a0feab0ca9f68a9ae2007cb425ac",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 7616892,
"upload_time": "2025-10-10T13:36:00",
"upload_time_iso_8601": "2025-10-10T13:36:00.866495Z",
"url": "https://files.pythonhosted.org/packages/b1/e0/8ea0d289ef6840fbd00e642657ed07d03690a97a01676e2b79d5c3e9ddf8/kuzu-0.11.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3d69ea65a74c9140e13d7f68dd9d8f95f42b55b9d7750e7a20df3d9b2f09734",
"md5": "448554073591d20ffa17a852641eedf6",
"sha256": "eb0858ec8084b10badeae37e730fbe0c3b2846dfe3508001d123087de262efbb"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "448554073591d20ffa17a852641eedf6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4712696,
"upload_time": "2025-10-10T13:36:02",
"upload_time_iso_8601": "2025-10-10T13:36:02.607648Z",
"url": "https://files.pythonhosted.org/packages/a3/d6/9ea65a74c9140e13d7f68dd9d8f95f42b55b9d7750e7a20df3d9b2f09734/kuzu-0.11.3-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6488ed193fd0ddfdbdde6c79e96b96df3b760fe48b2626e7151d81a1ed90fd9f",
"md5": "e17b99cf69c35d0837d1520dd1746131",
"sha256": "d865ca31506867cf1ccf50c094c44de96de94bc77ffb350bfcaca0e4c5e469da"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e17b99cf69c35d0837d1520dd1746131",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4093637,
"upload_time": "2025-10-10T13:36:04",
"upload_time_iso_8601": "2025-10-10T13:36:04.206114Z",
"url": "https://files.pythonhosted.org/packages/64/88/ed193fd0ddfdbdde6c79e96b96df3b760fe48b2626e7151d81a1ed90fd9f/kuzu-0.11.3-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d66d06e02828b78297d6d99ff3dfb0ab7b5ec5d075053aae33b53189437bbb66",
"md5": "1d09a852f39753c9f0e522f6d30f30e2",
"sha256": "109372bc16ce6724f88e0312bc686e34145e330d69b163b22ba92f4d3d96b48f"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp312-cp312-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "1d09a852f39753c9f0e522f6d30f30e2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4520482,
"upload_time": "2025-10-10T13:36:06",
"upload_time_iso_8601": "2025-10-10T13:36:06.302452Z",
"url": "https://files.pythonhosted.org/packages/d6/6d/06e02828b78297d6d99ff3dfb0ab7b5ec5d075053aae33b53189437bbb66/kuzu-0.11.3-cp312-cp312-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "72d50939a953860a8b373bef7b8a66a4571b27ff9faeb22672d2cd2cf3b6ba15",
"md5": "d0f0cffa8df1a895f3f4dd8935a6ada1",
"sha256": "d6274da6c470c001b7d332ec78a076395b009c2f267914640884fd6fa78bf47d"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "d0f0cffa8df1a895f3f4dd8935a6ada1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 6795398,
"upload_time": "2025-10-10T13:36:08",
"upload_time_iso_8601": "2025-10-10T13:36:08.000648Z",
"url": "https://files.pythonhosted.org/packages/72/d5/0939a953860a8b373bef7b8a66a4571b27ff9faeb22672d2cd2cf3b6ba15/kuzu-0.11.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d5d8e3dfb89aa3f70f63aa283c523f2dd2ac90a1b3ed990643e3a89909236f9",
"md5": "b236fe12d8bd4d1980040d2f54354fbd",
"sha256": "1bb3b833ca2d1d919423cb3e0150592c2587562ab85259277f622e6f06e0b487"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "b236fe12d8bd4d1980040d2f54354fbd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7615389,
"upload_time": "2025-10-10T13:36:09",
"upload_time_iso_8601": "2025-10-10T13:36:09.809292Z",
"url": "https://files.pythonhosted.org/packages/7d/5d/8e3dfb89aa3f70f63aa283c523f2dd2ac90a1b3ed990643e3a89909236f9/kuzu-0.11.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6c19c8e93185d6142f01b2e6daec4ad537dfd32afd1f69894889769b725b08c1",
"md5": "5ee9dbe807e752bf10d2ee026c268160",
"sha256": "605909f744763775b8647014a03526d7f928a7b5a62a8b8c1d1e7bbdaf9dbb6c"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "5ee9dbe807e752bf10d2ee026c268160",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4714355,
"upload_time": "2025-10-10T13:36:11",
"upload_time_iso_8601": "2025-10-10T13:36:11.527725Z",
"url": "https://files.pythonhosted.org/packages/6c/19/c8e93185d6142f01b2e6daec4ad537dfd32afd1f69894889769b725b08c1/kuzu-0.11.3-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9e42c0e222a9b0605745234fec2774a25dd2e472699931f683f15d28ab8c076",
"md5": "227c8359a4d6836ba1119a07ab91fd13",
"sha256": "e20ab3e3b20ccf75219872feb86582f959e313eeb59f51131adf4c91ebfabe30"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "227c8359a4d6836ba1119a07ab91fd13",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4093664,
"upload_time": "2025-10-10T13:36:13",
"upload_time_iso_8601": "2025-10-10T13:36:13.116675Z",
"url": "https://files.pythonhosted.org/packages/c9/e4/2c0e222a9b0605745234fec2774a25dd2e472699931f683f15d28ab8c076/kuzu-0.11.3-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "88053020ed9a0a7b492597f211f805233b77ef37266a23c27efc40bb7cb37402",
"md5": "13789f0744aaa373bf1333e780fe23b0",
"sha256": "054479d3ce71410b8af2f5fa6aa37883db7fea5b25606af8d3bd7cf717aa5395"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp313-cp313-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "13789f0744aaa373bf1333e780fe23b0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4520498,
"upload_time": "2025-10-10T13:36:14",
"upload_time_iso_8601": "2025-10-10T13:36:14.933345Z",
"url": "https://files.pythonhosted.org/packages/88/05/3020ed9a0a7b492597f211f805233b77ef37266a23c27efc40bb7cb37402/kuzu-0.11.3-cp313-cp313-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f661a502700a7f2863f8f60621a412a7074d7eda9e92f18fd1d8d86905aa4d3",
"md5": "b76913ab7f5914ef3cef71fa0cba22c9",
"sha256": "143a37f1ae38b6b4337ccfcf42fa4f779a897223fff9c6c29f1a5a5a86911300"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "b76913ab7f5914ef3cef71fa0cba22c9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 6795804,
"upload_time": "2025-10-10T13:36:16",
"upload_time_iso_8601": "2025-10-10T13:36:16.550466Z",
"url": "https://files.pythonhosted.org/packages/0f/66/1a502700a7f2863f8f60621a412a7074d7eda9e92f18fd1d8d86905aa4d3/kuzu-0.11.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "79c21ea8cdc05946cb5906a7ebb451d7268e501ebb51ebecc0437969f8c07450",
"md5": "c90c981c8aec7091a3dc4cf5b731ffb2",
"sha256": "548bfb3045d89bce1fbe89f4a890d636789671abfa80cbde2054c671e6069133"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "c90c981c8aec7091a3dc4cf5b731ffb2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7615668,
"upload_time": "2025-10-10T13:36:18",
"upload_time_iso_8601": "2025-10-10T13:36:18.882313Z",
"url": "https://files.pythonhosted.org/packages/79/c2/1ea8cdc05946cb5906a7ebb451d7268e501ebb51ebecc0437969f8c07450/kuzu-0.11.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "94dbe7e6cada6dc924eb8939bd35c5f724f5de4fc430a64d6d9e71b75cd0c271",
"md5": "ec8c11ccf5c60fdd09ab12cd74db9316",
"sha256": "eb5c165bc5838059e498e8325939fc6bac075e1941157e8df6ebdd710135d43b"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "ec8c11ccf5c60fdd09ab12cd74db9316",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 6798556,
"upload_time": "2025-10-10T13:36:22",
"upload_time_iso_8601": "2025-10-10T13:36:22.472140Z",
"url": "https://files.pythonhosted.org/packages/94/db/e7e6cada6dc924eb8939bd35c5f724f5de4fc430a64d6d9e71b75cd0c271/kuzu-0.11.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cf68a0fa02134cb255c80b5ed5bb5f6130fbbc75a8ae8be4fd6ea6eb6bc8014b",
"md5": "53cafb03740f52e897a1965bdd92b73a",
"sha256": "88c73dfd3d6a1fb374031050b725236fa9dd9a95424b09b20086a3d274bed51f"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "53cafb03740f52e897a1965bdd92b73a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7620378,
"upload_time": "2025-10-10T13:36:24",
"upload_time_iso_8601": "2025-10-10T13:36:24.453677Z",
"url": "https://files.pythonhosted.org/packages/cf/68/a0fa02134cb255c80b5ed5bb5f6130fbbc75a8ae8be4fd6ea6eb6bc8014b/kuzu-0.11.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d1c3336d6181f8f50126cf3d7186b3c5479f9f49d973145f79bed45cf87a9bb7",
"md5": "8bac8302fdd20fb18110c8eaabfc0e61",
"sha256": "87bf6c369f182a59e5b8a38b3ca288b90fab2827577d9b0d2170a202c42bc8f5"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "8bac8302fdd20fb18110c8eaabfc0e61",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4714372,
"upload_time": "2025-10-10T13:36:20",
"upload_time_iso_8601": "2025-10-10T13:36:20.877435Z",
"url": "https://files.pythonhosted.org/packages/d1/c3/336d6181f8f50126cf3d7186b3c5479f9f49d973145f79bed45cf87a9bb7/kuzu-0.11.3-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d6b72a4569984995f09476dbf1ef2e0a7298aa9fdb8896f2e8195d80e11786f4",
"md5": "233432cfc661cd7bea958f52c90e361f",
"sha256": "9d2752a9e37adda6aef3bf041932ae3a1cf74ca7e893bbbacdd5e62b3ac6f8c2"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "233432cfc661cd7bea958f52c90e361f",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 6795649,
"upload_time": "2025-10-10T13:36:26",
"upload_time_iso_8601": "2025-10-10T13:36:26.150004Z",
"url": "https://files.pythonhosted.org/packages/d6/b7/2a4569984995f09476dbf1ef2e0a7298aa9fdb8896f2e8195d80e11786f4/kuzu-0.11.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7713df6e06a7d7506743c3a6cfbe50ee3f9d3fc58228e2a2fcbe7e74e7c17b00",
"md5": "875195fadb8c3c253418474f0f6599a9",
"sha256": "86be7d113e4e2c6761b1701079af8aeffc04c6981517f2d6aa393e883cc46036"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "875195fadb8c3c253418474f0f6599a9",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 7615882,
"upload_time": "2025-10-10T13:36:28",
"upload_time_iso_8601": "2025-10-10T13:36:28.215480Z",
"url": "https://files.pythonhosted.org/packages/77/13/df6e06a7d7506743c3a6cfbe50ee3f9d3fc58228e2a2fcbe7e74e7c17b00/kuzu-0.11.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3285c52c3b167edcc67da3b8788a20a2fb5b4f045060cbe1aed6121ce3ce83d3",
"md5": "0cb63d45ab3ec03b49c0050bf518119d",
"sha256": "d72ebd88e231b562e7a60ff88d200825d53e78a681bddd7f8d77b78126a5060c"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "0cb63d45ab3ec03b49c0050bf518119d",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 6798657,
"upload_time": "2025-10-10T13:36:29",
"upload_time_iso_8601": "2025-10-10T13:36:29.935346Z",
"url": "https://files.pythonhosted.org/packages/32/85/c52c3b167edcc67da3b8788a20a2fb5b4f045060cbe1aed6121ce3ce83d3/kuzu-0.11.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06be5b4ff168718165c2ff5848ab79e22ecce72ad00522afee6820d390cb0753",
"md5": "91a85ceced2410acd65d0e7da73feec0",
"sha256": "64c7ec822906bdee154eb38d93e64f184d8f94b30bbeaceaa252725f2b9efab3"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "91a85ceced2410acd65d0e7da73feec0",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 7620394,
"upload_time": "2025-10-10T13:36:31",
"upload_time_iso_8601": "2025-10-10T13:36:31.690835Z",
"url": "https://files.pythonhosted.org/packages/06/be/5b4ff168718165c2ff5848ab79e22ecce72ad00522afee6820d390cb0753/kuzu-0.11.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c741e39a366e29fa28aaac8a6d079f9faf8c3a15c5ce27036a41f4745d0908af",
"md5": "1638c48fe1dfd88728a69c70bfd2de7b",
"sha256": "af061b98f7b80058bcc6780edb1675f3d937a76cac02b8838365a07db06a8f41"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp37-cp37m-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "1638c48fe1dfd88728a69c70bfd2de7b",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 4515435,
"upload_time": "2025-10-10T13:36:33",
"upload_time_iso_8601": "2025-10-10T13:36:33.281061Z",
"url": "https://files.pythonhosted.org/packages/c7/41/e39a366e29fa28aaac8a6d079f9faf8c3a15c5ce27036a41f4745d0908af/kuzu-0.11.3-cp37-cp37m-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "19080240b35b96404aa4aa04084e0af8d80bcd4dd8e7fca410c7d770bbaa5872",
"md5": "1814c902a6b92fc782310b31e8034493",
"sha256": "d1fd7047c9a2c6a2f410e0e6fc5e499ff23c9a3e1683f101b3e7466c009de6f8"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1814c902a6b92fc782310b31e8034493",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4093008,
"upload_time": "2025-10-10T13:36:35",
"upload_time_iso_8601": "2025-10-10T13:36:35.186732Z",
"url": "https://files.pythonhosted.org/packages/19/08/0240b35b96404aa4aa04084e0af8d80bcd4dd8e7fca410c7d770bbaa5872/kuzu-0.11.3-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "462853894c58d9076136a478fa318e02b16133e712e55699f6d311879f30407b",
"md5": "2daf02db469140bbc2d7b7050bab38dd",
"sha256": "be76326e0845a18a436def173332ebc2a9b63528959713115bb26298e3bf4f4f"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp38-cp38-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "2daf02db469140bbc2d7b7050bab38dd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4516530,
"upload_time": "2025-10-10T13:36:36",
"upload_time_iso_8601": "2025-10-10T13:36:36.698161Z",
"url": "https://files.pythonhosted.org/packages/46/28/53894c58d9076136a478fa318e02b16133e712e55699f6d311879f30407b/kuzu-0.11.3-cp38-cp38-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2f8c87538cc7944f981321efd849e9c30fa1c1397de4460b811da315b1c0504c",
"md5": "4cf8e86cca54e9de6bb61961c700cdba",
"sha256": "3517ea4b265ac373458fb41419c8cd5080282f7f3e18ba44f673031118aef72b"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "4cf8e86cca54e9de6bb61961c700cdba",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 6795664,
"upload_time": "2025-10-10T13:36:38",
"upload_time_iso_8601": "2025-10-10T13:36:38.940436Z",
"url": "https://files.pythonhosted.org/packages/2f/8c/87538cc7944f981321efd849e9c30fa1c1397de4460b811da315b1c0504c/kuzu-0.11.3-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe1bd3744f7af25672a5612393dd72f28d127c542ece54ac89364b3df533fa12",
"md5": "0b211f6e4191e42c8feb1aa66b0da226",
"sha256": "5b60b9975ad6e0b65b20412759cceee0b2d1f28edac84fa4eed11f0800ceafac"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "0b211f6e4191e42c8feb1aa66b0da226",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 7615092,
"upload_time": "2025-10-10T13:36:40",
"upload_time_iso_8601": "2025-10-10T13:36:40.734171Z",
"url": "https://files.pythonhosted.org/packages/fe/1b/d3744f7af25672a5612393dd72f28d127c542ece54ac89364b3df533fa12/kuzu-0.11.3-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c2e094114f19cc14802273f0c6c6d4ecec6f6fc7fa8dbec6504464e67f9ae5f1",
"md5": "5d26b515e3e15ebfec55a8c3bce69b0e",
"sha256": "c9c361d7977167b2fa320d9e477b8d3215c88f136844c5c3a3b4142887e54fb5"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "5d26b515e3e15ebfec55a8c3bce69b0e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4711051,
"upload_time": "2025-10-10T13:36:42",
"upload_time_iso_8601": "2025-10-10T13:36:42.434480Z",
"url": "https://files.pythonhosted.org/packages/c2/e0/94114f19cc14802273f0c6c6d4ecec6f6fc7fa8dbec6504464e67f9ae5f1/kuzu-0.11.3-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4115a73ada9aa8460012bea955549ee88063f5051f4af7a30b91b2c32f28f7f5",
"md5": "f3dd437df6802f954b7a5840eb134e5f",
"sha256": "d71d6ec478178ce2d9303133eb5a444cd30268e512eb8d1b54fbf528b1b4f983"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f3dd437df6802f954b7a5840eb134e5f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4093232,
"upload_time": "2025-10-10T13:36:44",
"upload_time_iso_8601": "2025-10-10T13:36:44.008746Z",
"url": "https://files.pythonhosted.org/packages/41/15/a73ada9aa8460012bea955549ee88063f5051f4af7a30b91b2c32f28f7f5/kuzu-0.11.3-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c116b3f7f1fd4372f950c4fa1e78d58205bfaf15dd1dcb60f6470ed59f7ed43",
"md5": "d14f47489688ab8400f6136a92597218",
"sha256": "549588499430a8df2f51ef8b5742a6f197776d52d34862812ef2de3ae0539c2a"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp39-cp39-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "d14f47489688ab8400f6136a92597218",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4517040,
"upload_time": "2025-10-10T13:36:47",
"upload_time_iso_8601": "2025-10-10T13:36:47.484697Z",
"url": "https://files.pythonhosted.org/packages/0c/11/6b3f7f1fd4372f950c4fa1e78d58205bfaf15dd1dcb60f6470ed59f7ed43/kuzu-0.11.3-cp39-cp39-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3affc0421b680e79d8c9708fc897682c66ddbd7b9f14b8ab2149c410a732337c",
"md5": "85c5093d8a5331c7436085368172d5b4",
"sha256": "ae837f265a4b1865fe45fffba3fbd9d39698cc1a88bcbdb06e366b0b7829a7ff"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "85c5093d8a5331c7436085368172d5b4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 6795667,
"upload_time": "2025-10-10T13:36:49",
"upload_time_iso_8601": "2025-10-10T13:36:49.612999Z",
"url": "https://files.pythonhosted.org/packages/3a/ff/c0421b680e79d8c9708fc897682c66ddbd7b9f14b8ab2149c410a732337c/kuzu-0.11.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b851a0cc495bafbd1a43e99abd4a01e3b54d8cfd762417155e6b49ef002a9538",
"md5": "ade5582dd89c7a331768ad0ba2fe73f5",
"sha256": "ffff1f2fdf4fc570ddfefbe1d5918d3f53239eb38dd5c26358baa7d07e29a0d2"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "ade5582dd89c7a331768ad0ba2fe73f5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 7616118,
"upload_time": "2025-10-10T13:36:51",
"upload_time_iso_8601": "2025-10-10T13:36:51.357516Z",
"url": "https://files.pythonhosted.org/packages/b8/51/a0cc495bafbd1a43e99abd4a01e3b54d8cfd762417155e6b49ef002a9538/kuzu-0.11.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c3482b6bd16642125b852708a48454c58cf9a82a0ea5c9c8d56319d1f7ac9cde",
"md5": "ffad16666dd931260955070318c4822b",
"sha256": "df7bf00f8921e4e41169ab2d9e5b439f42c602d33612f620c8c0f09bace2adb5"
},
"downloads": -1,
"filename": "kuzu-0.11.3-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "ffad16666dd931260955070318c4822b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4715905,
"upload_time": "2025-10-10T13:36:53",
"upload_time_iso_8601": "2025-10-10T13:36:53.062460Z",
"url": "https://files.pythonhosted.org/packages/c3/48/2b6bd16642125b852708a48454c58cf9a82a0ea5c9c8d56319d1f7ac9cde/kuzu-0.11.3-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "960cf141a81485729a072dc527b474e7580d5632309c68ad1a5aa6ed9ac45387",
"md5": "1650096067e216560ee82a006d266c11",
"sha256": "e7bea3ca30c4bb462792eedcaa7f2125c800b243bb4a872e1eedc16917c1967a"
},
"downloads": -1,
"filename": "kuzu-0.11.3.tar.gz",
"has_sig": false,
"md5_digest": "1650096067e216560ee82a006d266c11",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 19430620,
"upload_time": "2025-10-10T13:36:54",
"upload_time_iso_8601": "2025-10-10T13:36:54.984309Z",
"url": "https://files.pythonhosted.org/packages/96/0c/f141a81485729a072dc527b474e7580d5632309c68ad1a5aa6ed9ac45387/kuzu-0.11.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-10 13:36:54",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "kuzudb",
"github_project": "kuzu",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "kuzu"
}