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.32.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.32-cp314-cp314t-win_arm64.whl (217.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

nvenn2-2.0.32-cp314-cp314t-win_amd64.whl (224.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

nvenn2-2.0.32-cp314-cp314t-win32.whl (207.6 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

nvenn2-2.0.32-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (245.6 kB view details)

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

nvenn2-2.0.32-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (219.4 kB view details)

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

nvenn2-2.0.32-cp314-cp314t-macosx_11_0_arm64.whl (228.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

nvenn2-2.0.32-cp314-cp314-win_arm64.whl (211.8 kB view details)

Uploaded CPython 3.14Windows ARM64

nvenn2-2.0.32-cp314-cp314-win_amd64.whl (214.7 kB view details)

Uploaded CPython 3.14Windows x86-64

nvenn2-2.0.32-cp314-cp314-win32.whl (200.7 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

nvenn2-2.0.32-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (242.4 kB view details)

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

nvenn2-2.0.32-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (217.4 kB view details)

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

nvenn2-2.0.32-cp314-cp314-macosx_11_0_arm64.whl (222.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

nvenn2-2.0.32-cp313-cp313-win_arm64.whl (204.6 kB view details)

Uploaded CPython 3.13Windows ARM64

nvenn2-2.0.32-cp313-cp313-win_amd64.whl (209.1 kB view details)

Uploaded CPython 3.13Windows x86-64

nvenn2-2.0.32-cp313-cp313-win32.whl (196.0 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

nvenn2-2.0.32-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (242.4 kB view details)

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

nvenn2-2.0.32-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (217.0 kB view details)

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

nvenn2-2.0.32-cp313-cp313-macosx_11_0_arm64.whl (222.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

nvenn2-2.0.32-cp312-cp312-win_arm64.whl (204.6 kB view details)

Uploaded CPython 3.12Windows ARM64

nvenn2-2.0.32-cp312-cp312-win_amd64.whl (209.1 kB view details)

Uploaded CPython 3.12Windows x86-64

nvenn2-2.0.32-cp312-cp312-win32.whl (195.9 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

nvenn2-2.0.32-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (242.4 kB view details)

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

nvenn2-2.0.32-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (216.9 kB view details)

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

nvenn2-2.0.32-cp312-cp312-macosx_11_0_arm64.whl (222.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nvenn2-2.0.32-cp311-cp311-win_arm64.whl (207.1 kB view details)

Uploaded CPython 3.11Windows ARM64

nvenn2-2.0.32-cp311-cp311-win_amd64.whl (208.1 kB view details)

Uploaded CPython 3.11Windows x86-64

nvenn2-2.0.32-cp311-cp311-win32.whl (195.5 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

nvenn2-2.0.32-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (241.4 kB view details)

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

nvenn2-2.0.32-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (216.6 kB view details)

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

nvenn2-2.0.32-cp311-cp311-macosx_11_0_arm64.whl (221.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nvenn2-2.0.32-cp310-cp310-win_arm64.whl (206.3 kB view details)

Uploaded CPython 3.10Windows ARM64

nvenn2-2.0.32-cp310-cp310-win_amd64.whl (207.4 kB view details)

Uploaded CPython 3.10Windows x86-64

nvenn2-2.0.32-cp310-cp310-win32.whl (195.0 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

nvenn2-2.0.32-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (239.2 kB view details)

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

nvenn2-2.0.32-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (215.1 kB view details)

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

nvenn2-2.0.32-cp310-cp310-macosx_11_0_arm64.whl (220.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

nvenn2-2.0.32-cp39-cp39-win_arm64.whl (203.6 kB view details)

Uploaded CPython 3.9Windows ARM64

nvenn2-2.0.32-cp39-cp39-win_amd64.whl (207.8 kB view details)

Uploaded CPython 3.9Windows x86-64

nvenn2-2.0.32-cp39-cp39-win32.whl (195.1 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

nvenn2-2.0.32-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (239.5 kB view details)

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

nvenn2-2.0.32-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (215.5 kB view details)

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

nvenn2-2.0.32-cp39-cp39-macosx_11_0_arm64.whl (221.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

nvenn2-2.0.32-cp38-cp38-win_amd64.whl (207.4 kB view details)

Uploaded CPython 3.8Windows x86-64

nvenn2-2.0.32-cp38-cp38-win32.whl (195.0 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

nvenn2-2.0.32-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (239.0 kB view details)

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

nvenn2-2.0.32-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (215.0 kB view details)

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

nvenn2-2.0.32-cp38-cp38-macosx_11_0_arm64.whl (220.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: nvenn2-2.0.32.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.32.tar.gz
Algorithm Hash digest
SHA256 195087031586c95738c47bc3556c728b9f8850d8681f3499d598b5d45c35e771
MD5 64d8eb829787b57aa35ce8cef2f33db7
BLAKE2b-256 52d819c234c1e4eab17893923b42e3c6d2ecf3989662a542bee1c6340d85f3c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 217.3 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.32-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 e4dd2bd5a404cb82dcf3f4132ec44fdc256cadb382ca1e2d0b3355714af155bd
MD5 a61786506bb570227f882d937a7f02ef
BLAKE2b-256 42e91d143f8c23edc0bacd4fe4ceeef5b7a2dee58dbace1d0ed58280815d01d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 224.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.32-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 945dd302f46a35d5cfcc8d373d9ae7cbd1af796a33f380c6332a079ec09d49c1
MD5 231a1c8a2225f63b8c413a03d24d3401
BLAKE2b-256 641281d374c0159fcc0703f52fb59eb5e8213e112bbee315df0fe677919dac57

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 207.6 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.32-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8b6630388e63d31793a900f34a7d38d41dd9d89055cba4f6fc48f1152c8b42e3
MD5 7211e8b376d62619a40b323ecf7c4704
BLAKE2b-256 54c06748a17eb0112567e8cd54084f2f8120bbe416af3170d9a06c3561576804

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33584a2380a581b55be0d77f6d55ac8da9de0df9502a540b2aec102f585ea560
MD5 42cddd3aab19200cc61c4917e70c67bd
BLAKE2b-256 d5b51719da0069c1437c41df2fae0d874b76452585d7b6ca22c3cc8fabcf10d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ad98ef4d9cbdfe3ca47541a40bc979fd93859da08770cd557c07299c71e306d
MD5 ab84cfa1f7b30161a23cdd8c26dddf35
BLAKE2b-256 567fa6870deca876b6d94a9ade8130c0ea49da4c050d64c05a9f180bfa293af7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d14f61af81ff8344a786b2f8766992ab357bbab12efeb82592c4150dd4d1aaa
MD5 d22fb6058a55f7ae000f9c0bef65b495
BLAKE2b-256 460a73fe0e8e09b7bb3abc3751368ddaae64efa2608665d2b367dc47e9195c90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 678f428456dd7e60ec39c3458a45d072795efce98d8ffb88f54d2510d13e368f
MD5 a5b857ee0443f52d3352d97ef7869f33
BLAKE2b-256 0b2d345c029b0c1815d2d94beb97af2e637d98fa198557b56bd29f790bac4c7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3b313978438c4863e540b2b8765c47cf14fd1668f96fb1809a74f4d5f47655f
MD5 5aec05c317f47ba805f290995b933789
BLAKE2b-256 778a000333e2e3a4be196129cfc6ad561402bf73ff2d2df6be65d39b6ffb8f24

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 211.8 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.32-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4bb355a77f374d51670bea223233409ee76fb110fbcc79ee24e6b9fc96ca61c0
MD5 9ff308a2c36e23352be52d5307b22acf
BLAKE2b-256 da0389420aecf33697b83e63ee936d788aaac12fa50ac7ef57f832c1d15fa184

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 214.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.32-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8b1fcd357f2c8e5807e33248251050748d020987c0811f3ccbb8fc0f27197497
MD5 97011f342fe8a6985548dfb194327738
BLAKE2b-256 0bb352d7cf0f7337758b7f09fdfa63a0d9b92358836a3c084bbd17685d6b659d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp314-cp314-win32.whl
  • Upload date:
  • Size: 200.7 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.32-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e822387ce6015d782b836c3d0ff0175adfce48c570e05f59cf88c2aaea1c395d
MD5 b58702a8528e4750e3cdee9c42b225fd
BLAKE2b-256 d8fedac2b714cc1865e25fdf0f01b1d935fa170899a101f8c0fe4b491d99864e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d767e9161426b2af95f523c5ee81fb5ac33c95273c969d62a14a3f209c66b8d
MD5 fc6965d9082d3ed24180c8a417fe2e4f
BLAKE2b-256 1b81b077402a1ddd82b577220392b8e5b362386e458bdebd52dcddb0784433de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab0351a9db029e30991f7a8e61beaa77c746372b418d76a790ed5dce2f23ede5
MD5 2c97b720bff0a64f1f01278b9daf16fe
BLAKE2b-256 e1d5636c5c4c3aef1ba64f7f054d4e74fdcda9dd796593e6068bc2f7f6a8404f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c30a18d613ef951dddc14377ff47c320b042f5141c234c8e1a38de7e3219f603
MD5 7a393b6a0b9bc801c0c3acca96cd6447
BLAKE2b-256 690327465b9e17368989ddc1880a6d5ee53dac5327faef242d0a05a1d5b59fe2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26f8f08dbbe3cf849d95f61acf8c3101609ed94afbdf0386aae47b9d77b31d9f
MD5 3895100d8ef3651aff816a8a2ed734d0
BLAKE2b-256 6803c3db2e586358622703d07e61c67ab01a4d24e5b4d1149a0ecc281b02599e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cdd49c7f5e602a1cb83b9d86fc4e7917485121cce459831bf7d4ad0ddad8983
MD5 c437b7f76d8d2e5ba4f7487fbde78f41
BLAKE2b-256 f94fd4423c6997f4fbb4abec9830bd1952c3ddaa06c18f036f66f732a40ed194

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 204.6 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.32-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d882d28e66a765e05840c4046f471bc2a5a104dbd7afdf251e99ebd0c727ded1
MD5 0e2ee09a423b146b4f8f438d86578a21
BLAKE2b-256 3b599f384b77913788304cae783ffaa9a05959af03f816e2bae55ef47a62d590

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 209.1 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.32-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c8c21fdc03708c60127c0e37b44868fa1ad8f459c2ef7150ae47950c1f216189
MD5 90764ea3de1b97cccc0a8bfc3faaa124
BLAKE2b-256 ecbf4cb21eb95f4f2a03882c8acddb908b6dddbad4826c4f859d755532cbf6c4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp313-cp313-win32.whl
  • Upload date:
  • Size: 196.0 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.32-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4493bdc2e46049ec181afe801141a77f764875a5dde59269807eeffc74f9b339
MD5 6d6d867d18e6b0c3b644f3fcfbc2a60a
BLAKE2b-256 344605cb18cd79b855789ca16b310314c06739f7eb92be1705982443ad9414c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9808082de488e3afd1bc2f0ed9c10bda7f079370b05afbcea4177b3cb86ea75
MD5 a7072e70cc0d86d28632634eca0da42d
BLAKE2b-256 5eeb1b17c32a615f891d39301ab8b9a4e5f9c04cd02b67eb6004a8154c0660d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3aed97b3c609e3700bfbc8676f1ac642d3a7ee44c53919206046bee0284dcd8
MD5 ebc7065b027f5a3ce9b1e465951317ee
BLAKE2b-256 6f344ca3c821996d5d299fe917a0c0841cac489c29cf13da5340bbd39b5a15f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53b8ab78093e92ad7069df0246eabcb09f345c8ad40391fe0223f67547a34671
MD5 d56cdf6dd1229f9bb267a6d50120a783
BLAKE2b-256 38426492a7eadc1f3419c28653b7af7eca0f6046eb956f78f3e2590c3681eb22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b188f4c8b598a845d2189d55e21f56ce10fc138b702e64ea619c66cdf0bd3f5f
MD5 5c01bd937760810a478377afa8792dad
BLAKE2b-256 e9bcf9958a8dbabe4a3cbab1f9abb7783d03cae744d69c7d9f7ea9fa2c0a78ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 314c58b3e41c311d686c4ed6686f22414041194f8b5c0dea48b5412f4e421960
MD5 d7ec70f85d61a5ffad401f56f8af8780
BLAKE2b-256 f2bffed4be56e5df39121deb118348fcbc0a454b893eb02fa8252516a0510248

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 204.6 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.32-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 446f87ba45372a4ce7ededa7493a9872947d91f374522ac1d2316920da5ed2ca
MD5 64d2b54622371b90fa2876fddaf2cece
BLAKE2b-256 09a7c63f1012ee99a9dbcbe4aecf7ef1fa79d68bf3bc65584b2cbc0ef64133ae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 209.1 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.32-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a284dc0afac5b8da27b4a597898b9e704c2f6e8af0da1cb94898588becbd9368
MD5 ad5b580087c9571cf24f4db50aba0899
BLAKE2b-256 8e515a8cdf9b111c8b4ae87c07dc290a5381573d65c6b8b4b3fb6d9f5719833e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp312-cp312-win32.whl
  • Upload date:
  • Size: 195.9 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.32-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c849d2143dd85e3530f69a61be58482159955d0863bf5fba2d5418b7be7009f9
MD5 aa22fe21f22b58e9f12a45de2d9e3fb1
BLAKE2b-256 d8c6276482f1c7e2b230902ee2fa59d29508655d4206f412e6a26d5aa9b1d110

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68177402586b7dc7e2a24348a58aa4d25b4416e70b636c5e10602f6b0fcdc4a4
MD5 b2c05522ea7289814bdde46a9982a7a4
BLAKE2b-256 de52c503cd2de7fa8b9a0d7008b8412a6b2736885c7dcbecccb22728f2e589b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 618e21851bb0eb3c999eeb425a6750067ce6f6ffa6220f78b2fef0d98ea5d4bc
MD5 9d5874ab5e17e452e52ac2e432c053ef
BLAKE2b-256 08e2f7940670c9c1aaca08e86f4c7d2b91787767b03d249510cfad2f905daf48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 331ec6422f8a488ca4b46a24edbe5a5913b1b0e511cd65b451da5eeadf66290e
MD5 3da66e9ac41b10ad9e405e0d3091ef4e
BLAKE2b-256 8ad65199476823048ae12b4092680b936b14e5dc7d08965ab6317a4e834ea613

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e3f1cb791b8c4edc2194580828e4b69fd847c44c637b55e18f57819eec4f0a8
MD5 922320bfb05848e915f0c29a2195fb84
BLAKE2b-256 8f4ec6f2e3700b8364818f3472b5163450e87e07d26ba57297fa22617e66f6fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 136d6bddb136319e604fec8728dd7619d97b57a047bff565a9fe2f6ad5598ebe
MD5 23cc2e6ad338c277569441d20b0a9c54
BLAKE2b-256 4fb5b1e2ac585080ef489e55896d665c85be563dd4d117bc7effbb0fc9d57877

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 207.1 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.32-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8703c034fa090a3708dd972b90608e8eba029de5a6361fe73b8db1d118e6fbe8
MD5 5c5d89ef229ec79f3c2326a3c680853a
BLAKE2b-256 18721f15ba44b54393eaf1fecb2b95e6e0c2ff3638b7e74bbabc9b0943ed8d93

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 208.1 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.32-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4b7cf02f6e59ed10422e37d7d9e9144eca6b130efef9e402ebaece0f2e72b147
MD5 ad568a6f655df76a1af5d24b6716b4b9
BLAKE2b-256 50e6ed027d8885b2c25b411161ef96e8b0bb74ca117d654cd61ab0c92db08090

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp311-cp311-win32.whl
  • Upload date:
  • Size: 195.5 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.32-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e81a70cee9f948742577b04e23b4e0c4737365315d2690485b844c7db8d1380e
MD5 742bf158abf36852323218cdef770797
BLAKE2b-256 3cd31d1d64b2685456ea8e2be56278899503178ac6102cdb5c052eeaad7385c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59d1edfd5cfbafb8f9cfb11abbdef6a8c3f0216702dd12e03d4325d3db6134ce
MD5 28f023f3332a19e8547cc133d4a3a879
BLAKE2b-256 0fbde77e2a021263a171c5a42642e7cb21dc463db2c8fe0572d1ab78765c0ad7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 979695505e3e4a5fa3799452f1d7f967d8b3b2b7d7a86fa2a15a9718bf930310
MD5 0c42101d99929f7fe890ac93d307ec2c
BLAKE2b-256 2c5016e8e90ff3e1b1467d2d00efcfb67f7cf605f7dc845234c078873c3f7dbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7253d023b37d5c8562688d1bd1af8e558f4d4e635cf945fe3b699125a775769
MD5 cdcf72b7733f4da7ab8f88ab5454484c
BLAKE2b-256 303b920cdaac3693ab4fe8477d391e82be0ecb0491298e31c63054d6f7b8886c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4aacd83a75ab1792f3432f56d709dbff963f18f6752258ad0174d659e2e77314
MD5 5e9b70765f47652a5e1c23a4b74d37e4
BLAKE2b-256 5e8895a2dd99c75cafab25517bf88e6c60966a3ec1d906de5cb0cb2a59702183

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2bf2d304415085abab52e92bf62c4d7cc06825a31f963ee92a90a223b0c2d08e
MD5 0b5c0ddc7db8c5223b94d94411070941
BLAKE2b-256 e94a9662020da77bd826fbb106b9592ec12d807aed14a7daf0b20b0fdc80daae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 206.3 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.32-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 b2652e3fa0791f0a5095a04cd98c68c0c6844442f1e2fdf4c7f457fc72a9909b
MD5 b29d7d1f6cf7143ac752b0158489e218
BLAKE2b-256 fc34af51b1a3949d0ee260110377764e2b06ee29c7a607b31a74ff642c3d8ed9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 207.4 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.32-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 34f64201a72436da07252fd90373fad728c5ad6627637a6f9d029f119d353d3e
MD5 a6a3b1a043ff2ecf95e8c6d823fafcc4
BLAKE2b-256 b70835b0e3ba53ddf65c6eedf26cb6dc2f9619e5d5edf629d598a86af7165922

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp310-cp310-win32.whl
  • Upload date:
  • Size: 195.0 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.32-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2e549617b5d9a29b0c926d36e14121c8eb606f3802edef20b3e5a9f5df7cf40d
MD5 3e1aef6d2aa14607b0d09bff10dc917d
BLAKE2b-256 ac0b0264ccbcf233c33352cc581eb8bf4f424b0d91ec9274cdc7a3b797101323

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50acc560856e9c87db31783c342f96c376a8f456bad806c81fe9ebcda3421e1c
MD5 9b2506b6592df2c6d3fe03f7ee971651
BLAKE2b-256 36f9976f505cf80b91c326bcc4b55459895f033d28d1849b9f19b5ff6e78ecba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e5d37f4bdaae3c6d32b59fe08d2998012c7928fb954ef8afd6ae417f7309f13
MD5 b3850492241d5da19d4968715408023d
BLAKE2b-256 75c64c210067ad6b9567fa09ccd2a5276a87a29fec1e6cddddc07ee613ce4a58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c736dc351194549804ec3468984e683c27d17e3f47d54e20b4c8210a5172128
MD5 f54aae3fd82eefb8fd61874d3eb0fe73
BLAKE2b-256 8bcd1096ad4f03517c76fee01cdfc4b78646e056cad23b4a1d07ad0e151d4ba3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb864f3c8a48a81af6a6789cb289c5b753218bf857b1327431eafe48a36a8609
MD5 6b71009274de12d642052ad81c6009ef
BLAKE2b-256 d4fd70c4ce90b7b2bbcbca5e24fe3adae44edbadd742793113ce8fc85c693cf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05806c438768be16c39752dc5756fc5231dc545a378dfc83fa36784f54f8b3f8
MD5 20bd374a90e6734469c9fec38be2c88c
BLAKE2b-256 bcd2196827702cfc1554cf98556748d4381195e93b2f98a257f8d1f501a29315

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 203.6 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.32-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 f598b452c35952d5a5d913dc32f85a61260dd690c82ff2fa487cfa31084352de
MD5 8f2bbf355c663ad0d060179b52021f70
BLAKE2b-256 31a2897e2eb46473cb4f148359de73bef92bb0e03c8a1f20d6ad76974fbb9a5a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 207.8 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.32-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f002bf37c78af155103a49c84fe3f374f59c8d441b3cd7a5132f0f13bbfe34a3
MD5 6c27b218785a9a96ed83f33c1e82f91e
BLAKE2b-256 2aa6b1993464469af8a5ac722f2edc248d1c53790de8ecc1507d2df8376f2286

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp39-cp39-win32.whl
  • Upload date:
  • Size: 195.1 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.32-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 87a070cb6291fe09d5b2585eedc7775a040feb9af55d4b4df1e7af3119dd4b16
MD5 28691bb24ef79048da85cd6eed5729ac
BLAKE2b-256 e2e4f7b5bb0c603ed5febed6c2b0d1c057183e4669e460127f06e6a7c9f6d49a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db9131858ed32459762aeb6b8bd63a89785edc88c7bf5aa0b8d6627cb1d3560a
MD5 79eaf75c4208502bc0c680a9f54f06f6
BLAKE2b-256 4db49d60213c8e9873056dcb0df4098f021dbcd8909f28c4d01739ddbf53c46b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9c66b9247ec0d77da0997135efeef57b5fa1b442059b6129066b9ef7aa17000
MD5 885b372ce46975f8a1f32a904b32609c
BLAKE2b-256 4731fc1e2fba468e8a8925e678120a235a64b875f1b2a6ea6ac06cac1c64cc7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7f8e81d2a4758d5918c46bc0e8fe0a48a94c11e08c2be8b2417bf561ef42ba3
MD5 93cc419f8c5fda28c163799d02071246
BLAKE2b-256 bfdb20d546fd07498f2dcf9eaaa4fc78df5a08ee5a7a6d1499b200e407bab740

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b7e3eb2bc91b2e6df505e2e4ff06f1cd75c3fc9cc5d62e3dc6ee8fe22c36db1
MD5 17bfec0991e4af9baa56acd4b307bfd2
BLAKE2b-256 83f11a003edc1f131636aef497c1ce38d784517555062e77d71f6c954d03fb92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a482dd8380b1db3b092630b4f8caec2c72ed39e97c856a33ecc16a53087a5e88
MD5 2cf8dd489477492d108b69603c416003
BLAKE2b-256 21b3c54da4e6962234b490b1bd40cfa8ca2e0b2536e24a52a81c88fbd79cb7a4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 207.4 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.32-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c35cf993271cc6aebe4f85ac8a998abf9e943ba10d68fa7741e70faf465af5c2
MD5 5f5e5b0816668a8210624c46b1cd2d77
BLAKE2b-256 3f0eb62e345db8774d8f54d007a3ca916a4015d18df2b80d2801b0be6b528153

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nvenn2-2.0.32-cp38-cp38-win32.whl
  • Upload date:
  • Size: 195.0 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.32-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 491d140efc0043d4de845094c478caf04b101c86926e5aa519d0ec0d1c4a8db3
MD5 9119990a8ed1e209124f783259c909cc
BLAKE2b-256 d849b6d389d9a3bb25d5187171b1d90f884cb1d716762becb7be871682134e52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67ab77ddd37a7dd35b03ef7c4fcf58f1608e646fd4e769b34f4b2706325fa290
MD5 4e497e68ff996e0f2774eef0e8ee7930
BLAKE2b-256 17fbeede6bdbd1fce234f9e23dc131e9528914097b38569725d7672972b7d2bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 576be7cbfc1158aa03b36fdeaa7493e058fa09774877ba1dc1c52432a52426c4
MD5 a6c973bd5f89705e1044a74aaf559170
BLAKE2b-256 343ff385af04516419bc6b89e5681a490ce3ed708a598e6dcef1b6b17534c0c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f001a64426dacb72f8ff1752bf962cab494b8ecf37d945564ca32470c358779
MD5 3797514e3f74ac79bc056a8b20578633
BLAKE2b-256 ee64be858677e9615344cced6ff70d88a4da66c3ada29167f7d80f5f6aa8a9d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2669bd59d43b34bd449fd3df2af9dabf040320fed9315f1d38f16839090afa13
MD5 faf291cd1564789b9466fd44fd17b8cb
BLAKE2b-256 b9fca005efa0152a8b86974c22d709c6b65ecdb53e36bce127ff70a38e7b738f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nvenn2-2.0.32-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 878824d99a4c20511116ba12659e5e16f757ad2a5977944090e29a210bcf54e9
MD5 d6bae08f3150b984bf59bc991c2adc30
BLAKE2b-256 33808ac70ff816d0af7ee40d5d8772fc1a47c3b4a0cbb3cfbf86284bddd93901

See more details on using hashes here.

Provenance

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