Skip to main content

Python bindings to nVenn2 to create generalized, quasi-proportional Venn diagrams. Described in [doi 10.1093/bioadv/vbag183](https://doi.org/10.1093/bioadv/vbag183).

Project description

Build

nVennPy

This package adds a Python interface to the nVenn2 algorithm to create generalized, quasi-proportional Venn diagrams. The release version is available from Pypi by running pip install nvenn2 from an environment. The algorithm is described in Samuel Pis-Vigil, María González-Pereira, Magda R Hamczyk, Víctor Quesada, nVenn2: faster, simpler generalized quasi-proportional Venn diagrams, Bioinformatics Advances, Volume 6, Issue 1, 2026, vbag183, doi 10.1093/bioadv/vbag183.

The problem

We have several sets composed of elements, like gene symbols. Each element can belong to one or more sets, which places it into a region. A region is defined by the sets it belongs to and the sets it does not belong to. The algorithm is described in Samuel Pis-Vigil, María González-Pereira, Magda R Hamczyk, Víctor Quesada, nVenn2: faster, simpler generalized quasi-proportional Venn diagrams, Bioinformatics Advances, Volume 6, Issue 1, 2026, vbag183, doi 10.1093/bioadv/vbag183.

A proportional Venn diagrams shows sets inside closed lines that may intersect and define regions. The area of each region is approximately proportional to the number of elements 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 difficult to interpret. 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 (default) tells the module to try to figure out if the sets are in rows or columns. Once the input is entered, users can also get the elements in a region with the get_venn_region method.

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.

Exhaustive simulation

If simulate() is run with a maxlevel value higher than zero, the minimization steps are performed in exhaustive mode, meaning that all combinations are tried up to the corresponding level. A maxlevel of one means that every pair switch is considered. A value of two means that all pair and two-pair switches are considered, and so forth. If maxlevel is equal to or higher than the number of regions, all possible configurations will be tested. Please, bear in mind that this process may be extremely lengthy. The computational time grows exponentially with the number of regions and with maxlevel. If you want to test this mode, you should first run estimate_exhaustive_run_time(maxlevel) to make sure that the simulation can be performed in a reasonable time.

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. It can also be written into a file with the write_svg method. 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. The web page can be written to a file with the write_html method.

If a diagram is saved with the write_svg or write_html methods, the output file can be read again with the restore_from_file 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())

Example 1

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)

Example 2

