Skip to main content

Collection of fast polygon operations for DL

Project description

uPolygon

Library of handy polygon related functions to speed up machine learning projects.

It was born as a replacement for cv2.fillPoly when generating masks for instance segmentation, without having to bring in all of opencv.

TODO

  • draw_polygon
  • find_contours
  • polygon_area
  • point_in_polygon

Usage

This library expects all polygons to be model as a list of paths, each path is a list of alternating x and y coordinates ([x1,y1,x2,y2,...]).

A simple triangle would be declared as:

triangle = [[50,50, 100,0, 0,0]]

Complex polygons (holes and/or disjoints) follow the even-odd rule.

draw_polygon

draw_polygon(mask: array[:, :], paths: path[]) -> array[:, :]

from upolygon import draw_polygon 
import numpy as np

mask = np.zeros((100,100), dtype=np.int32)
draw_polygon(mask, [[50,50, 100,0, 0,0]], 1)

Equivalent of calling cv2.fillPoly(mask, [np.array([[50,50], [100,0], [0,0]])], 1) or cv2.drawContours(mask, [np.array([[50,50], [100,0], [0,0]])], -1, 1, cv2.FILLED) when using opencv.

uPolygon is ~ 6 times faster than opencv for large random polygons with many intersecting lines. For smaller polygons or few intersections, uPolygon is half as fast as opencv.

find_contours

find_contours(mask: array[:, :]) -> (array[:, :], path[:], path[:])

0 is treated as background, 1 is treated as foreground.

from upolygon import find_contours
import numpy as np

mask = np.array([
        [0, 0, 0, 0, 0],
        [0, 1, 1, 1, 0],
        [0, 1, 1, 1, 0],
        [0, 1, 1, 1, 0]
    ], dtype=np.uint8)

_labels, external_paths, internal_paths = find_contours(mask)

Similar to OpenCV's cv2.findContours but lacking hierarchies. Also similar to BoofCV's LinearContourLabelChang2004 which is based on the same algorithm.

Note that currently the input mask to find_contour needs to be uint8.

rle_encode

rle_encode(mask: array[:,:]) -> list Takes a 2-dim binary mask and generates a run length encoding according to the coco specs

~ 15 times faster than written in plain python

Development

This is a Cython project and thus has some additional development dependencies to compile code into binaries, as well as extra steps to build/use the project

Dependencies

  • gcc:
    • Ubuntu/debian: sudo apt install build-essential
    • Arch: yay -Sy base-devel
    • Mac/OS: brew install gcc
  • Cython pip install Cython

Local Testing

To ensure building correctly, set the Cython environment variable export USE_CYTHON=true To install and test locally, build with the following command python setup.py install which will locate the virtual environment activated, build and then install the local version to that python environment. Alternatively, python setup.py build_ext --inplace will build and install to the working directory for importing from local.

Each change to the code needs to be rebuilt before it can be used.

Interactive debugging

TODO

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

upolygon-0.2.2.tar.gz (570.2 kB view details)

Uploaded Source

Built Distributions

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

