Skip to main content

Python bindings to nVenn2 to create generalized, quasi-proportional Venn diagrams

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 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.

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.35.tar.gz (108.4 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.35-cp314-cp314t-win_arm64.whl (216.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

nvenn2-2.0.35-cp314-cp314t-win_amd64.whl (223.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

nvenn2-2.0.35-cp314-cp314t-win32.whl (207.4 kB view details)

Uploaded CPython 3.14tWindows x86

nvenn2-2.0.35-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.35-cp314-cp314t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

nvenn2-2.0.35-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (244.0 kB view details)

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

nvenn2-2.0.35-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (218.1 kB view details)

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

nvenn2-2.0.35-cp314-cp314t-macosx_11_0_arm64.whl (228.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

nvenn2-2.0.35-cp314-cp314-win_arm64.whl (211.1 kB view details)

Uploaded CPython 3.14Windows ARM64

nvenn2-2.0.35-cp314-cp314-win_amd64.whl (213.7 kB view details)

Uploaded CPython 3.14Windows x86-64

nvenn2-2.0.35-cp314-cp314-win32.whl (200.5 kB view details)

Uploaded CPython 3.14Windows x86

nvenn2-2.0.35-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.35-cp314-cp314-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

nvenn2-2.0.35-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (242.0 kB view details)

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

nvenn2-2.0.35-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (216.5 kB view details)

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

nvenn2-2.0.35-cp314-cp314-macosx_11_0_arm64.whl (221.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

nvenn2-2.0.35-cp313-cp313-win_arm64.whl (203.9 kB view details)

Uploaded CPython 3.13Windows ARM64

nvenn2-2.0.35-cp313-cp313-win_amd64.whl (208.2 kB view details)

Uploaded CPython 3.13Windows x86-64

nvenn2-2.0.35-cp313-cp313-win32.whl (195.8 kB view details)

Uploaded CPython 3.13Windows x86

nvenn2-2.0.35-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.35-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

nvenn2-2.0.35-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (241.9 kB view details)

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

nvenn2-2.0.35-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (216.1 kB view details)

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

nvenn2-2.0.35-cp313-cp313-macosx_11_0_arm64.whl (221.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

nvenn2-2.0.35-cp312-cp312-win_arm64.whl (203.9 kB view details)

Uploaded CPython 3.12Windows ARM64

nvenn2-2.0.35-cp312-cp312-win_amd64.whl (208.2 kB view details)

Uploaded CPython 3.12Windows x86-64

nvenn2-2.0.35-cp312-cp312-win32.whl (195.8 kB view details)

Uploaded CPython 3.12Windows x86

nvenn2-2.0.35-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.35-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

nvenn2-2.0.35-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (241.8 kB view details)

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

nvenn2-2.0.35-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (216.0 kB view details)

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

nvenn2-2.0.35-cp312-cp312-macosx_11_0_arm64.whl (221.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nvenn2-2.0.35-cp311-cp311-win_arm64.whl (206.4 kB view details)

Uploaded CPython 3.11Windows ARM64

nvenn2-2.0.35-cp311-cp311-win_amd64.whl (207.3 kB view details)

Uploaded CPython 3.11Windows x86-64

nvenn2-2.0.35-cp311-cp311-win32.whl (195.3 kB view details)

Uploaded CPython 3.11Windows x86

nvenn2-2.0.35-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.35-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

nvenn2-2.0.35-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (240.2 kB view details)

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

nvenn2-2.0.35-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.35-cp311-cp311-macosx_11_0_arm64.whl (221.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nvenn2-2.0.35-cp310-cp310-win_arm64.whl (205.5 kB view details)

Uploaded CPython 3.10Windows ARM64

nvenn2-2.0.35-cp310-cp310-win_amd64.whl (206.5 kB view details)

Uploaded CPython 3.10Windows x86-64

nvenn2-2.0.35-cp310-cp310-win32.whl (194.8 kB view details)

Uploaded CPython 3.10Windows x86

nvenn2-2.0.35-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.35-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

nvenn2-2.0.35-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (238.1 kB view details)

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

nvenn2-2.0.35-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (214.4 kB view details)

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

nvenn2-2.0.35-cp310-cp310-macosx_11_0_arm64.whl (220.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

nvenn2-2.0.35-cp39-cp39-win_arm64.whl (203.0 kB view details)

Uploaded CPython 3.9Windows ARM64

nvenn2-2.0.35-cp39-cp39-win_amd64.whl (206.9 kB view details)

Uploaded CPython 3.9Windows x86-64

nvenn2-2.0.35-cp39-cp39-win32.whl (195.0 kB view details)

Uploaded CPython 3.9Windows x86

nvenn2-2.0.35-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.35-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

nvenn2-2.0.35-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (238.5 kB view details)

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

nvenn2-2.0.35-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (214.7 kB view details)

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

nvenn2-2.0.35-cp39-cp39-macosx_11_0_arm64.whl (220.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

nvenn2-2.0.35-cp38-cp38-win_amd64.whl (206.5 kB view details)

Uploaded CPython 3.8Windows x86-64

nvenn2-2.0.35-cp38-cp38-win32.whl (194.8 kB view details)

Uploaded CPython 3.8Windows x86

nvenn2-2.0.35-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.35-cp38-cp38-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

nvenn2-2.0.35-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (237.8 kB view details)

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

nvenn2-2.0.35-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (214.2 kB view details)

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

nvenn2-2.0.35-cp38-cp38-macosx_11_0_arm64.whl (220.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: nvenn2-2.0.35.tar.gz
  • Upload date:
  • Size: 108.4 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.35.tar.gz
Algorithm Hash digest
SHA256 9791a4d3fc7190c86bcac7ef50d91ffe87a67111e833abdc11d4df1ae7404c99
MD5 5edeb66e30abc3c660e2f455d7c85ffd
BLAKE2b-256 f521d19c207bf7970c0ec6e675b7f61ab9b7a5bbc2fde4971f4f3d3177e3bf6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35.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.35-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 216.7 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.35-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7e8dd31296374d7a60cd18b035ecbfe1c4818a4a64a2c6e62add2f366be3283d
MD5 944846262dc2474327a010871e50d517
BLAKE2b-256 e7653a37a2f67f072af11c7ab2971fc9387636e424c16d392befca93c4030a3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 223.9 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.35-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b8039e97af119d7665f416d359e9853321f12d93677a3407a06c90b89bf4c4c0
MD5 6825c8b430792e969d701e637797eddc
BLAKE2b-256 50c0d13e532cf4da3da802d117379ef6da9458efd47694876c729621745da28f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314t-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 207.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.35-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c33470642ab420dbee1037476d1645a4110e6b2e820997a8cc5163d1c07a75b1
MD5 6c21cfe0dd0b75d376ba6341e728bc3b
BLAKE2b-256 48bcb6f631659e526372b93b644a60f45b8b1f351442786a3e2e8b68d532d59d

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5d49b178fe0662a94d78272a6b975182d0b2d97beb934c0fbb005578c06986c
MD5 e7e6a7861fa8e303faeab38c5f268860
BLAKE2b-256 28eb1b5a3c94981ece698c1c31e5e7caa641da6e311c607bc219584357efbaea

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 074ef0e35fb4fbf20cb9a83cbf5648b9a8b347bc20461fb5c99d32e27290e0b2
MD5 f3ee5df963c0da7dcc2c580caffe72d6
BLAKE2b-256 473992fc6d0ee115bf419eb6b3f80c02e5041edd0c443b385de2d84f71de0ade

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3aabcfe3575df9c3aa15132ce171ffefbcd344cd2d4b9a4771dd8fcc657422ee
MD5 80e84423dd60f863987f55ba3d6a7e5b
BLAKE2b-256 dcf9704f21b2c2036140964bd824224822c7ef12fbf9cb096835c96107214f2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3960728dfb686eda387f4e358b5f1175c826ce12f2b96bbbb9217c853d09bc4
MD5 801b664933353335e41596780c28f16f
BLAKE2b-256 66179bc86098050629b0fbfbe43d9b4c48361f94a8700be8e053c497ffe89b22

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aec218d5a0785296ff47abcd6b00ab9bef86b7fdcd20aaf24c66ac3df8728d6a
MD5 724cfab826f3fa52d0fe211a38795b40
BLAKE2b-256 99b9c756f60f1a275df42e82aafbb85f600130fdecd3811af965d91a90c3fead

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 211.1 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.35-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c5786a43f26744fa2134f8befc6311e0c59bda64e016eb8436e80ba15083f6a4
MD5 556283bc94b506a6c99886acf31e7734
BLAKE2b-256 c1d8e207f9e488cb259fd17eaa77d2aad49e1fa36b148e6a412366afcc253ac8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 213.7 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.35-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f185c648281b3d047b9df198cab54364169eee507064fad51a93e5c4ed9fa1a1
MD5 ab50670b04308f083171d1eab13caafa
BLAKE2b-256 7f86592ea414d47505b6e284a24ad63051f3707b19c041fab53a23adf6d977fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp314-cp314-win32.whl
  • Upload date:
  • Size: 200.5 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.35-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 599d7a6da7260c78256edae5a5f61c6c0b7f979ffe547a000f77e72ccae3faf3
MD5 9279ce41b7d47ffda572fb797aa898bf
BLAKE2b-256 a41ecd119dc341b990146e5ba7404519a820ef4aa7745173d3a2f32ab4d7aed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f1cbd2d974f51b006a55fb55e16153705fe8fd25b57cf4153f84be6686c1d3a
MD5 76189018b4a060b24e9670eea5780417
BLAKE2b-256 bbfe0c48bf7c5c6831967b5e45e97dd94e7053c8635626e6aaa89945dab7a1bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12cf8f148a24c287ad261a030276ced01de2a35a13c7da0b2bf0094be34e65e5
MD5 47d069b8300f0b5d8f0a2ea4f3c474b6
BLAKE2b-256 a606ee86db43aa5efc6f27660c62a9a567356e15e5c6e877032f67d4a0993f5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e781029adc44a4efca782caee1beb9d22114e229d962311285e4bfe13be9c699
MD5 ea60ee29e63d222ceef01c9af6cc71dc
BLAKE2b-256 d4099ec238262ce077452ec9c4c3d94b59903aece0809332ec8769a0953a7625

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 65caa70c4c425b9ac3955c2b3702c808d6b41abf78318e9aed669486d2474c8b
MD5 a308732787a42f77410895a7fea2ae69
BLAKE2b-256 5c4ad7d147086dc4e24420fcf3f76e2559fb9aa28c855fe2e6df9750562ea7e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a2d469d114e6b34a3bd2fc214286f6d14ec5fb4bd725296a28f585ea4b41a8e
MD5 cdaf1e421ee60ffb53e8467e6dfa3ed0
BLAKE2b-256 98d965d251b04a13d17a308464b578388777a40870272ede1c250d22c70eb741

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 203.9 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.35-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 25df05bb92b8fb11282182340da47f36178d733a23a8cc26f7f427e0d39985b7
MD5 5017adaceb8378211a0de5cd0f657fc6
BLAKE2b-256 f28992ba9c4e8a5be973148555bc063a02b3668bd20d38dc188643fe26459a07

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 208.2 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.35-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d06adc438fef000c9f71e6a62143afbe79450dd634c2bb0f5badebac46fd944e
MD5 a2b4214c4613df5d5f6d886eb157dd28
BLAKE2b-256 5c5f3e678b27d9ee4029f2df15e971a2c9432417034952aa8d3101fb5cfc446a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp313-cp313-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp313-cp313-win32.whl
  • Upload date:
  • Size: 195.8 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.35-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a60310dca8da90146f8f6d72af5d3a2a5171ad09e90baa1148835c393d85a1e1
MD5 2d17c0b249dd9bd14b787ee8b619aa4e
BLAKE2b-256 a423cee71b7ac1533abf8a723f4332c7a79da2eaf295e0315921a0a11df44dc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e963a47a6c3fb05aab2a4fe54f963901cd414a0859018df916b451c1ceb82b63
MD5 e8aa98c645cd483fbb5297fe9f2fe20c
BLAKE2b-256 46fcbe989c573b4f21ac53ec56ab9bf04ec2ba93a5f4cc29f5beabe6701254ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f868e9b211d3790cd264237cde9a2e9833ac71b8fb3148401246fac227caed25
MD5 88b9d08b6c8e298c8869996af8e9cec5
BLAKE2b-256 b80dffd3f9039e11b82fe2d57dd9d8589b38d76c99764c23328e0aca5d14db12

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3423d468238fc28d78dcb166b71eede91cb4c08e949d0a2e07dd406e78cdf9e4
MD5 c17cb6222dd4950ea16bac657e3b83ae
BLAKE2b-256 8dca7c1f6a33bd4cb8b2738c49417211c1b6ff8534cdd01ccfe6246bad97b6f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f316ac607c09504e94f873aed44144d7fecc8bb306d4050a584c25817af96e0b
MD5 024497389d24ea8a3b9917edc66b2761
BLAKE2b-256 b9d386f00f147efd0d72a794baa79d52e7c1f461087595c6dedc2b063802117a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df2ec82bdfa47979d3b518a1b5f20c4df158492ca23e16860b0f7d0eb2fdbadb
MD5 6a2f4b28de49d4263e7b1ed47dec0cb0
BLAKE2b-256 675fd7c17d1e8eb9a6c59a5884f801b8b5ffe1c5418bacb85a477d52201085f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 203.9 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.35-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0598b428a70ed175a1ea7ec98c49bb063fb7c5d4961674c036b636f455d1952f
MD5 04c392349b078660b2d59b069727e030
BLAKE2b-256 1b8fdfba6b8d447f2a2358fd6e6a8185c62f6ff77cfe500d732382bfec5e9751

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 208.2 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.35-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7a8006d8f589844fcab95ed673cdcfe10ed6432212eae0ba2f10a68c17ce77f2
MD5 6e5f09fe608ab4a77e20f5333ab7ed7e
BLAKE2b-256 69d971c26a4f238a5b827117a4c376541fff9bf045b364d45aff753f201f09ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp312-cp312-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp312-cp312-win32.whl
  • Upload date:
  • Size: 195.8 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.35-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3883482e6ad6f00072fcebaabf29907add22d3861c4d7e37c5068addbdf85145
MD5 10ec82021f5450f520217cbe3adddee0
BLAKE2b-256 5ab1f5d3913311ba07991bd6357d4fb222ccde71f45882aa9176e01af9792ca5

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9710165037f2f5fb09185cd7e5003b3439848ca08a3858a489fecc21be784dc
MD5 e9257b7627d179e225a5e8b8902819f6
BLAKE2b-256 10d920468ae7f0a5d2f836babd7d77dd39a7e3eecd04c7bfdaf25c2d5bcdf27b

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06081fb8cec4ec8115fdd19dfbb6a6a5a92be883970ed03d269cd2cf1dc737d9
MD5 a4ccccad1adc01a0406ac2242da1dc46
BLAKE2b-256 aeb5769b59f1e62e7556f5eb5a04953dde48840a843342872b33d8d438617c5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e509741140945bdc81d79f252ade19e4bad58e978f44700abf110a3d6f39a580
MD5 6c7b242833174f257109295fc122f2e9
BLAKE2b-256 1b9f132bf916c7048ebd78625f651d608294f71fa143ba03885f581441629030

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 435483d473298f20e0bd0723fc2e129b4012c8da1396fcb8739fd99e7084fa91
MD5 2c9d0487e83c09970262124b2aff0e92
BLAKE2b-256 d3c2f2bb8a6f44d0c972989fff33ee18f2d5e6d0eececc2a160a2aa85b5ef784

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8e91a0b169bfd9dd45b0866bea5dddd3f35ebdc53391044d6555e8ecb599682
MD5 b63e8c4b32876a340ed52936f047d25e
BLAKE2b-256 7c730d6c888e4c6126eeff1929da5410c4ec0a9bf64d44b762837250e6554552

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 206.4 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.35-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b4aa2ac197e6b1ceb34b76b276ad5a28589f73497720c5f4fe0a485324047e87
MD5 15fa9af07e403ab0d1945d8f0e62f290
BLAKE2b-256 293dcbb93e41e4ea5801f4e2a4853e40f4e2b5d61f3b9f36e0750d082552f7c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 207.3 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.35-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aee7c408eaa4869170fef8bdb495cb96b252fec3f6b6e5d3f3a4b0e959b8d5c4
MD5 e5019dd83ef379906d6210a567775dd5
BLAKE2b-256 6d49322033709178beaacc5681087a1363438efdf9cc9463bfaf54aab8ce72da

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp311-cp311-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp311-cp311-win32.whl
  • Upload date:
  • Size: 195.3 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.35-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 81295c99d1488c5baabb907d79d8dfe8524cded7b33b8f2256e62b85d2f3ed22
MD5 8e256c405b40df29a40b73630fac9816
BLAKE2b-256 b223d969680138aa7e9d103ab16b0f04bd9a3f952aea210e0979bd467698dabb

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2dd6c42b864d4a014aa560849199ac5a3d2a05c7d35524fd51d608608ac1f784
MD5 0b996a5d7bc0774f505ae7993bfbdbba
BLAKE2b-256 d7e000839fc4149da740619e842cbc3680c01f4f887e354a63edfbd1d1b68790

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32110ebd44253127a38d45e2e4ceeb8dac1b77fd367f1ea2a2d27b06fff68501
MD5 d2c0e7616f80ccc776b6bfae386319c5
BLAKE2b-256 55faeed4badf8d67d2d8694ec05422d131e5abf4014c98ba60f1147c457473f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c23d3013eb66f09bc6bd1dc92c2688edf7e24fe89b9b86c7e36f97a3353b73a2
MD5 262d0766808ae113a81480dace1f874c
BLAKE2b-256 b38db78af448373fc5c092ef4379c80cbfbfcade774bfe394e7db2f5102bc4d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06aeceec48ce158b8b2b42f52ff35339c449742f1d1c1e05cf6e89435d601732
MD5 80716f885e2b9ff6289bb1209274246a
BLAKE2b-256 81ad6d9b73c90dc43d6d85a0f7dfaa3498c3045192930eefad22e1fea7060af9

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4dc1094dbd7843ccab3adb3e2e3eedb046181864b601c96519ca5d629ce1ad9a
MD5 2e359a78da4e2af2fd400b83504cfdfc
BLAKE2b-256 bd109ffa1df0d211bdef895d421d5e05e71f1338df77c967d18f989b8732538c

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 205.5 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.35-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f6bc546a62fb2bfc41b660f1ede01fba58b9f46923ec9b66e7096a3a77471d80
MD5 2b8c8d79bddbc5efcbca0015344b0b1a
BLAKE2b-256 504df5b0eb8593d4f0d0d76b63caee643e292fead4e7bfff831d09babb6fa530

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 206.5 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.35-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 16759135c2cdae0b69117d5cc7f84b27267a95b031580f8bf1a8276468ef225a
MD5 57b2bd02a0ea64f26dd4d5dc89cec7c4
BLAKE2b-256 d20381245561f2759060caec653c151df7bce762bef28731ca01932099c20b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp310-cp310-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp310-cp310-win32.whl
  • Upload date:
  • Size: 194.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.35-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f4daf925396ee1a903b1a3cbdeab1acc884a1469396617594057f496d4819d3b
MD5 e51222b9461f0fcf5abe61a13becb31b
BLAKE2b-256 ba641e683bf28cfd70bda6aabfec0c0d55b7850f5c1e6989bb3be00b9a9eaf19

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d45c79e3d7e2d7165a40b2b446e714e9595aeceab09116158fa1eb9bafb6c845
MD5 739007b1228e19e4a4322e1907c1e023
BLAKE2b-256 6658676a8d5d626b4344d5faa9e35017acb02a292daf3d4e96d57aa7818a3800

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 353b91540475bd4fe1b1c95fb38392bb3712be1d3aac0aa37b8c3919893d1552
MD5 9360d9c6660478fd91c7a39c6ddd9f33
BLAKE2b-256 5e969f874c717a7da550369dbba43379a56e2c200c6cec45aaa551322f1dfb39

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5861e19d59410f8f38414ddbf6f6fb56be300c469a2adb00c449cd304653bff7
MD5 1d553e5c630b1ba54435770616d71887
BLAKE2b-256 c6d7a7f4894340ad284084c23f36c47529e4f13dbe9362d4255a7b28d2264bad

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d70df4c4f6e5cab4d848ae57f70a1f5b30bfebc5313c025c4ed6e65f41004575
MD5 cc7d7729b573e5f12a53c8604833613b
BLAKE2b-256 248a3d0931b00972dd656d33040bdf8288556fc741a5508a8eead60cf4387c86

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 630e5bebf1bb24350a519130fee0b370b9f694028581f7e8ffef94195207bef0
MD5 07a0362e492c8574606902951e7c8ebb
BLAKE2b-256 b2242e369704897359b8d8aa3f412371ae3a92cefe0853ae39507b38146610e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 203.0 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.35-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a08c219745614e20354e1949fcf06fb2cfc970fe7c7a8debd2c22d2d29516f8b
MD5 3a6967e66aea626d8bc432eee962fdf2
BLAKE2b-256 95d4da27afc60d449c3c44358bffffac3ff128d73c91d939a3bf3b2298260a95

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 206.9 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.35-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f611284e241fc1e1ae320bd26b72f47782c362b453d101ef77af020580ea9b15
MD5 b42a1620cd8951cb9a1c2f0cb8957fa8
BLAKE2b-256 06dd455bb1af07eb02ab87006efb05a07c1658ac2744cf54b117e4c7a34cf5ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp39-cp39-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp39-cp39-win32.whl
  • Upload date:
  • Size: 195.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.35-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1399a74164e62f960cea19b35d31cdef0259115f75fd5fdc5ae122979b52bf56
MD5 2e2bd14a5c13fa7160f69d1444b4540e
BLAKE2b-256 e23bb515dd345b01e6d2351bf9f124f24200f744f8e5823a7595ffd9c0019bba

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df36b204c45485d108e5c658a5fdf185532d2aa99e997ba69fa2b3cb3285895c
MD5 23a467a294fec19a79445681cbbb26e3
BLAKE2b-256 9d83cf71473223de578461845381a105abc4779361ffecf146bd6121fdf528f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30f5276bd906cb4677343893a4bd6ecc4604da35f14e2aac6a084010718d18c3
MD5 08849c2fd1ade654e234f9bb08fade1f
BLAKE2b-256 4d03a2be89456a2b023e2bf1b5b57d088f4e1dbe56a4446d73127bb139c54cdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da2ac5590a77ba4d0ba5ca0c2bb712afa17aca8267a6c9accf0f0d794d81a624
MD5 b35fa02167cf046f4ced7c910a28b4ee
BLAKE2b-256 f45db95013cb9187ae376b4c3f5db03981ad17ecf53e67ca86a5221aaab5fdbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9099d40de0b03e59f24620c0cd088e87327d7973b99bce2d275eb0ab53b121cd
MD5 e5e3b6c6576203b5847416a98360fb40
BLAKE2b-256 44a97e9e419f73af279fcb4fb15b51d072d4d15155fce771877465a2138fd1a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eddf593b8779dd7d2d02b3e4717f0fb4cdcad4d54b14fe1d3bd3f9723b9e1c25
MD5 3fec9c0e9832e34572229ba0307a7f97
BLAKE2b-256 f35d61cade27eb4e314593b595eea402eb158eb7518b34a9e2f299c4955025ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 206.5 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.35-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4a1138b1738b53203c4a68edd32b5312347e08bb8f8dcdb18d8437b6708f2fa8
MD5 90b6c53e1696ec439e9bf74f4532c01a
BLAKE2b-256 f5bd7562adbc84503b6a15d7a62beb7302b9830545d996d5baac81860a497e77

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp38-cp38-win32.whl.

File metadata

  • Download URL: nvenn2-2.0.35-cp38-cp38-win32.whl
  • Upload date:
  • Size: 194.8 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.35-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 91bd36b624f5a89ec89555bb041b4a77a5c14ec5ee4c2ac289401e3f84badf0c
MD5 2d830328327803f145eb416880c0b914
BLAKE2b-256 37afd6861df3fdd9e32f57b15abca9df45f60f417e583564925063410dccb400

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5ce612eb84046182a66ec5dc40064b2f00eacaf270d46d461fba961a87db9d1
MD5 8596f4beb4a7f246a184d1113ae607d6
BLAKE2b-256 e90474c7bf2eadccc38663f8e8304fa536580244f171c535504d7ffb657191d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b39be2ae39b8370842f4d642b785a69da996262b8b35025bd94375f89daf9470
MD5 c82f80b527f5d2e12f734dc8b662d341
BLAKE2b-256 03dde6857623ae204c1916c4d7f5ab903d11b3e842c5819075a0adb826399008

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d15ac93d912acf31245127a428871811ef7b9e7f0ec0080c951eb6e4e81e1abb
MD5 7f3ed8f0d18545134d049c08e7310ca8
BLAKE2b-256 489016921a672d4af8c480be87ca42d371ede3d7bedde8696c4251a5978b84bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9bc6adbc9481ebd3a38211cc965effcc59838a646eabd14ecbba8ee518909e50
MD5 f7d3e7495b5f215b3a6faa258e0491df
BLAKE2b-256 ca6f10c6f039f4a5b1eb9d63a3ecd046211d2d5a0838c2880f3f7b5733bc2255

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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.35-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nvenn2-2.0.35-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c5e15322fa68c31732fb9ac77d8f72c6f85a6c5a84daa24a40a4123a6ba320a
MD5 79864e6629b9717e171b98bc70954661
BLAKE2b-256 b32bc0b705ad89178ed63048c0230528acb0ca806487e771c5fe2c204aa40959

See more details on using hashes here.

Provenance

The following attestation bundles were made for nvenn2-2.0.35-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