There is a public jupyter notebook hosted by Binder here.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nvenn2-2.0.37.tar.gz (109.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

nvenn2-2.0.37-cp314-cp314t-win_arm64.whl (216.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

nvenn2-2.0.37-cp314-cp314t-win_amd64.whl (236.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

nvenn2-2.0.37-cp314-cp314t-win32.whl (194.4 kB view details)

Uploaded CPython 3.14tWindows x86

nvenn2-2.0.37-cp314-cp314t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

nvenn2-2.0.37-cp314-cp314t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

nvenn2-2.0.37-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (244.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nvenn2-2.0.37-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (218.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

nvenn2-2.0.37-cp314-cp314t-macosx_11_0_arm64.whl (225.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

nvenn2-2.0.37-cp314-cp314-win_arm64.whl (211.2 kB view details)

Uploaded CPython 3.14Windows ARM64

nvenn2-2.0.37-cp314-cp314-win_amd64.whl (232.2 kB view details)

Uploaded CPython 3.14Windows x86-64

nvenn2-2.0.37-cp314-cp314-win32.whl (190.4 kB view details)

Uploaded CPython 3.14Windows x86

nvenn2-2.0.37-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

nvenn2-2.0.37-cp314-cp314-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

nvenn2-2.0.37-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (242.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nvenn2-2.0.37-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (217.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

nvenn2-2.0.37-cp314-cp314-macosx_11_0_arm64.whl (219.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

nvenn2-2.0.37-cp313-cp313-win_arm64.whl (204.1 kB view details)

Uploaded CPython 3.13Windows ARM64

nvenn2-2.0.37-cp313-cp313-win_amd64.whl (225.7 kB view details)

Uploaded CPython 3.13Windows x86-64

nvenn2-2.0.37-cp313-cp313-win32.whl (186.1 kB view details)

Uploaded CPython 3.13Windows x86

nvenn2-2.0.37-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

nvenn2-2.0.37-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

nvenn2-2.0.37-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (242.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nvenn2-2.0.37-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (216.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

nvenn2-2.0.37-cp313-cp313-macosx_11_0_arm64.whl (219.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

nvenn2-2.0.37-cp312-cp312-win_arm64.whl (204.1 kB view details)

Uploaded CPython 3.12Windows ARM64

nvenn2-2.0.37-cp312-cp312-win_amd64.whl (225.7 kB view details)

Uploaded CPython 3.12Windows x86-64

nvenn2-2.0.37-cp312-cp312-win32.whl (186.0 kB view details)

Uploaded CPython 3.12Windows x86

nvenn2-2.0.37-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

nvenn2-2.0.37-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

nvenn2-2.0.37-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (242.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nvenn2-2.0.37-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (216.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

nvenn2-2.0.37-cp312-cp312-macosx_11_0_arm64.whl (219.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nvenn2-2.0.37-cp311-cp311-win_arm64.whl (206.6 kB view details)

Uploaded CPython 3.11Windows ARM64

nvenn2-2.0.37-cp311-cp311-win_amd64.whl (223.9 kB view details)

Uploaded CPython 3.11Windows x86-64

nvenn2-2.0.37-cp311-cp311-win32.whl (185.6 kB view details)

Uploaded CPython 3.11Windows x86

nvenn2-2.0.37-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

nvenn2-2.0.37-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

nvenn2-2.0.37-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (240.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nvenn2-2.0.37-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (215.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

nvenn2-2.0.37-cp311-cp311-macosx_11_0_arm64.whl (219.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nvenn2-2.0.37-cp310-cp310-win_arm64.whl (205.7 kB view details)

Uploaded CPython 3.10Windows ARM64

nvenn2-2.0.37-cp310-cp310-win_amd64.whl (223.0 kB view details)

Uploaded CPython 3.10Windows x86-64

nvenn2-2.0.37-cp310-cp310-win32.whl (184.8 kB view details)

Uploaded CPython 3.10Windows x86

nvenn2-2.0.37-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

nvenn2-2.0.37-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

nvenn2-2.0.37-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (238.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nvenn2-2.0.37-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (214.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

nvenn2-2.0.37-cp310-cp310-macosx_11_0_arm64.whl (217.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

nvenn2-2.0.37-cp39-cp39-win_arm64.whl (203.3 kB view details)

Uploaded CPython 3.9Windows ARM64

nvenn2-2.0.37-cp39-cp39-win_amd64.whl (223.3 kB view details)

Uploaded CPython 3.9Windows x86-64

nvenn2-2.0.37-cp39-cp39-win32.whl (185.0 kB view details)

Uploaded CPython 3.9Windows x86

nvenn2-2.0.37-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

nvenn2-2.0.37-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

nvenn2-2.0.37-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (239.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nvenn2-2.0.37-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (214.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

nvenn2-2.0.37-cp39-cp39-macosx_11_0_arm64.whl (217.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

nvenn2-2.0.37-cp38-cp38-win_amd64.whl (222.9 kB view details)

Uploaded CPython 3.8Windows x86-64

nvenn2-2.0.37-cp38-cp38-win32.whl (184.7 kB view details)

Uploaded CPython 3.8Windows x86

nvenn2-2.0.37-cp38-cp38-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

nvenn2-2.0.37-cp38-cp38-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

nvenn2-2.0.37-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (238.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nvenn2-2.0.37-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (214.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

nvenn2-2.0.37-cp38-cp38-macosx_11_0_arm64.whl (217.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file nvenn2-2.0.37.tar.gz.

File metadata

  • Download URL: nvenn2-2.0.37.tar.gz
  • Upload date:
  • Size: 109.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37.tar.gz
Algorithm Hash digest
SHA256 2d3478fea2e17b974a2f00439b5488f8272f9e20c81dcb2a7a5bc3189182f1b1
MD5 8e248c0aeb2630ae70aff5e8562bf484
BLAKE2b-256 b9192cd04d50a75a33812a0aad9b1797cb6fe52debb9cf5e8c46707c3eac0b88

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37.tar.gz:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 216.8 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c21d56b34382a6932b8e03c94cf300e3c56edf454b4846ae73b228452371d185
MD5 b29e3d40cfa6b52f062f9e3b11a1e683
BLAKE2b-256 ffe473c73a8808e2eeb7645fc6eeee4263d2f6a87b1ef8e942d585221e58844c

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314t-win_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 236.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 63fb5f05bc67133e4462c1d52711429088d712b400e86b418ee603f788c9823b
MD5 52a797d2083605498e9f248afea11050
BLAKE2b-256 eaf15ad9ccbe415cc2975366a66f7793a6b9f1667f4eefcb6bb8212c6d08ac53

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314t-win_amd64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314t-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 194.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 54708e25bf1c85e743a513ecbe0d2270bd86a070c9368121c9373c4a7291a4c2
MD5 8771f5789f0c9252bcf80f6cb74cacbf
BLAKE2b-256 5d7396784dddb0f16bd05f2400a4f1cb68026322c6e64268275b0954b253bf71

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314t-win32.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b815973db251cad123c99567250d06cfff955ee22ad54b168321a05c565f31d1
MD5 492c22e7be8b5dcd234e20adfff5cfc5
BLAKE2b-256 608e00d623da7bc6b30f69000b39c69f2c80c2f19318331ebbc4d57b4ed9f0dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ceb756346b3a3a8c0919235fc138251fc7a69797a03525a692f6f65381b18ca0
MD5 3426375db31fb0788d81ca1106025b61
BLAKE2b-256 98f763a2cac4fcb07dac3c2839fb9348a10cfca46122a012a312c30366e18754

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1959f430ecbe63f5368449f36520ea8f78921b681f6a23bebf49a03ac6eed11
MD5 0b6d0efe5f682cbdf796308de4f63772
BLAKE2b-256 88e815b584676c85fd54f35283691c011b78fff468bee6786715ede6becc116d

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba1f38e1f47d0c60d67aafba5f5006ab684186893c152d6205c25d9ffab1fe0d
MD5 1a2c4aa58e84ca815c5d8877abd61b59
BLAKE2b-256 0b5de22222627278b2433e63109f6ddf32f486293eb17a6e4186c59d62377f30

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd2de67c2fa6bb4c8cc66f8d03d0533da9af3d00063673052962d01ef89eb274
MD5 45f64a406f66ad24ba314315c894a57b
BLAKE2b-256 c4f35a4bb442ee1508b6fc8ee95430641dd8543e2152971b02cf66b4f8168b06

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 211.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d048b6a64567f2cdb867044e5b037116feee14cb3db72bc4813b6f04760b5ac1
MD5 d6ab61abccfc0e8351d28fa6ceaece3b
BLAKE2b-256 c7f738d6dac8223157a92687d2f40dfb80036b89264b899da81efeb65d5deba3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314-win_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 232.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2bd15a757a1b5afd3ff687e46502b1b3065a46c42089416b5bc5ebb3c0f26de0
MD5 65e1341e18cb8ac3a142db34a36da654
BLAKE2b-256 5b00741e9e937395ea5a0f65b29b96f1fabf88bb7154f342beea8c1e16e16ca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp314-cp314-win32.whl
  • Upload date:
  • Size: 190.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a2ea9c4b2cfe8753ee9679953bcedf3d10b4255c09154936979f709fc160c269
MD5 89aaf7c621e8fe29250188f2c36ef9da
BLAKE2b-256 71632dbd2685a59bbea5b0fce18e0c90189bae02cdbdb8bf55ac2eb3e9538706

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314-win32.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 640958598d33b6ac96c660ef21cc5b9d5dd945a4e37f20b681789341e43949f4
MD5 cb609999d99d0f3f04526f90e76371d2
BLAKE2b-256 be0ae7bd82583d1cce1757cd99fe43791c3960d010dcad962bd33c2b6fd9c78e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7b34b9916f8102cf4125c0ea0c606d1269e5debc35339114b9715e358258cf0
MD5 55084e801687c2edd55baaa14837f03d
BLAKE2b-256 580b0f37c7ffb822bc64a74ac4599d33c726db6b14b543f6f54b87476b8daf44

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ae0b356e57c5aed118cc9f125298e8f13bc24df2b8a8c014cceac64f685a90f
MD5 549f7b31a016a0530b7bf460dd9a44a1
BLAKE2b-256 b354c55845a3913f8a0b3718771c8b0467a2e537c0fdfc12e1042bb549176334

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 143d46f0a5276238f1943c34f5eb1128e1ef9f660f268ef127a4e41df8edc706
MD5 0ab0393510437e7af10f6be351c704f7
BLAKE2b-256 973a750e68536499398c752172f248814f1bdd147ba0fb2002acb87b10134fa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1441350df240601a69475296032063bf8ce1d0da69c0445af74b6f250b3210f0
MD5 b4cd3b2750d59ecb22f893f6762d8bfc
BLAKE2b-256 59489dbeae5e6a3db1ec926e5af7174df786ba63d3476fa84faba272521dda8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 204.1 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0d3f620554c718b8181cf1c86ae4ec81418b2354487468aa3081cc67050abc84
MD5 c4d355d04a7a606e8146f3e5198b7748
BLAKE2b-256 bc2e8efd57ccb00402b8de9b120d0b1d06727910e0f0965e7c148886a81a08c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp313-cp313-win_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 225.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ab0e0560ef06a2018aeb027bd80fa63ae9607cb070ee5b60f8681b2288812871
MD5 175f61a3772acbcaef00964289aeb8a1
BLAKE2b-256 79cdd48561fd0fcbfa6dfe86a441cbba2d90c70fe8a7175b56e0ddebcbc23f1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp313-cp313-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp313-cp313-win32.whl
  • Upload date:
  • Size: 186.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6d3f685683cbe013b5feabd4f0b06d3956765fe4ec5bf25778160868d2fd652e
MD5 13323f38d4b2c6e6500e5e53c78673ae
BLAKE2b-256 fddb4fae7eff8343362fdead5b0bab9e92a19701984bcafb31ac81a6bb65a441

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf0ff183fb0fcea4d8ccdecd041188b4e365023b4338f0bc9c7361ceaba3e384
MD5 c20ccbf6601fb73a2a1cdf42abbd9044
BLAKE2b-256 4bee369029133eb967ed8119fecd2e95139cfa00fa5b931678fe379bbae79014

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69b79e6906f20e5e5d71f5c0685fb2e58f58832ec8cf0f5e664f65a3f918debf
MD5 92fbb0d50c05ccaf42f20a074d90cf8f
BLAKE2b-256 b38859d3087db6c5808a897e54e5cbe4d03fceca0728bf55e86ed69b3d319b31

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 081a491c287a4e677d16b43d901526a41b4ba72971490642a021e0d4efb55cb2
MD5 d5c3dda3bf3569a025be75863151410b
BLAKE2b-256 9efcee298ab7cfae98a02f55e8584de0a93e4c0ffb07047529a6b3ed0d34df7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e225bcf9413eceea2c36e497a517b27452769cc669629433f3f347d55481ba63
MD5 7f4fdf2eb9db9aff70770d809a40b199
BLAKE2b-256 4c04a9f35b863afad39a9deb1699b0e056c67594cd283c1797acf8ee8f8ed71e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18661a4f4e1f06d31e86730aba39f30791624c805fed14cfca502d086677b6ea
MD5 2947aa9c1a4db1470e5b74861d7df9e1
BLAKE2b-256 b73fa9a44563291c5c91d49cf0f1f85320662ae3281bc8383bff0705fccd3cf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 204.1 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 572c3dd9d1cf468a9acc7d69a09cd17b37cf40421f4ed16303d65955e825d038
MD5 03a50ff353f6a1ea714a096f8a537f51
BLAKE2b-256 5d176463a1094edc4c9c5afb69806ba461a8ec472a3bf4e7680180eb04e483cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp312-cp312-win_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 225.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 53a2cbc7551ff9f4f1b3e5f9d67a61d1521566b17bb766b1b01fe4130be6560f
MD5 0206ef3ea0cfe32421ce96f4cc5e3b3c
BLAKE2b-256 c44be226e4c5e043259d9d15e1f8eaae49d18633a1a3df3d24e239c593a9faeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp312-cp312-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp312-cp312-win32.whl
  • Upload date:
  • Size: 186.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e978afb5a103f4f9f7611b31fd40b0ca9856a835bb2e69ca86f29cf23312bf12
MD5 28f3743e788d5bc974c4626cdf192e9b
BLAKE2b-256 3a7113280d7c7935ea9e5e32b3b5028f5de782406d22aa7b132a9cf62e1680d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3606a19fb2f8a07b4f7fc89e320e987a89cadbff8770cdc9b63f967ce308899
MD5 e6c0014a08d04e5d515a93a9e6bfcb18
BLAKE2b-256 ca30ab06dfe0c267d80b9ccdaf92e636843c6f4de7ce815520499f37788e52f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c1e1b3febe47a3f52d2025bdaa0628a11816688556c878979218c5862e817e0
MD5 a11e604a0e4caef539b374c67a58f567
BLAKE2b-256 497299ecd0ef43f737153e99a548dfb229ca787c3b1f081502107e2d80bc53ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d1a9b08335bc77516e80f60138286a96da18bffb3973cc68d2849b298dafb81
MD5 a12c3dbd3e2b87171b60010387d93131
BLAKE2b-256 684b289ca3b14d50dd9cbddbb709e4d5ea99fe72779f8ba496f053c261565156

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af27206c3cef130968698daf199a6bedd9dc0bdb1343f96a52b0c465d59b1c4d
MD5 e51e3517c20316d4e1eee212957872e4
BLAKE2b-256 7f501a78a5bf2e9f659b0712c5243b03578f9c17d74be34613304d631b432c8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46e5c52e6a3b93f8a4c6a26bd04af64c410ff24498e12d105efb911c3ad039fe
MD5 0b218e7297dce0c8c4e4750575e88638
BLAKE2b-256 4ae600c4853c4c400e5ad58007d55ba3f930c3a1c23db964022c788bebc59929

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 206.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b25e8abc2bbae83e6fb4af95aa26ef7e0f6eb5c0d8967d62c1581f157267d6d1
MD5 a71e6514e3f33fa9f21f17b07bd41873
BLAKE2b-256 c92ef896eda0d6d90e2b79eebc12cff65fd850ef33c8456a14052959e9ae15fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp311-cp311-win_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 223.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1f2ae6f50000d280544bd6f3929eb32c9a99243034d8f4028c20b5d74ea196bf
MD5 5d1bf01be7472e2ab2745e63bde0767f
BLAKE2b-256 9ad7d4cfbf7a60459d72ce3a06a3efc67b02a7c06ecfb2f19feb1da35d76fa90

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp311-cp311-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp311-cp311-win32.whl
  • Upload date:
  • Size: 185.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0c77b81aab8954cccfe795555f2a8c80731dd60db6a4c5b78ac5eec8def37d67
MD5 49a3973b2a83fe1cfcb6831a19a70c68
BLAKE2b-256 3150ad453ee58c21603796eff301e45c09cb880c5aec66ff0e3f90fb70bfd4a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dba17188e4c45a606aa661d9faa9969c2dce3afbf2192031dac7de28819ae29f
MD5 8b91934e6721655702167136e4ae34db
BLAKE2b-256 068d67f354b0c745f03ed2e0f58486288c9fbc4b26bfb8429f66d58e7fd3c3c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4653ddac73f3b41bfde8588f834b3344f6f58ebc68e99aeb3db09f0d08dba91b
MD5 5877c5049c36dc1bbedf6e7a2c74cf43
BLAKE2b-256 d57b0eee04fecc3688b4f38678b0176d26d15cb639f0694d20fadcabc8fb7a02

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71d796009678a476d6e4f54418a30c8ff04edcf2c8289f3b1d2a1407635091c1
MD5 3aa28de2b413352d7bdf7509a7f88fe6
BLAKE2b-256 33413001e8a7d9f75c964f904121fb251a709879682484ffaeed87273b2375f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 182540d3a81e8ff81b52c7fa154817fd0194769c93e35bbc346f22cfdaa13cb4
MD5 6a9ac5a7ec26532c7e3cf8fc880e74be
BLAKE2b-256 4c3557c4eac8b17eda364fe72d22a2c2fdcd75de661b897ba2aba85fe289b423

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 128e284b426623925c08045beda3ad82f148e0d7d86be8fb4c05b6b1e83a5912
MD5 a0b6dfd6ed550a3b66a08dce9a3f608c
BLAKE2b-256 35b5072fbc310f71ff4961bb01ea76efdd4b452b3f1b0e0fd3f0212c80a48923

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 205.7 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 d6376deca93410c96c37507e9e60fab8e8f23566db9443d5632c94bb6ae6063c
MD5 0479125b8b4a1c9e1140e4ecccb8cb8b
BLAKE2b-256 7dde891122843e8cdeafc2e83a151e8c8f22c8334e40271a8eb702b71d0e77f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp310-cp310-win_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 223.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b721281ec8678bab5ed144bca81f5ceaf983af8885255637eb4c2ffc891e751a
MD5 275cbde9b308507bb2e8ff8355b05d55
BLAKE2b-256 50e562373490cedf3ff04f4b7d530bcc5d46b0339b9a3611d21f76e86f045b40

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp310-cp310-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp310-cp310-win32.whl
  • Upload date:
  • Size: 184.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 feaf1e576216c0fbf4535675e646bb2e37fe3b772423e9c3b73b7827df13d435
MD5 4c4410e0d4a2b31c65706f75f7dd5255
BLAKE2b-256 278485f3f6f4800e20d53163c02c8a701691874bd75fe0dfd60e5f18e808771c

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 427db8dd5779f7ec56efa9091d74f78c9ffec7c185dbc57d1f7f149708d85d0f
MD5 21d8d319590e469f729f42ff0d100abe
BLAKE2b-256 f0781887dc50390555548352795495d72a9c400e69bd49b2df93391e315f7c1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 990f81bb9f67a2018f691a85b83f79b96fdf5b251b8c13659847586024b7e3ba
MD5 890c676910bc8fb30c801e4f5931ad36
BLAKE2b-256 926cd0d724ca8d7c7e7f2dd15175910825526189bc3b13f3f60996be73c7b807

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 008fa5cc55d9c1ea5f322c1db7f90089d0384d21fd8933edb07a75cf915cd690
MD5 cf2473137debcc379ca45d3bb9bc0330
BLAKE2b-256 07fd5e2f05af776f9e354a23f2642b25da57a662fa3d2d61187d200078c4abca

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad172ff71d2f97f4311b9159d4d77e4ecd1f10ed661c1e7c85240f09cecd8a31
MD5 c7740202b58fd48f0c7f0bfeaa3dbbbf
BLAKE2b-256 03bff61e0fcab8959dc1b03f5132a87593ae4565c029523540c5fbd5c099a0f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b481011112ec8485a0e6265757bf4f8576f718dd619cd8969d28efa402a50b3
MD5 7e8fce2fbce4e378463b210a884f9ddf
BLAKE2b-256 7665e83ab4050ed09692089fd3b00400df08240fcc714162f236ac1cd2a446ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 203.3 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 dd6dc7cb3932028aced4a08e4a479d4f4d18dd2ad8aca15fcbc0b26a63e02743
MD5 51d81f3ac52fd0fdffdea604b547777d
BLAKE2b-256 825d1e7473a24e91012ba542a21caad4f21725445383bccd66bd3070b4f51e68

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp39-cp39-win_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 223.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 520aec4506f0caa9354316b6e7f02f20967e2551af00a12aa097d45916677c06
MD5 65f203431233624cc095f919baa7eed9
BLAKE2b-256 b79acc5cf252fac6aed102544d7ac773375cd2b441d487160b727470451c4de1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp39-cp39-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp39-cp39-win32.whl
  • Upload date:
  • Size: 185.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6fab08e94ce64acef01ca4c6788dae58cfad03f0f588aa8bf892bb3faa80d248
MD5 dfc542f969cac053319a4293f9d897a7
BLAKE2b-256 61d7971e55288dcf21a06349aa29c1ecf3937d307a54911559f9e9519fc11b5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp39-cp39-win32.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca3355563e04d698bbd9d3241968c659f0bf73a53e7e2d50fd066d8bbdbdebfc
MD5 6dced060d080d0be85b9194269d73a7b
BLAKE2b-256 0ed41b9590515ed98ce2afacad3e904b8d2d70e91e10fe639e125409c44e648f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20df676b8abc69207270a08c7c11ed1c909eee51a100ea1babc9b01f536b3137
MD5 1fdbed90128128443521a08343b26786
BLAKE2b-256 38382ce72d33a1f2a9a5da3b8bd250692adeac6a8f18e53743c107aa0ef53678

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad4a070e8a8d39dee4f3fafce8c660c19634abe1ca9512b9016fe51e83df9331
MD5 e36ccfad59a624c9da214e08939f57dc
BLAKE2b-256 c0b8c7094cce0b7568a5dc651796786169520d64b0a573ed003e5d3e270da3de

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0dfb8f70a950ee3f9baa09a9b2f61f58f058cd044255e31195f5c544a7471dd8
MD5 cd49b1e5b784cf0005c9833738bd5d70
BLAKE2b-256 a47cb666894806cbe8587abbd10f0cc498fe481fde924a11686b20951d671420

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f3116ac645746109e7676c816179520806328a355c05f0095cad9f7f4c9a3fc
MD5 9e57b7ed2e41a0ce55209c6d8f05af6b
BLAKE2b-256 19267ac15e91d1824f76305d8c8ad29435033d85fd9bfd144385eae56ac716e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 222.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ca5033fabee076f092249f039142c5a36670d7a1b24e2e898bfe9c3c58b7b510
MD5 90a39b24a624b3f83ff76dd8d1fc2778
BLAKE2b-256 de31b1075c1be2337ca4da70f3dcf423e787c1bda7679e74f7c0620a24abb5f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp38-cp38-win_amd64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp38-cp38-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.37-cp38-cp38-win32.whl
  • Upload date:
  • Size: 184.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nvenn2-2.0.37-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d9072921307e5851da85345cd0a30269bd7526d175375cae3ab2e01ee52b877a
MD5 0dc791ed172c48643c576e9483e36322
BLAKE2b-256 021e64724388828be481ca6f2e94491d408fb0f9f0d039ac14f72fc10ec4d1fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp38-cp38-win32.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c138de4849db34eb56606b80183cd2601b6351607086ff82dc108f6d3baff1e8
MD5 e5a3d5f7a065789943f44d6c7aac8569
BLAKE2b-256 7fa3c70b10afc2852beb5d4ad4c25e0397a97c25ac81de2aa039966cdc816f73

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18a5931ce403ab6d82bf4590b558fc3153eda59a465b2663d81a391f3d757bf8
MD5 fadcc0cf56794af37cc2434e595e2d11
BLAKE2b-256 74cd92233e43fdb431f435a8e5e564f0adca62d669a073410c7b609c5eb8a0ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6fe5bb3404f28b43b34092ecb64f5b00cdd8d26df993d45b8332cc328e328a6
MD5 98dbff1c43c7b8698b0ffa31e8321f84
BLAKE2b-256 04099543e436684d0da694459a0c797b6b92abcc53beba2d0eeb99511cbbd737

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 962c7066c96716dec612348f13b7021eb9c8c34f44fa3e8cb43b99b00445615d
MD5 a20f17b85e3aadffa0434006f4589174
BLAKE2b-256 51dd843637a65c84543d0ca85cb85d401bd81ac058e4db0a40d4c9a8ab9f3256

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nvenn2-2.0.37-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.37-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d3075fbac6fc66d3f87f62308d7a38fe5a0244445a93b325a9619b508dbb339
MD5 78126e02af664aa34892efe482117dbd
BLAKE2b-256 9f3d77ce47ca58d4419e137bc384ddeefec39d0bc5d352b91f32df0528434920

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.37-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on vqf/nVennPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page