# nVennPy
This package adds a Python interface to the `nVenn2` algorithm to create generalized, quasi-proportional Venn diagrams.
## The problem
We have several `sets` composed of `elements`, like gene symbols. Each gene symbol can belong to one or more sets, which define `regions`. A region is defined by the sets it belongs to and the sets it does not belong to.
A proportional Venn diagrams shows sets inside lines that may intersect and define regions. The area of each region is approximately proportional to the number of gene symbols that belong to that region. The nVenn2 algorithm is also generalized, as it can be used on any number of sets. In practice, a Venn diagram with more that six sets is not practical. However, more sets can be used if most regions are empty (see example 2).
## Input
The input for `nVenn2` is always a text table. The algorithm will try to guess the column separator (tab, space, comma or semicolon). Sets can be defined by row or column. If sets are in rows, the first column contains the set names. If sets are in columns, the first row contains the set names. The table is passed to the `diagram()` method to create a new object. The second parameter tells the module whether the sets are in columns (`1`) or rows (`2`). A value of `0` tells the module to try to figure out if the sets are in rows or columns.
## Simulation
After a Venn table has been loaded, the diagram is generated by calling the `simulate()` method on the object. Every time the method is invoked, the starting conditions change, and the result may be different. If one wants to keep a diagram, it is important to save the figure before running `simulate()` again.
## Output
The main output of `nVenn2` is an svg figure with the diagram. The svg code is obtained by calling the `to_svg()` method on the object. Multiple features in the figure can be customized by calling the `rotate_diagram`, `palette`, `set_color`, `set_opacity`, `set_line_width`, `show_region_number`, `show_region_identifier` and `set_font_size` methods. In addition, the diagram can be saved in the context of a web page that allows the user to explore the diagram with the `to_html()` method.
Once the input is entered, users can also get the elements in a region with the `get_venn_region` method.
# Example 1
import nvenn2
n = nvenn2.diagram("Set1 TP53 SF3B1 POT1\nSet2 TP53 KRAS NRAS\nSet3 SF3B1 POT1 LMNA\nSet4 TP53 KRAS SF3B1", 2)
n.simulate()
print(n.tosvg())

n.get_venn_region(["Set1", "Set3"])
["POT1"]
# Example 2
import nvenn2
v = nvenn2.diagram("a 1 2\nb 2 3\nc 3 4\nd 4 5\ne 5 6\nf 6 7\ng 7 8\nh 8 9\nI 9 10\nj 10 1\n", 2)