upolygon-0.2.2-cp314-cp314t-win_amd64.whl (296.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

upolygon-0.2.2-cp314-cp314t-win32.whl (240.4 kB view details)

Uploaded CPython 3.14tWindows x86

upolygon-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

upolygon-0.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

upolygon-0.2.2-cp314-cp314t-macosx_11_0_arm64.whl (296.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

upolygon-0.2.2-cp314-cp314t-macosx_10_15_x86_64.whl (299.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

upolygon-0.2.2-cp314-cp314t-macosx_10_15_universal2.whl (592.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

upolygon-0.2.2-cp314-cp314-win_amd64.whl (250.1 kB view details)

Uploaded CPython 3.14Windows x86-64

upolygon-0.2.2-cp314-cp314-win32.whl (206.6 kB view details)

Uploaded CPython 3.14Windows x86

upolygon-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

upolygon-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

upolygon-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (275.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

upolygon-0.2.2-cp314-cp314-macosx_10_15_x86_64.whl (279.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

upolygon-0.2.2-cp314-cp314-macosx_10_15_universal2.whl (551.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

upolygon-0.2.2-cp313-cp313-win_amd64.whl (243.4 kB view details)

Uploaded CPython 3.13Windows x86-64

upolygon-0.2.2-cp313-cp313-win32.whl (200.5 kB view details)

Uploaded CPython 3.13Windows x86

upolygon-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

upolygon-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

upolygon-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (273.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

upolygon-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl (279.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

upolygon-0.2.2-cp313-cp313-macosx_10_13_universal2.whl (550.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

upolygon-0.2.2-cp312-cp312-win_amd64.whl (244.3 kB view details)

Uploaded CPython 3.12Windows x86-64

upolygon-0.2.2-cp312-cp312-win32.whl (200.9 kB view details)

Uploaded CPython 3.12Windows x86

upolygon-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

upolygon-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

upolygon-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (275.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

upolygon-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl (281.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

upolygon-0.2.2-cp312-cp312-macosx_10_13_universal2.whl (554.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

upolygon-0.2.2-cp311-cp311-win_amd64.whl (240.8 kB view details)

Uploaded CPython 3.11Windows x86-64

upolygon-0.2.2-cp311-cp311-win32.whl (198.7 kB view details)

Uploaded CPython 3.11Windows x86

upolygon-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

upolygon-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

upolygon-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (272.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

upolygon-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl (276.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

upolygon-0.2.2-cp311-cp311-macosx_10_9_universal2.whl (546.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

upolygon-0.2.2-cp310-cp310-win_amd64.whl (241.4 kB view details)

Uploaded CPython 3.10Windows x86-64

upolygon-0.2.2-cp310-cp310-win32.whl (200.5 kB view details)

Uploaded CPython 3.10Windows x86

upolygon-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

upolygon-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

upolygon-0.2.2-cp310-cp310-macosx_11_0_arm64.whl (273.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

upolygon-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl (278.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

upolygon-0.2.2-cp310-cp310-macosx_10_9_universal2.whl (549.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file upolygon-0.2.2.tar.gz.

File metadata

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

File hashes

Hashes for upolygon-0.2.2.tar.gz
Algorithm Hash digest
SHA256 63014f283c9ea134ab1e8aff744635624826d3c5b97db1e60e7f6f1bbeec358b
MD5 4f7382e920d39b839380a870d163ae1e
BLAKE2b-256 41207cee352a65f110813210f31f91d9d477ec2d43711470cf8b65b63fd989d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2.tar.gz:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: upolygon-0.2.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 296.3 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 upolygon-0.2.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7cb466fe942f646ab6d28cda3ca3f370da76f39f7b00bd69c1938c96ecf58522
MD5 ec2457b7c01d7d23acc1f0d781d56b76
BLAKE2b-256 4a156e13e735c0ce53265ba758c1a8df827830050259f32d00d8f757bf98f4a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp314-cp314t-win_amd64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: upolygon-0.2.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 240.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 upolygon-0.2.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2a75e304c88c7c4146b8b01979d6fb84c6a3bd80945aec4148437a2b89939c90
MD5 20f0ccc52c229e1c95f83d32737edd85
BLAKE2b-256 16b94b77e136a70b4a773114b5bb801a3cc99abecc155217a670b80e00f56de5

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp314-cp314t-win32.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4943adccfcb7abf90b03322a322dafc57f22f1574d317fe5a69437c016ac571b
MD5 f77720c8bb2848983fa9646a914de9ee
BLAKE2b-256 85d71dc62fd28bbcebba6ebb5a6db6dd779b779db5677254b6c703f31aa5601b

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 835ee1e4b18c2323c612a85cb5859dfa51e7b316df2ed7fa320446e8232661d9
MD5 396a3e345cd0644d8c116596f814e907
BLAKE2b-256 f0398d21deab63c0e4ce1e2c765d268db0c8b875d3bab935754aa5d2bcc50f75

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40b944754eacbd310abed73e6bbc9543d640c4a0d960994027d8c6b673a3734a
MD5 2f549db59ffbac784868fef9e4109060
BLAKE2b-256 fe8d3888e972601301f247a598716e0d9ac0b558578f3b69046e0e45d849e5b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 95fccad67305a8adaa88f87c35cda1bc53db2a27dc207b710e184cedeea99cb8
MD5 84123e95c9c8abd9a2e3f456e7d24940
BLAKE2b-256 bb824ff472d008fb52848b37e85b1bef519db36d070bf75ae886cb8a35fb31f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 dd5b4948c483cf729a20791dbee4ed14fa26bb85f591f44d617c611d75379426
MD5 7da4d563d3ff9dc0b62cdb56ff57eb96
BLAKE2b-256 d955f978da5f486584d663b2b9a6e2ac2be5825e71cc813f811f1a7cb6632be3

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: upolygon-0.2.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 250.1 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 upolygon-0.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 861c2e1ee31537da7f98c39968d2182572d8a7f6d14b50e01f289db02de13ee9
MD5 b606e7dc659e9ececcc1aabf8536cd5d
BLAKE2b-256 04e8400653e9dc914c00047eb2b79e8d3e6dfc9220885054718e74b15cd73367

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp314-cp314-win_amd64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: upolygon-0.2.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 206.6 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 upolygon-0.2.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5066030d3ad41ddcd5d04ef489b789d242fb8321df6e06dd6c325e00f6ad60ec
MD5 bcb9abfc1c8e98fdf280a34f9a0e809e
BLAKE2b-256 6becdb38a111c48c640b603d97809c9a85b389432e162ea330c190ed0a423544

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp314-cp314-win32.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e27a24d60afec01f4bc3a650cbd07b74bde310724d4c9ff63bd5168dfdaf02cb
MD5 cb04b32663966995ae469b2b2a72c080
BLAKE2b-256 7e8f143844edc01fb5f8a0d5d59f8e5b159f6834669648af2d74df605f076c88

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43ac12ec4ada3bc4b242a3d97da857c9043381747b7847f4a8b94c4479cb6c6b
MD5 28d92eb3c1c973cf543acda714eb238e
BLAKE2b-256 d993fa04ee1b0f093eb2bcbb2298d9a373f27f69f7f5acced5659c7032603a8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64fd6c5f6fb366894a789bce632fa28262ffd2eb16a80315c4d086ba5a89ba3e
MD5 5d417b1c224d8d8f6a16d181f15696a2
BLAKE2b-256 56696929d2314856036c08b2ef07e86cfa9d6ce9085eaae126f35a1371e40348

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5483a244ec3ec07452dce2a68e2bc327747ac486a56021959f05157272a2bdc7
MD5 efa35ed4ee649aaf0be1b435ffa22ee8
BLAKE2b-256 98dc0c0469f8927c7e4ba3df1304b1063e4d7b7df261df0ec9ab5246eac17504

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 0aef4a53945f18ff9b2dad08a5044ffa4f02dbdc872b0078fb13c493965378b8
MD5 e34e858e12a54bc56bffd6dc6dce6ad3
BLAKE2b-256 f8b6b4813f76bc5e943e3a4f1a0991f0414ee1621464ecd43532f6c3b6367493

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: upolygon-0.2.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 243.4 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 upolygon-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2b7caaa70ad14820d40cebe6bd577d325c02b3e68aa27871813afd191c490370
MD5 3d836e8b088733021e1da7a0d503e469
BLAKE2b-256 579afad5713f518a8338760a40551e36e33254aa12963b70e03f5714bb2f03f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp313-cp313-win_amd64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: upolygon-0.2.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 200.5 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 upolygon-0.2.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 53e4fd5d1bc8a0aac7bdacabe2ed6009db203938d62e59edec481105abbb5c30
MD5 143a0cccada0e4316bd8eeabba8371b3
BLAKE2b-256 1d80c2fcbceec52c2a91a7b6099e15571cee598d40d32792acd5caedd7ff1c4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp313-cp313-win32.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 088b0d3343272f9b8084a2e32be63987341e4d881f0435b0086a55a386140cfc
MD5 7891a89fb26b0f8a61ea5fd4893e1808
BLAKE2b-256 ef9e1e579dd3b4d1814f7e1d87bd4a9cc16ef0491a3b11afadc5a63edf68d946

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5397765071a75aadbd4b1ec9019d9bed20428ded09851149ad441370d7792f7a
MD5 1a431c660c5f8ea36eb95481486e214d
BLAKE2b-256 dd83d59db40f9a9d9439d70ccd4840540a50264f6eb2f83ab4ee5ac19ef18937

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5398f5466c55d7e2f939518145fd6b2441d9ec739c49bba5c570d832cdaa672
MD5 c673235942b8b9f2c9319d733f380d52
BLAKE2b-256 3d0dfbc6c63ce43fe7a71a134ca54f7a1f696a9efe717dfdc3e6f124aaf530b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9c569f3d54ad168250b2e14af3b382da98b47ef798de080b49ef7d35674e569f
MD5 75dc812f13211bf2ca4c291be4b9414c
BLAKE2b-256 d1464eec3d471f5ccc06fc42069364b41ac52e99893c8689fcfc6e9133a0f648

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c3b01826ff5f5512e1bb9d10fd0ae1a7a56b3838b223ad673ad29fd34921be08
MD5 d14325819cd8e1798233d970a73ec8c6
BLAKE2b-256 9e0810d152404f319a162dba3cdd725fdc6b847e472131c5cbb9bc356872c4a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: upolygon-0.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 244.3 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 upolygon-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 08706f2f342d29c32208bc5ea5fbd72d281bca11ad78f7eb54d5e728fcc86f1f
MD5 ca33116f93f7e1bafc442000f9321add
BLAKE2b-256 15c2c2042adc325a904cbd1b50589b812a370f53f2552de26b45825590ea09f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp312-cp312-win_amd64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: upolygon-0.2.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 200.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 upolygon-0.2.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bd761c1406f81219f8405cc45723b7554936befa3359457eb138a5143db4cd58
MD5 78b814cd4375c4f5139ea2cf502deafc
BLAKE2b-256 0cfa7debacad57fb6152fe68d58a874ca55fbbac23fbe43be252e853415c83eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp312-cp312-win32.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ca633d52912e07693cb736c0ebe714f9d11dc7104ca25f7bd255350debe2d34
MD5 e5975cd9d89ab06ce5297dbb8487ca5a
BLAKE2b-256 67e8ef1a1ea62859fe8ad9310e2fe9e148b445212c501cfa6c7b44d6c3d92901

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a08295414bd41f4c33c4941e982201dbe62c486d73a42a188104b844ea3e793
MD5 078203ff39c14b41e2705f5235e6b2ff
BLAKE2b-256 7f13d641784bf7acaac69d8c0cc57802b5b4c6c21b505669ee3faaed00f79ed5

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b11651fdd01dca95ad9164b60f595095df941930275f3328f2e89e4a294f2003
MD5 32fa5f7ab3e0baeaaa7d8349f9f3f1c4
BLAKE2b-256 af3728d86a519fd6f7c0acad198974d450d685f2343a3a70c00ce59ea408acac

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9aa6d521b76a9b32e8d5362ef8ef97a10b39b3f1c6c5cd95ead313ee4f40c500
MD5 c3b171b1a01ad86f1a5507a8aaadf6c0
BLAKE2b-256 22f05f0563d944585621acee992b3db33495f2b877b2321ca44797d1a7a37840

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 638ef246283ba944ef7e1c77d167f9291bb08f29c195db5744a48e880ef6e1b1
MD5 4c606ea19b0ed450e162febc369e5f5d
BLAKE2b-256 2cc378ef463c5fec4b6dae64b3b303e4c2509c3ce31e8c282009a4b66145dd2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: upolygon-0.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 240.8 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 upolygon-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b18615c4be8624262711508b3babe2902b64c6ff39366d03845f118c7aba5f17
MD5 80f32f2172ff346f882356a9f883028f
BLAKE2b-256 2128505a7a806db274f6c68ce086dd9c3ebba7dfc9f1a7103691e2a567193e08

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp311-cp311-win_amd64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: upolygon-0.2.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 198.7 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 upolygon-0.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1ba98eaddd3dbc359d3558ec13268ae4796ebed7b445bd0fa0c501bb6c1f4452
MD5 16bfce8bf063c8a4eb9abcb7cdadb0ad
BLAKE2b-256 39c3f5d79acbd19bb859fa9296b46edb7ffffff97d33f0aa4b73c08830eac8a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp311-cp311-win32.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acf21884fed4e793ccca9712aa4968848d7c6dbca0b1600e52e3c21e0896faea
MD5 7c9ac741a950e49b5ab491b2efe9ebd4
BLAKE2b-256 a6f5bb54c3e1d15e2f49917ce4772d933cdc5d3e490b5d6bed3db2f609bf218c

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 337fc3cbe6a8e2271c03d7575072e775ff15b5e63c0ce1df624afdbdd9df64af
MD5 c3231688a907dcf62c4e210a84c37f25
BLAKE2b-256 68c83183c795d5d777566b6b40c3d64b4f94e46e61fc0e48eabf41a65bc5f76b

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab50d3cf3bcbcba301a2bee54bb679c6ecb58df129bd955f1d7f9e264c80455d
MD5 bb8beece29c8165d730534f38d8233c1
BLAKE2b-256 c7c342689e004f060c79e9e2da34e0b79ccd330394aaf1f3ecfdb05d15e2d3ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db874db2de65df0e0f0ab95cf64b48640cf408fef89e041b2b051adf445fb8c0
MD5 16b49a8a7548231ab9cf90cfb5bb86e7
BLAKE2b-256 30d952b78d2c1903176552dfdaaefba74cdf3afa426fa2da5e823eff5d4ec97c

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 aa39eadbf1e84bf748cc92e2d26642675e92baad016f0009e57a11a6177ea788
MD5 ad314121d3c76f0f61658baa5b8bce4a
BLAKE2b-256 0134a7ff9dac72b9dfd6752340c8b6f7461690695b8070da972520d36fa42522

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: upolygon-0.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 241.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 upolygon-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a0bbd5c0b0012fc7abd5404fa532db412cde6dcfad37df2f8b2abb3fd7f90c52
MD5 12c5f62b841904385ca1e36c4124cae4
BLAKE2b-256 515850f0c327d0c04946a827ac7530683e3037a656b96b3252b9667e256c02bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp310-cp310-win_amd64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: upolygon-0.2.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 200.5 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 upolygon-0.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cc5cb8803a133f420e0db7fef20679f57c58a8084fefe4697635e9bf2484e3d7
MD5 5410d6a00cbf5ab153ad7690e44f30ae
BLAKE2b-256 f7afa1dafbd11b2539ef317237ad6d7b8b7950bbb12079b65d7125c67c2787d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp310-cp310-win32.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8db787f1c41143e4a3928cbabd6aae56bce396ee3c1f1062aab761d28b350d6c
MD5 d4bc933e9de42ebe1f2befcd87a138a2
BLAKE2b-256 f0c326674c4621c670c0368b1ee12c209da8476d9b191d379da75298487780a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9ccbad8608022029f474397e823dce9a7ce610bff57c667c41ee3b3c490f973
MD5 0f5a1fc4f68b5734a773126d1127e61f
BLAKE2b-256 8b83911e124257152e78cc6157c304befd2cf5572ae6336a17f584a198bd8613

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2388c7b7e0aa2f3fb9eb59f6db802625cdd2c918bee633b151438de04720cba
MD5 3f14ed070c5831bea8188317a5974692
BLAKE2b-256 fd9be2856899d1e112ea737263a7874863be4d4bc0740fe6283fec35c6f0c569

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01bf663dffd0a3e0e7aaed6ab4d1a467de40ed7d7260ed38ad231f3ccd94f7e4
MD5 0975d60a513ce71d4f13937818c8d951
BLAKE2b-256 edcce1228300ecb5affe958da20ff555f16743ae1c91085f7ada6b619246531c

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on v7labs/upolygon

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

File details

Details for the file upolygon-0.2.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for upolygon-0.2.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4c4fb809a9b584ade7cb2911df59acde83d8fdafeedef6943e8630a776e04a47
MD5 42be3316aeb47d5b0d08b17ece3d3413
BLAKE2b-256 7a2b91a99791fad84c0d3f769d3a0c9778021f1729b8bc55d5937f318d372414

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.2-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: deploy.yml on v7labs/upolygon

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