Raw data
{
"_id": null,
"home_page": null,
"name": "nvenn2",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": "Victor Quesada <quesadavictor@uniovi.es>",
"keywords": "Venn diagram, Euler diagram, generalized, proportional",
"author": null,
"author_email": "Victor Quesada <quesadavictor@uniovi.es>",
"download_url": "https://files.pythonhosted.org/packages/cb/1e/e8a267ce7d4146d7ab4bf29774b2254dc97b6a4b4007b808b01b87401168/nvenn2-2.0.1.tar.gz",
"platform": null,
"description": "# nVennPy\nThis package adds a Python interface to the `nVenn2` algorithm to create generalized, quasi-proportional Venn diagrams. \n\n## The problem\nWe have several `sets` composed of `elements`, like gene symbols. Each gene symbol can belong to one or more sets, which define `regions`. A region is defined by the sets it belongs to and the sets it does not belong to. \n\nA proportional Venn diagrams shows sets inside lines that may intersect and define regions. The area of each region is approximately proportional to the number of gene symbols that belong to that region. The nVenn2 algorithm is also generalized, as it can be used on any number of sets. In practice, a Venn diagram with more that six sets is not practical. However, more sets can be used if most regions are empty (see example 2).\n\n## Input\nThe input for `nVenn2` is always a text table. The algorithm will try to guess the column separator (tab, space, comma or semicolon). Sets can be defined by row or column. If sets are in rows, the first column contains the set names. If sets are in columns, the first row contains the set names. The table is passed to the `diagram()` method to create a new object. The second parameter tells the module whether the sets are in columns (`1`) or rows (`2`). A value of `0` tells the module to try to figure out if the sets are in rows or columns.\n\n## Simulation\nAfter a Venn table has been loaded, the diagram is generated by calling the `simulate()` method on the object. Every time the method is invoked, the starting conditions change, and the result may be different. If one wants to keep a diagram, it is important to save the figure before running `simulate()` again.\n\n## Output\nThe main output of `nVenn2` is an svg figure with the diagram. The svg code is obtained by calling the `to_svg()` method on the object. Multiple features in the figure can be customized by calling the `rotate_diagram`, `palette`, `set_color`, `set_opacity`, `set_line_width`, `show_region_number`, `show_region_identifier` and `set_font_size` methods. In addition, the diagram can be saved in the context of a web page that allows the user to explore the diagram with the `to_html()` method.\nOnce the input is entered, users can also get the elements in a region with the `get_venn_region` method.\n\n# Example 1\n\n import nvenn2\n n = nvenn2.diagram(\"Set1 TP53 SF3B1 POT1\\nSet2 TP53 KRAS NRAS\\nSet3 SF3B1 POT1 LMNA\\nSet4 TP53 KRAS SF3B1\", 2)\n n.simulate()\n print(n.tosvg())\n\n\n\n n.get_venn_region([\"Set1\", \"Set3\"])\n [\"POT1\"]\n \n# Example 2\n import nvenn2\n v = nvenn2.diagram(\"a 1 2\\nb 2 3\\nc 3 4\\nd 4 5\\ne 5 6\\nf 6 7\\ng 7 8\\nh 8 9\\nI 9 10\\nj 10 1\\n\", 2)\n \n\n\n",
"bugtrack_url": null,
"license": null,
"summary": "Python bindings to nVenn2 to create generalized, quasi-proportional Venn diagrams",
"version": "2.0.1",
"project_urls": null,
"split_keywords": [
"venn diagram",
" euler diagram",
" generalized",
" proportional"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "0d33cdb91b15de08f1a44ae1d4d0f31afca8e555accb84cc03f23e51057f2b10",
"md5": "8026b1c773fa6581c1cbf479bfbcc0a4",
"sha256": "77b656f5c9ad0cb8416efac00243e0433ecd31861e50a44b7a80c4af57232417"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8026b1c773fa6581c1cbf479bfbcc0a4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 210815,
"upload_time": "2025-08-30T15:19:11",
"upload_time_iso_8601": "2025-08-30T15:19:11.932272Z",
"url": "https://files.pythonhosted.org/packages/0d/33/cdb91b15de08f1a44ae1d4d0f31afca8e555accb84cc03f23e51057f2b10/nvenn2-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a0f8f459661b6a795d995cd51bde8e48cf108731080f2dd7fb2583bc481be4ab",
"md5": "58c360c2ab8d9fd95c4873c4fd7e5502",
"sha256": "b093c82c93efa35c6f8d0606bc762724f6930941297a76132e67451888a03e73"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "58c360c2ab8d9fd95c4873c4fd7e5502",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 197455,
"upload_time": "2025-08-30T15:19:13",
"upload_time_iso_8601": "2025-08-30T15:19:13.646643Z",
"url": "https://files.pythonhosted.org/packages/a0/f8/f459661b6a795d995cd51bde8e48cf108731080f2dd7fb2583bc481be4ab/nvenn2-2.0.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4df1082f2cc319fdef840ba1ba5a02a3672ecfa1011cdce8305542b39dc8c1db",
"md5": "4b7b9a0d61edce71b098c02d1bc41331",
"sha256": "88f8bf00733134591e7f26d42035c459375fb00ab30e118e0d2a8bc91ab3312b"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "4b7b9a0d61edce71b098c02d1bc41331",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 191549,
"upload_time": "2025-08-30T15:19:15",
"upload_time_iso_8601": "2025-08-30T15:19:15.110360Z",
"url": "https://files.pythonhosted.org/packages/4d/f1/082f2cc319fdef840ba1ba5a02a3672ecfa1011cdce8305542b39dc8c1db/nvenn2-2.0.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "11f7fc38d322e595e2c5ba186a7ff83b9700459238545ffd425a93f2aaeaa7fc",
"md5": "8fe2584770f2d9c889c7a0f6a4f46cb8",
"sha256": "6911031f964cf8c845b12481e19746ba65a35da2b79f874ecd72c9233375caae"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "8fe2584770f2d9c889c7a0f6a4f46cb8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 214131,
"upload_time": "2025-08-30T15:19:16",
"upload_time_iso_8601": "2025-08-30T15:19:16.650663Z",
"url": "https://files.pythonhosted.org/packages/11/f7/fc38d322e595e2c5ba186a7ff83b9700459238545ffd425a93f2aaeaa7fc/nvenn2-2.0.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1e696e44de0900c9fef5a4fa7b62aca7f84c356c7ea61a795d57d231fecf1e90",
"md5": "64f095f25968cb8e10c2e64a11b55794",
"sha256": "5613a4726cd887610918f8cfcacafc61e286bc10ed773b2ce711355276f916b8"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "64f095f25968cb8e10c2e64a11b55794",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1174607,
"upload_time": "2025-08-30T15:19:18",
"upload_time_iso_8601": "2025-08-30T15:19:18.121080Z",
"url": "https://files.pythonhosted.org/packages/1e/69/6e44de0900c9fef5a4fa7b62aca7f84c356c7ea61a795d57d231fecf1e90/nvenn2-2.0.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d1ef89306ddffabba9913ef695e356a17600dbdbc0e01a62c703389a61746e75",
"md5": "13fb05de52be1088bc93efc1eb7553bd",
"sha256": "100abbd94677654a35b7baf16e35e3b62e468d92bd4d57a66240210f1cd6d19d"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "13fb05de52be1088bc93efc1eb7553bd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1246849,
"upload_time": "2025-08-30T15:19:19",
"upload_time_iso_8601": "2025-08-30T15:19:19.804524Z",
"url": "https://files.pythonhosted.org/packages/d1/ef/89306ddffabba9913ef695e356a17600dbdbc0e01a62c703389a61746e75/nvenn2-2.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c6baebbb37ba56ae153a860624c3676962dd41350ecdc533ffa8a7c9894d0dc9",
"md5": "a4bf95247865be8b3c81884a4b4c97cf",
"sha256": "f2b32880619f8ee0924bf87776fa83bfbd0a8d46e759486721dfc5fe8640ccb7"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "a4bf95247865be8b3c81884a4b4c97cf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 176349,
"upload_time": "2025-08-30T15:19:21",
"upload_time_iso_8601": "2025-08-30T15:19:21.374757Z",
"url": "https://files.pythonhosted.org/packages/c6/ba/ebbb37ba56ae153a860624c3676962dd41350ecdc533ffa8a7c9894d0dc9/nvenn2-2.0.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a479535f43861171f4546501224d9002c39003e59cb534a16de96be3a339477",
"md5": "defa4e0e18c7b128bf7e18e7c78589b1",
"sha256": "4b2696f7e2c78c3888cf8b09d2fc4236aa076cc9a646041d1d3fbfab6fce6a72"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "defa4e0e18c7b128bf7e18e7c78589b1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 185185,
"upload_time": "2025-08-30T15:19:22",
"upload_time_iso_8601": "2025-08-30T15:19:22.824186Z",
"url": "https://files.pythonhosted.org/packages/3a/47/9535f43861171f4546501224d9002c39003e59cb534a16de96be3a339477/nvenn2-2.0.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "551b2a0c17c81d76b455165167d8d7b3868fa6ed961aaf65d8e1e9a217f59371",
"md5": "51fd41ff451c9b0c4c9e0bf517d5fac9",
"sha256": "c56491d715001ba0332d77c6731d325629ebe936a5e623374846d5db492602f9"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp310-cp310-win_arm64.whl",
"has_sig": false,
"md5_digest": "51fd41ff451c9b0c4c9e0bf517d5fac9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 179761,
"upload_time": "2025-08-30T15:19:24",
"upload_time_iso_8601": "2025-08-30T15:19:24.286775Z",
"url": "https://files.pythonhosted.org/packages/55/1b/2a0c17c81d76b455165167d8d7b3868fa6ed961aaf65d8e1e9a217f59371/nvenn2-2.0.1-cp310-cp310-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe2bc43a934d414c17354062dfe42feddb9888a5f33163a708c56675958c4dc3",
"md5": "3ca2db16ec56c68932969dd00828f64f",
"sha256": "867dd4b3ce490688e34c491005ccbb82e37dbdd1b75af8b6508ca7e84b87596b"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "3ca2db16ec56c68932969dd00828f64f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 212312,
"upload_time": "2025-08-30T15:19:25",
"upload_time_iso_8601": "2025-08-30T15:19:25.679911Z",
"url": "https://files.pythonhosted.org/packages/fe/2b/c43a934d414c17354062dfe42feddb9888a5f33163a708c56675958c4dc3/nvenn2-2.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "030a0499835954d95813937a56996674aa116f2fe8b52827f54e1517d56fb332",
"md5": "4985e53618dc4633c057e1f566dad23a",
"sha256": "ee20b25b766e98e34b576dcfb33c4ea68f606b8ddc1a07cdcec262364a3b4211"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4985e53618dc4633c057e1f566dad23a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 198915,
"upload_time": "2025-08-30T15:19:26",
"upload_time_iso_8601": "2025-08-30T15:19:26.870558Z",
"url": "https://files.pythonhosted.org/packages/03/0a/0499835954d95813937a56996674aa116f2fe8b52827f54e1517d56fb332/nvenn2-2.0.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "502e8d4ba02d2c40a0e7af65bcfdbd32f5b31b09b5e7b790c54e5399abaeeb66",
"md5": "12318c4c9c59a442d574a5676c5b2f35",
"sha256": "f59d012860c381e5daa8b071e1fbc148386de929b3c37d4569167b7c25dc9f6b"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "12318c4c9c59a442d574a5676c5b2f35",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 193054,
"upload_time": "2025-08-30T15:19:28",
"upload_time_iso_8601": "2025-08-30T15:19:28.021441Z",
"url": "https://files.pythonhosted.org/packages/50/2e/8d4ba02d2c40a0e7af65bcfdbd32f5b31b09b5e7b790c54e5399abaeeb66/nvenn2-2.0.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e76e878a5102e28194a29e1334e48f75fddcaf5b326188cf496e7b8f44856819",
"md5": "9731b9f5db944a0bb93beccfa2bc4e1e",
"sha256": "3b4164b08a98448a63368f784ef93e562e7b3ba994f21ff1fb2e283775bc9bd3"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "9731b9f5db944a0bb93beccfa2bc4e1e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 215322,
"upload_time": "2025-08-30T15:19:29",
"upload_time_iso_8601": "2025-08-30T15:19:29.442294Z",
"url": "https://files.pythonhosted.org/packages/e7/6e/878a5102e28194a29e1334e48f75fddcaf5b326188cf496e7b8f44856819/nvenn2-2.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "417017e7948df9713f8e16bd7ce026dc14cf2b6d24033a69168b7bcabc25cdd7",
"md5": "000ff1cd988057a54b5e0801f8e15281",
"sha256": "10b19af429072771e30e9753eee787385986a19b63ae0fd61963dacd73eda1e3"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "000ff1cd988057a54b5e0801f8e15281",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1175861,
"upload_time": "2025-08-30T15:19:30",
"upload_time_iso_8601": "2025-08-30T15:19:30.923656Z",
"url": "https://files.pythonhosted.org/packages/41/70/17e7948df9713f8e16bd7ce026dc14cf2b6d24033a69168b7bcabc25cdd7/nvenn2-2.0.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "844aabb655cd7d0a1c90c51ef264c71807e504da289882cc87485adfe0f44524",
"md5": "eabcf0570f4770c3c1a8d47d18a6cbf2",
"sha256": "a3ca7a14ad84f22cf272b3bdbbbaeef444e5dd3ce9e7b1c889d8f47a2b01e6a5"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "eabcf0570f4770c3c1a8d47d18a6cbf2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1248093,
"upload_time": "2025-08-30T15:19:32",
"upload_time_iso_8601": "2025-08-30T15:19:32.693755Z",
"url": "https://files.pythonhosted.org/packages/84/4a/abb655cd7d0a1c90c51ef264c71807e504da289882cc87485adfe0f44524/nvenn2-2.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8f8034fbdbdd3027d7d7b00e13232185bcaa780cefca68c6a9f422311b88a013",
"md5": "b74433ff9249df7ec63284b4952434d2",
"sha256": "6d150938ff8720bb0eb4e88fa27edb18a0895b86f2952ec44112dfceeb5a1b56"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "b74433ff9249df7ec63284b4952434d2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 177091,
"upload_time": "2025-08-30T15:19:33",
"upload_time_iso_8601": "2025-08-30T15:19:33.886696Z",
"url": "https://files.pythonhosted.org/packages/8f/80/34fbdbdd3027d7d7b00e13232185bcaa780cefca68c6a9f422311b88a013/nvenn2-2.0.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "161a3d954eb656cedd8d41f7da88eef5c391d185044194351e892139da9aba6d",
"md5": "dc1b7d53ca1cdee155181f3c747ff755",
"sha256": "d59119f3e8a8e668355784baf12b285cccce739471dd87883beee63231b8e18b"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "dc1b7d53ca1cdee155181f3c747ff755",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 185717,
"upload_time": "2025-08-30T15:19:35",
"upload_time_iso_8601": "2025-08-30T15:19:35.299764Z",
"url": "https://files.pythonhosted.org/packages/16/1a/3d954eb656cedd8d41f7da88eef5c391d185044194351e892139da9aba6d/nvenn2-2.0.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b5158ffefb89d571a3bc4c3fe3c3d54e33720ab7481702b14af9345b316daf8",
"md5": "d1a1781685c11c3da8e3835ffcb04b09",
"sha256": "4dc80aa33c6d1c274b13e3d159db01441f8a2a475f777eceb4318bc6ca2394ab"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "d1a1781685c11c3da8e3835ffcb04b09",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 180574,
"upload_time": "2025-08-30T15:19:36",
"upload_time_iso_8601": "2025-08-30T15:19:36.407400Z",
"url": "https://files.pythonhosted.org/packages/3b/51/58ffefb89d571a3bc4c3fe3c3d54e33720ab7481702b14af9345b316daf8/nvenn2-2.0.1-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "12a820bdf4ffe440eaddd7f736eab06a853db36fa866eb4f4f9196aee44e3027",
"md5": "d817fec3db8330b948cbe94ab7870902",
"sha256": "1ecb7159a66ffabbfc222be56498d97bba7e1f3cae22d23d86a996d4a5609a11"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "d817fec3db8330b948cbe94ab7870902",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 213052,
"upload_time": "2025-08-30T15:19:37",
"upload_time_iso_8601": "2025-08-30T15:19:37.634400Z",
"url": "https://files.pythonhosted.org/packages/12/a8/20bdf4ffe440eaddd7f736eab06a853db36fa866eb4f4f9196aee44e3027/nvenn2-2.0.1-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23ed5da201f9fad0cbb5acb049dba04788ba2f3d47b41d4448c445ab48546e22",
"md5": "1b2c2c71a8f8449d677ef90fc510ceda",
"sha256": "57fefe5fa34743fa8135b6e20d57b836e00b0d06b9ddd041487a800461f672cc"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1b2c2c71a8f8449d677ef90fc510ceda",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 199782,
"upload_time": "2025-08-30T15:19:38",
"upload_time_iso_8601": "2025-08-30T15:19:38.741600Z",
"url": "https://files.pythonhosted.org/packages/23/ed/5da201f9fad0cbb5acb049dba04788ba2f3d47b41d4448c445ab48546e22/nvenn2-2.0.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5fd49c04fa46d3c94023ae8e1891b9f1c5c9a1d05206d20a5639d3454d1fcc0d",
"md5": "920c198cdf341170892fb0ac5ad7448b",
"sha256": "bc0e1ec0249c32a8606eff541e6ee6881686d0651a5b6ebe3463873a21494f9f"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "920c198cdf341170892fb0ac5ad7448b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 194014,
"upload_time": "2025-08-30T15:19:39",
"upload_time_iso_8601": "2025-08-30T15:19:39.860819Z",
"url": "https://files.pythonhosted.org/packages/5f/d4/9c04fa46d3c94023ae8e1891b9f1c5c9a1d05206d20a5639d3454d1fcc0d/nvenn2-2.0.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1ca9ec33bf2a546410f3810b7b86f36ccfc0d3ac4f4e498f16a96d7a3000ebf4",
"md5": "fcb7ee5b2b51a5c52625dbc0c14bc5ab",
"sha256": "3a7041ff9a663494105b09c217dc3bacc342244a21b86a731d32db3fba8ddb89"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "fcb7ee5b2b51a5c52625dbc0c14bc5ab",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 216955,
"upload_time": "2025-08-30T15:19:41",
"upload_time_iso_8601": "2025-08-30T15:19:41.014103Z",
"url": "https://files.pythonhosted.org/packages/1c/a9/ec33bf2a546410f3810b7b86f36ccfc0d3ac4f4e498f16a96d7a3000ebf4/nvenn2-2.0.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "114eae74c9df05cd7fc081173dcbf6a667e1d093538d3ebbe796306feb925278",
"md5": "321625e4ab5bfcc3bb7172691e0b56f2",
"sha256": "d6cfb85dff66acd2a152bfd0317c31267d1c4963963f02f325cf903f6b20590e"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "321625e4ab5bfcc3bb7172691e0b56f2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1177180,
"upload_time": "2025-08-30T15:19:42",
"upload_time_iso_8601": "2025-08-30T15:19:42.544553Z",
"url": "https://files.pythonhosted.org/packages/11/4e/ae74c9df05cd7fc081173dcbf6a667e1d093538d3ebbe796306feb925278/nvenn2-2.0.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec667c6475c656f303ee95c9105ad59604d0864eaeec72b5633f3236c94898f0",
"md5": "9b0e7a7212422a5f4e3f023bf19452cd",
"sha256": "09ae892d7c2e87644a8972a518d0cf3854f524bfb27d6749dcd1edb632bce96f"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9b0e7a7212422a5f4e3f023bf19452cd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1249974,
"upload_time": "2025-08-30T15:19:43",
"upload_time_iso_8601": "2025-08-30T15:19:43.855651Z",
"url": "https://files.pythonhosted.org/packages/ec/66/7c6475c656f303ee95c9105ad59604d0864eaeec72b5633f3236c94898f0/nvenn2-2.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6a79a794e17512f5aceecb0637a1456a266e453b4af1e121edd8a03a2d50e1bd",
"md5": "de924e482d0fa67c6cfa25a31dc2495d",
"sha256": "8b1f6c48c7ff9a8f2226420039825e071d7f63f96a466d3aa9d3ded035996de4"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "de924e482d0fa67c6cfa25a31dc2495d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 177697,
"upload_time": "2025-08-30T15:19:45",
"upload_time_iso_8601": "2025-08-30T15:19:45.204762Z",
"url": "https://files.pythonhosted.org/packages/6a/79/a794e17512f5aceecb0637a1456a266e453b4af1e121edd8a03a2d50e1bd/nvenn2-2.0.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b88c2aef8bed1cc420ec938f48084dee2c64a8645819d71e5a6c3bf07f86b80f",
"md5": "9a1ebf62af6f74d0ddd367880592bb81",
"sha256": "fc251b6d0467e168b7832fd1963cd122096329a7eef597a5496c5d56f56581a7"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "9a1ebf62af6f74d0ddd367880592bb81",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 186583,
"upload_time": "2025-08-30T15:19:46",
"upload_time_iso_8601": "2025-08-30T15:19:46.355841Z",
"url": "https://files.pythonhosted.org/packages/b8/8c/2aef8bed1cc420ec938f48084dee2c64a8645819d71e5a6c3bf07f86b80f/nvenn2-2.0.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fde16ee1eafb22ba22c388ea0c5a60efc1c5ca083bf330372a89f4c7c12026a8",
"md5": "4d9b16073730c4139baa4b2c44fc6e58",
"sha256": "168af81889ea343b9e1d0afcd9da3d3f6bbdd34c8633e90930a29241ff0eb8d1"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "4d9b16073730c4139baa4b2c44fc6e58",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 178236,
"upload_time": "2025-08-30T15:19:47",
"upload_time_iso_8601": "2025-08-30T15:19:47.881224Z",
"url": "https://files.pythonhosted.org/packages/fd/e1/6ee1eafb22ba22c388ea0c5a60efc1c5ca083bf330372a89f4c7c12026a8/nvenn2-2.0.1-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eb241dcc553970656ab3a85cec5cf0aa90f8c36fe7e614a909b8d9cde3e42952",
"md5": "740a5366f07eb61f7ee0dacf043d7074",
"sha256": "d1bf29326091ff36a92c32a157e9a078e1d1e3c83558ce5d0da024719558ab88"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "740a5366f07eb61f7ee0dacf043d7074",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 213088,
"upload_time": "2025-08-30T15:19:49",
"upload_time_iso_8601": "2025-08-30T15:19:49.063620Z",
"url": "https://files.pythonhosted.org/packages/eb/24/1dcc553970656ab3a85cec5cf0aa90f8c36fe7e614a909b8d9cde3e42952/nvenn2-2.0.1-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b8e19c7925acbf61239da098444bcb0d0f8ea34818f48ccf35f536afaacd1374",
"md5": "b0dd4188a4ec2249a02073cd2d833960",
"sha256": "2df1e11e83c7c3e2826deb0f73253a69cd1d8f23f5746c839d8087402eb1152e"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b0dd4188a4ec2249a02073cd2d833960",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 199794,
"upload_time": "2025-08-30T15:19:50",
"upload_time_iso_8601": "2025-08-30T15:19:50.186770Z",
"url": "https://files.pythonhosted.org/packages/b8/e1/9c7925acbf61239da098444bcb0d0f8ea34818f48ccf35f536afaacd1374/nvenn2-2.0.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eceaa2b97bc14e1330b940b0d7f22738a78633aa3920837ed749d07954a5a01b",
"md5": "a25cc077b458455459245dfda36b471c",
"sha256": "d72af7065de182f5680314ecbe6881158fa98f74c5b461652d94db487364efcb"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "a25cc077b458455459245dfda36b471c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 194144,
"upload_time": "2025-08-30T15:19:51",
"upload_time_iso_8601": "2025-08-30T15:19:51.625056Z",
"url": "https://files.pythonhosted.org/packages/ec/ea/a2b97bc14e1330b940b0d7f22738a78633aa3920837ed749d07954a5a01b/nvenn2-2.0.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bd7d8a02b71e42e600b03ce95e15d7bdf8481467cebd30a486dc1166329082da",
"md5": "1a6ca3802db6ccfb3dec2dbbe695e9bc",
"sha256": "c0cc92eea7d791a3ed651947783cb891e37d8e66d2b007d3018cbbf744e11834"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "1a6ca3802db6ccfb3dec2dbbe695e9bc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 216965,
"upload_time": "2025-08-30T15:19:52",
"upload_time_iso_8601": "2025-08-30T15:19:52.693311Z",
"url": "https://files.pythonhosted.org/packages/bd/7d/8a02b71e42e600b03ce95e15d7bdf8481467cebd30a486dc1166329082da/nvenn2-2.0.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0b759a7ad7b780cb244656f9d769b8e35faff7ba7123b79bebd1e0724b405e3a",
"md5": "54a91f5ec86ffc5db41ede8e0f7bc4f3",
"sha256": "489cd30d23cd03c1fc282742efbe0adb1b138b6242a342f29c4937a39029348c"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "54a91f5ec86ffc5db41ede8e0f7bc4f3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1177042,
"upload_time": "2025-08-30T15:19:53",
"upload_time_iso_8601": "2025-08-30T15:19:53.875570Z",
"url": "https://files.pythonhosted.org/packages/0b/75/9a7ad7b780cb244656f9d769b8e35faff7ba7123b79bebd1e0724b405e3a/nvenn2-2.0.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bd24db820207b5b995bf7b79914a0107a2f5648bf5379214470f714b99a634b9",
"md5": "22a3fab7234bf0b2dbed63e4ceb85747",
"sha256": "d1c40e74f26b4f81b55cd7619173f8ab876beca76a442cee616bd3b017d3facc"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "22a3fab7234bf0b2dbed63e4ceb85747",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1250071,
"upload_time": "2025-08-30T15:19:55",
"upload_time_iso_8601": "2025-08-30T15:19:55.166232Z",
"url": "https://files.pythonhosted.org/packages/bd/24/db820207b5b995bf7b79914a0107a2f5648bf5379214470f714b99a634b9/nvenn2-2.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5293f51133265cc27114525d5909d8b50f73f932206c84858f362d9a67e2e730",
"md5": "ab220446ac34e74b353d7336d84b292b",
"sha256": "4735c642005ba9ddc40b95301bfdc247212aab6a059886f62fa9937d22af675c"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "ab220446ac34e74b353d7336d84b292b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 177650,
"upload_time": "2025-08-30T15:19:56",
"upload_time_iso_8601": "2025-08-30T15:19:56.484251Z",
"url": "https://files.pythonhosted.org/packages/52/93/f51133265cc27114525d5909d8b50f73f932206c84858f362d9a67e2e730/nvenn2-2.0.1-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6deb90804998f205b52af12525613aa50c3496f7c41707c8eeccca7b83db4769",
"md5": "ed0f4b71a7e6acb0d9176d4a11bebc6d",
"sha256": "212253108071998ac1a408317907012c2834f8e68b59642373100f085d6c638b"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "ed0f4b71a7e6acb0d9176d4a11bebc6d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 186656,
"upload_time": "2025-08-30T15:19:57",
"upload_time_iso_8601": "2025-08-30T15:19:57.681843Z",
"url": "https://files.pythonhosted.org/packages/6d/eb/90804998f205b52af12525613aa50c3496f7c41707c8eeccca7b83db4769/nvenn2-2.0.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "560658839f7d66de255254b8dac7a4990fe676dea99a31b190a2fb4d7eb390c4",
"md5": "8c78e010eb553976517471a43791138a",
"sha256": "abb628fe0ce0ec847be1998119724a6c0181533374807d571d89038fa5e12e19"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "8c78e010eb553976517471a43791138a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 178200,
"upload_time": "2025-08-30T15:19:58",
"upload_time_iso_8601": "2025-08-30T15:19:58.769482Z",
"url": "https://files.pythonhosted.org/packages/56/06/58839f7d66de255254b8dac7a4990fe676dea99a31b190a2fb4d7eb390c4/nvenn2-2.0.1-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c5c33d5a146cad63894df894b1c013dfb360a7d77eaec1371cd3c6fc3a1e153e",
"md5": "68c31853fa9fa4d4e80120d24e2c287b",
"sha256": "7e217980a786f518eaa94fb1103ab20361214cb03d4a63e59548c322a43d27a9"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "68c31853fa9fa4d4e80120d24e2c287b",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 213254,
"upload_time": "2025-08-30T15:19:59",
"upload_time_iso_8601": "2025-08-30T15:19:59.877721Z",
"url": "https://files.pythonhosted.org/packages/c5/c3/3d5a146cad63894df894b1c013dfb360a7d77eaec1371cd3c6fc3a1e153e/nvenn2-2.0.1-cp314-cp314-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "09cf4028dd68b2a229f413ae5e95e1bc1137a764088afb8c7ab07cd371d351e4",
"md5": "8daaa2d92bfc93c0863c504644f067e8",
"sha256": "ff110721ed26e065489ed63a3e34bebef84cd76510a6384be6423f70ecef5f73"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8daaa2d92bfc93c0863c504644f067e8",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 200049,
"upload_time": "2025-08-30T15:20:01",
"upload_time_iso_8601": "2025-08-30T15:20:01.058857Z",
"url": "https://files.pythonhosted.org/packages/09/cf/4028dd68b2a229f413ae5e95e1bc1137a764088afb8c7ab07cd371d351e4/nvenn2-2.0.1-cp314-cp314-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d925bf996ec42a2d23d04f2f6c6113dece6fcd1f851a33541785b1820b11ff54",
"md5": "03ddef5142b08a8c6f54da9ee36601b3",
"sha256": "f170d11e0401b240ae3bc41ac61d7aca124dcc8805b8d2c2d17134e50d32069f"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "03ddef5142b08a8c6f54da9ee36601b3",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 194392,
"upload_time": "2025-08-30T15:20:02",
"upload_time_iso_8601": "2025-08-30T15:20:02.313875Z",
"url": "https://files.pythonhosted.org/packages/d9/25/bf996ec42a2d23d04f2f6c6113dece6fcd1f851a33541785b1820b11ff54/nvenn2-2.0.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "428798bab2048e9f6a996cc0864f90a12ab33cb4a6f107ca7df746eb0c209cfd",
"md5": "fdf422eaf1f90b6b3543f3449967f5f4",
"sha256": "242d2564e5ab50156e42ba01e76855209191571c6693c107be6fa6dfd12aaffb"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "fdf422eaf1f90b6b3543f3449967f5f4",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 217024,
"upload_time": "2025-08-30T15:20:03",
"upload_time_iso_8601": "2025-08-30T15:20:03.449393Z",
"url": "https://files.pythonhosted.org/packages/42/87/98bab2048e9f6a996cc0864f90a12ab33cb4a6f107ca7df746eb0c209cfd/nvenn2-2.0.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c99cc78abf88fe1b42d6d7d41aa78d2ee77e6bc592acf2c2d75c52801cd9f996",
"md5": "666780a345893d52dcfa96192e5623d3",
"sha256": "b19f08db6422de5ba6e38c28bb34196ab25ebd39bac0dbd47b0a58409355bdb7"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "666780a345893d52dcfa96192e5623d3",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 1177535,
"upload_time": "2025-08-30T15:20:05",
"upload_time_iso_8601": "2025-08-30T15:20:05.041925Z",
"url": "https://files.pythonhosted.org/packages/c9/9c/c78abf88fe1b42d6d7d41aa78d2ee77e6bc592acf2c2d75c52801cd9f996/nvenn2-2.0.1-cp314-cp314-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c8b3c4a217fdd1d1f39335daba2f353e20e078bf910b6dbc4181d6a24e3234a",
"md5": "61d221de5937740e82f812c4153ff07d",
"sha256": "13169d3cc07d053803d0658a3eb5eb8f14ebcfd709c14d5339cc6b1625d659b1"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "61d221de5937740e82f812c4153ff07d",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 1250128,
"upload_time": "2025-08-30T15:20:06",
"upload_time_iso_8601": "2025-08-30T15:20:06.412899Z",
"url": "https://files.pythonhosted.org/packages/1c/8b/3c4a217fdd1d1f39335daba2f353e20e078bf910b6dbc4181d6a24e3234a/nvenn2-2.0.1-cp314-cp314-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b1b41d6bf43a9019c9031048a41ade218002b8984ac3ca67ec3d1af44de9f6b",
"md5": "d0ab735f26f6671bd20d320d0b2e6e23",
"sha256": "4136705b5caa01d9ef216e56351533208d0c5ccb8563a0039fe9887d2099749b"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314t-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "d0ab735f26f6671bd20d320d0b2e6e23",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 218380,
"upload_time": "2025-08-30T15:20:11",
"upload_time_iso_8601": "2025-08-30T15:20:11.032574Z",
"url": "https://files.pythonhosted.org/packages/4b/1b/41d6bf43a9019c9031048a41ade218002b8984ac3ca67ec3d1af44de9f6b/nvenn2-2.0.1-cp314-cp314t-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f51460afcc8cf8ac51c2c9f0e3a6ac81bd0e7881714ba39f1e1c6c30ab3d5f21",
"md5": "6ad5406652b06356f246570a58783296",
"sha256": "d8a85bb7509612192e83d438dc5b1fc234b3b127a01d06ec3f48fd6e73f3e39b"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6ad5406652b06356f246570a58783296",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 206249,
"upload_time": "2025-08-30T15:20:13",
"upload_time_iso_8601": "2025-08-30T15:20:13.072121Z",
"url": "https://files.pythonhosted.org/packages/f5/14/60afcc8cf8ac51c2c9f0e3a6ac81bd0e7881714ba39f1e1c6c30ab3d5f21/nvenn2-2.0.1-cp314-cp314t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e85f63a7410833d16c1591f5fad8be3ddbe064679d75ce4b64f2f193ba778481",
"md5": "e806e2acc518463947cb22356645e406",
"sha256": "5d28d5ea72a182445b052e190a950f2e7407f0eb088a986f0a1817011aef64b8"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "e806e2acc518463947cb22356645e406",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 195289,
"upload_time": "2025-08-30T15:20:14",
"upload_time_iso_8601": "2025-08-30T15:20:14.187693Z",
"url": "https://files.pythonhosted.org/packages/e8/5f/63a7410833d16c1591f5fad8be3ddbe064679d75ce4b64f2f193ba778481/nvenn2-2.0.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "decd7c83e6dbfcda0439d219115262e4828707ac07172b500fd9fdd45a1aa39e",
"md5": "0648c2722ee7c87f4d720f45e36208a3",
"sha256": "7379a9505fd2fb108b12530603d2bd34b8b5c2e2384b8bbe103f1f718b290b61"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "0648c2722ee7c87f4d720f45e36208a3",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 219650,
"upload_time": "2025-08-30T15:20:15",
"upload_time_iso_8601": "2025-08-30T15:20:15.305415Z",
"url": "https://files.pythonhosted.org/packages/de/cd/7c83e6dbfcda0439d219115262e4828707ac07172b500fd9fdd45a1aa39e/nvenn2-2.0.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "37f1a81e45718e33c8fb59251e9707eabccabd4d715467251e29f88da6a6c52b",
"md5": "f23d56693c36b56ff9fe6c1afebd1b94",
"sha256": "98d6b1877298af1ac59602b038671b4c90905d0e045f7a30b92446d298558d78"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f23d56693c36b56ff9fe6c1afebd1b94",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 1178682,
"upload_time": "2025-08-30T15:20:16",
"upload_time_iso_8601": "2025-08-30T15:20:16.480572Z",
"url": "https://files.pythonhosted.org/packages/37/f1/a81e45718e33c8fb59251e9707eabccabd4d715467251e29f88da6a6c52b/nvenn2-2.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0034ce88b7f908ade7291dfc5dcb7b5c7c37cb179b4ba7984bd23fc3ada78b76",
"md5": "3cc943c9c70c03aca01fea16fffced2b",
"sha256": "2416f332df9004c7e6900be695aa695e25258da0fa220026d530d073135c5578"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3cc943c9c70c03aca01fea16fffced2b",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 1252822,
"upload_time": "2025-08-30T15:20:17",
"upload_time_iso_8601": "2025-08-30T15:20:17.972706Z",
"url": "https://files.pythonhosted.org/packages/00/34/ce88b7f908ade7291dfc5dcb7b5c7c37cb179b4ba7984bd23fc3ada78b76/nvenn2-2.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "15e9ee85f932fb09e9b2450432707723c201b80ea020227a8ca212fb45702f4f",
"md5": "57b3dc30d11213db3a2680ad12b4557c",
"sha256": "334524b2e1319ed2a96d778e9f050a6651c3cf679ed69308f767403129a09eb6"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314t-win32.whl",
"has_sig": false,
"md5_digest": "57b3dc30d11213db3a2680ad12b4557c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 189129,
"upload_time": "2025-08-30T15:20:19",
"upload_time_iso_8601": "2025-08-30T15:20:19.197719Z",
"url": "https://files.pythonhosted.org/packages/15/e9/ee85f932fb09e9b2450432707723c201b80ea020227a8ca212fb45702f4f/nvenn2-2.0.1-cp314-cp314t-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "98c0f9fbd2d49d281573e449a14138f3b1f76bab9dd017e59953fe68df9ec13e",
"md5": "769aedf570cb12d880ab8ee755b2d2ad",
"sha256": "8c57c6c8c094fd24abfab567f0ecbded870a5ba6036256d669be0a7951768c84"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314t-win_amd64.whl",
"has_sig": false,
"md5_digest": "769aedf570cb12d880ab8ee755b2d2ad",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 201274,
"upload_time": "2025-08-30T15:20:20",
"upload_time_iso_8601": "2025-08-30T15:20:20.459425Z",
"url": "https://files.pythonhosted.org/packages/98/c0/f9fbd2d49d281573e449a14138f3b1f76bab9dd017e59953fe68df9ec13e/nvenn2-2.0.1-cp314-cp314t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8c61cea666af038b3c49429fa216b16f33ebc0eaef98e6d38ac5521bbd5acd6e",
"md5": "74f05b14c7888390f9474d8a8cb6b456",
"sha256": "11a1a6c942977237522379b926424bb2e71ef0ef2498f0866810a5fec1c61b61"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314t-win_arm64.whl",
"has_sig": false,
"md5_digest": "74f05b14c7888390f9474d8a8cb6b456",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 189881,
"upload_time": "2025-08-30T15:20:21",
"upload_time_iso_8601": "2025-08-30T15:20:21.568829Z",
"url": "https://files.pythonhosted.org/packages/8c/61/cea666af038b3c49429fa216b16f33ebc0eaef98e6d38ac5521bbd5acd6e/nvenn2-2.0.1-cp314-cp314t-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "92f9d3249951fec69f5797628cf476dad3f712321304e3d9f97da2bacc23691e",
"md5": "1d55fca1832ea99d7a25191656a3911f",
"sha256": "513959417a0490f4ed9523391cde4a4931ff48861c54cda259a89be00a4c196c"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314-win32.whl",
"has_sig": false,
"md5_digest": "1d55fca1832ea99d7a25191656a3911f",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 182251,
"upload_time": "2025-08-30T15:20:07",
"upload_time_iso_8601": "2025-08-30T15:20:07.667283Z",
"url": "https://files.pythonhosted.org/packages/92/f9/d3249951fec69f5797628cf476dad3f712321304e3d9f97da2bacc23691e/nvenn2-2.0.1-cp314-cp314-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "902a79c6c48c8a5d661cbd680fd6a663962300886b2fb7f97a7e30d3559001de",
"md5": "12393bf270584f5cc9b0c67e0356a334",
"sha256": "b87de93dacf5efc962588c78fd5d851dc44fd3d2bc0760dbec835650f31afa53"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "12393bf270584f5cc9b0c67e0356a334",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 192162,
"upload_time": "2025-08-30T15:20:08",
"upload_time_iso_8601": "2025-08-30T15:20:08.735473Z",
"url": "https://files.pythonhosted.org/packages/90/2a/79c6c48c8a5d661cbd680fd6a663962300886b2fb7f97a7e30d3559001de/nvenn2-2.0.1-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3dc318d044450772a8c90bdc7a0e59dbb9210496c6702ad5a49ab0bf3e070efc",
"md5": "34313d13ceb6b128b450e58491ddcf93",
"sha256": "22fc05581e2d44a4c774473767dcecb34518b01a09c01fdd1e097e0d082a644d"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp314-cp314-win_arm64.whl",
"has_sig": false,
"md5_digest": "34313d13ceb6b128b450e58491ddcf93",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 184460,
"upload_time": "2025-08-30T15:20:09",
"upload_time_iso_8601": "2025-08-30T15:20:09.836042Z",
"url": "https://files.pythonhosted.org/packages/3d/c3/18d044450772a8c90bdc7a0e59dbb9210496c6702ad5a49ab0bf3e070efc/nvenn2-2.0.1-cp314-cp314-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "754274d19742c5be759d90eb0bb687cf4e48e5830dbb09960dcead4ecd4933aa",
"md5": "7055a902a8528df2fd224415534f94e1",
"sha256": "72e2760f3e5ace3d45c11be5e5121d345c3b4a09d6b5df249c2793eed504c3b2"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7055a902a8528df2fd224415534f94e1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 210738,
"upload_time": "2025-08-30T15:20:22",
"upload_time_iso_8601": "2025-08-30T15:20:22.731025Z",
"url": "https://files.pythonhosted.org/packages/75/42/74d19742c5be759d90eb0bb687cf4e48e5830dbb09960dcead4ecd4933aa/nvenn2-2.0.1-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aba801e61d6441f807aa38f3674a0bfcf2bcc0742749a0063cf4d6485b8a55df",
"md5": "8bb7b5daa4ee81397bfef0df2ee5c5fd",
"sha256": "3e191dad82bdb4325b6e4e6f18305b1203f9f26318f0df26a4af3083ed3b6da3"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8bb7b5daa4ee81397bfef0df2ee5c5fd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 197354,
"upload_time": "2025-08-30T15:20:23",
"upload_time_iso_8601": "2025-08-30T15:20:23.848064Z",
"url": "https://files.pythonhosted.org/packages/ab/a8/01e61d6441f807aa38f3674a0bfcf2bcc0742749a0063cf4d6485b8a55df/nvenn2-2.0.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fec16540285d5507e6ac3e9d4e390e3330fe970f5bfad10fe47edd0bbe5b16ab",
"md5": "4b5ab9258f78fa93a34690eb432277e6",
"sha256": "443d69a5bc8a702a30ac99810258e1c0da7769c24a5fc71b1df35bc35d16caab"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "4b5ab9258f78fa93a34690eb432277e6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 191431,
"upload_time": "2025-08-30T15:20:24",
"upload_time_iso_8601": "2025-08-30T15:20:24.987754Z",
"url": "https://files.pythonhosted.org/packages/fe/c1/6540285d5507e6ac3e9d4e390e3330fe970f5bfad10fe47edd0bbe5b16ab/nvenn2-2.0.1-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "57954335404f33964348f0339e9977ce372ad3a568159202e9a5f541ec79e17e",
"md5": "8b5d51758009aaaa8d1a5f34d8602ba5",
"sha256": "3ad2720d58606ca8926a5a9a4d0d3af5ff5533c1113e42d4b4fc6eca841acb61"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "8b5d51758009aaaa8d1a5f34d8602ba5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 213531,
"upload_time": "2025-08-30T15:20:26",
"upload_time_iso_8601": "2025-08-30T15:20:26.122433Z",
"url": "https://files.pythonhosted.org/packages/57/95/4335404f33964348f0339e9977ce372ad3a568159202e9a5f541ec79e17e/nvenn2-2.0.1-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9979577d6f087ac9853ef3fde586e5e8bbdebee61e6fc3b661c2fd395370532",
"md5": "9b1bf608544c085f448fb9a9fe301869",
"sha256": "4f1c45ab43e2d2f5231ee3a0457810c302bbc7069227083b3a8467f7540b6c5c"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "9b1bf608544c085f448fb9a9fe301869",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1174532,
"upload_time": "2025-08-30T15:20:27",
"upload_time_iso_8601": "2025-08-30T15:20:27.421661Z",
"url": "https://files.pythonhosted.org/packages/b9/97/9577d6f087ac9853ef3fde586e5e8bbdebee61e6fc3b661c2fd395370532/nvenn2-2.0.1-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bc999774c030b3c79ed6c244c019bb5ce39fdd1aa852e309027564c054f0807d",
"md5": "a80f10a9c5ebdc1783303d64a5c7089f",
"sha256": "30913ea48c70732317491761a1f35d24a2ee59bdc53424be67ce539df3522a06"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a80f10a9c5ebdc1783303d64a5c7089f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1246385,
"upload_time": "2025-08-30T15:20:28",
"upload_time_iso_8601": "2025-08-30T15:20:28.838358Z",
"url": "https://files.pythonhosted.org/packages/bc/99/9774c030b3c79ed6c244c019bb5ce39fdd1aa852e309027564c054f0807d/nvenn2-2.0.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b16aafaa93c0c03c045da20785f8895ff23070870d1ef13d71b210e078df324a",
"md5": "841dadb9d3f00ac6e11efa9682889168",
"sha256": "6a14ea9817072338ce83c4f87d940a6212bf9a09e812309da951639cbe1af302"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "841dadb9d3f00ac6e11efa9682889168",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 176362,
"upload_time": "2025-08-30T15:20:30",
"upload_time_iso_8601": "2025-08-30T15:20:30.311027Z",
"url": "https://files.pythonhosted.org/packages/b1/6a/afaa93c0c03c045da20785f8895ff23070870d1ef13d71b210e078df324a/nvenn2-2.0.1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9ff3dd677a534c493e31bea055059f3b423375a1c1827082c4690eade1d53e0d",
"md5": "df8df0f547e2396f4f55ffbfd3afae05",
"sha256": "9a21708c6b8b8569a4c04928e67b341450702cd7cc8914694ac94aff7e0c2d1e"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "df8df0f547e2396f4f55ffbfd3afae05",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 184852,
"upload_time": "2025-08-30T15:20:31",
"upload_time_iso_8601": "2025-08-30T15:20:31.430670Z",
"url": "https://files.pythonhosted.org/packages/9f/f3/dd677a534c493e31bea055059f3b423375a1c1827082c4690eade1d53e0d/nvenn2-2.0.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e059a5e46e93bad22e729cba877ee763ecc41b02e10b00a6ff47a8d1a58b4b2b",
"md5": "d12d55c89023f8da6acc02f19d893222",
"sha256": "efcf67058a4d330dcd833c02293fd057a1b40525f8d3d7537658516dc1c05a3c"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "d12d55c89023f8da6acc02f19d893222",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 210923,
"upload_time": "2025-08-30T15:20:32",
"upload_time_iso_8601": "2025-08-30T15:20:32.911532Z",
"url": "https://files.pythonhosted.org/packages/e0/59/a5e46e93bad22e729cba877ee763ecc41b02e10b00a6ff47a8d1a58b4b2b/nvenn2-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a15bf389d9e5999c001c1abdcfdc17999d6816ed85c3380ce259b030624128d7",
"md5": "f15ccd1da5a607bf3368a916275c1fd7",
"sha256": "113d9bbbdc477d7e977386f1297d3820ecb029e01bc2cf7d20e453eedf45af2a"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f15ccd1da5a607bf3368a916275c1fd7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 197555,
"upload_time": "2025-08-30T15:20:34",
"upload_time_iso_8601": "2025-08-30T15:20:34.023108Z",
"url": "https://files.pythonhosted.org/packages/a1/5b/f389d9e5999c001c1abdcfdc17999d6816ed85c3380ce259b030624128d7/nvenn2-2.0.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b1a76009e0ae87912524a8ef60fad1710b0447519edcb5744dd8eeeba4559938",
"md5": "760fe8372efc5a7651a3782623537948",
"sha256": "b88c464e9205d0bea503281737d18c45774a816b2b71a3a871a670ea3fef4c7a"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "760fe8372efc5a7651a3782623537948",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 191666,
"upload_time": "2025-08-30T15:20:35",
"upload_time_iso_8601": "2025-08-30T15:20:35.119428Z",
"url": "https://files.pythonhosted.org/packages/b1/a7/6009e0ae87912524a8ef60fad1710b0447519edcb5744dd8eeeba4559938/nvenn2-2.0.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0bb4bd2e4055a4e715700a9da29bf8339806209dd9933a6875372f34b71b2301",
"md5": "247cea09bca167e220d8ca7c5d9394d0",
"sha256": "e2e2f29a61d6899f45c909cbad03824e86d556076aba5fba05202054cabb8a91"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "247cea09bca167e220d8ca7c5d9394d0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 214177,
"upload_time": "2025-08-30T15:20:36",
"upload_time_iso_8601": "2025-08-30T15:20:36.936730Z",
"url": "https://files.pythonhosted.org/packages/0b/b4/bd2e4055a4e715700a9da29bf8339806209dd9933a6875372f34b71b2301/nvenn2-2.0.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "162b0dceceead4a37323cf2fc5773d58c0ee3538d2a88578baf9da8571f4d170",
"md5": "9ac1bd27c2ec53298df99c88e9cd00e0",
"sha256": "46b059f659d158d6010bfffefd055192a347809065a8d92ecb17be35cbdecddc"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "9ac1bd27c2ec53298df99c88e9cd00e0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1174821,
"upload_time": "2025-08-30T15:20:38",
"upload_time_iso_8601": "2025-08-30T15:20:38.142057Z",
"url": "https://files.pythonhosted.org/packages/16/2b/0dceceead4a37323cf2fc5773d58c0ee3538d2a88578baf9da8571f4d170/nvenn2-2.0.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2b837de7f55fff9c33eccca32407f721067f2824d13606da1ad26a7b411dae65",
"md5": "ab268e05c5387d7845a294587c9a9d01",
"sha256": "ef712d877574829d2790ecb93f005a585ef1cfad173603f1cf39cf0f0ca902ec"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ab268e05c5387d7845a294587c9a9d01",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1246900,
"upload_time": "2025-08-30T15:20:39",
"upload_time_iso_8601": "2025-08-30T15:20:39.464545Z",
"url": "https://files.pythonhosted.org/packages/2b/83/7de7f55fff9c33eccca32407f721067f2824d13606da1ad26a7b411dae65/nvenn2-2.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e676a9056f3962c4ecf4353a3cdd0a543f6487b1697a649efde1f737a7bc0aee",
"md5": "a91fa6c118cc849bb8e3f4fb983793c9",
"sha256": "f7ecb4e9d5dcda239b3be7151ed70ba967570734324dffa9c6e097ae2dd80856"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "a91fa6c118cc849bb8e3f4fb983793c9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 176370,
"upload_time": "2025-08-30T15:20:40",
"upload_time_iso_8601": "2025-08-30T15:20:40.737398Z",
"url": "https://files.pythonhosted.org/packages/e6/76/a9056f3962c4ecf4353a3cdd0a543f6487b1697a649efde1f737a7bc0aee/nvenn2-2.0.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "10b5bcf6972b7f056ac5b7cdbdc6458e25b3fba0c49a982186cc2f28411f3a83",
"md5": "d65cfbcfc5593d2efe591a24b950f22e",
"sha256": "dedca378cf1d3268754ca2ef89a96f0ae8a8003967cd012c31e2cc4e9a63b8f5"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "d65cfbcfc5593d2efe591a24b950f22e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 184860,
"upload_time": "2025-08-30T15:20:41",
"upload_time_iso_8601": "2025-08-30T15:20:41.792685Z",
"url": "https://files.pythonhosted.org/packages/10/b5/bcf6972b7f056ac5b7cdbdc6458e25b3fba0c49a982186cc2f28411f3a83/nvenn2-2.0.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "808f428010a214ef98c57ae82fce36683dc0cb435ad3aa010a450b96f8994556",
"md5": "75721f03a6ae8ce4fbb53fd99a58d38e",
"sha256": "4db30aa402b9cf8048e611313a70b4308f7e253519d9313c4df23e39d8b82d2b"
},
"downloads": -1,
"filename": "nvenn2-2.0.1-cp39-cp39-win_arm64.whl",
"has_sig": false,
"md5_digest": "75721f03a6ae8ce4fbb53fd99a58d38e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 177319,
"upload_time": "2025-08-30T15:20:42",
"upload_time_iso_8601": "2025-08-30T15:20:42.946253Z",
"url": "https://files.pythonhosted.org/packages/80/8f/428010a214ef98c57ae82fce36683dc0cb435ad3aa010a450b96f8994556/nvenn2-2.0.1-cp39-cp39-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cb1ee8a267ce7d4146d7ab4bf29774b2254dc97b6a4b4007b808b01b87401168",
"md5": "eb31f455edba02460d3411de5206f042",
"sha256": "781549e7af2afa2b2b2a72f6aa59942e50b243de9179640ff32b6d029d779df5"
},
"downloads": -1,
"filename": "nvenn2-2.0.1.tar.gz",
"has_sig": false,
"md5_digest": "eb31f455edba02460d3411de5206f042",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 92085,
"upload_time": "2025-08-30T15:20:44",
"upload_time_iso_8601": "2025-08-30T15:20:44.014113Z",
"url": "https://files.pythonhosted.org/packages/cb/1e/e8a267ce7d4146d7ab4bf29774b2254dc97b6a4b4007b808b01b87401168/nvenn2-2.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-30 15:20:44",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "nvenn2"
}