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.1.tar.gz (569.3 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.1-cp314-cp314t-win_amd64.whl (296.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

upolygon-0.2.1-cp314-cp314t-win32.whl (240.1 kB view details)

Uploaded CPython 3.14tWindows x86

upolygon-0.2.1-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.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl (296.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

upolygon-0.2.1-cp314-cp314t-macosx_10_15_x86_64.whl (299.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

upolygon-0.2.1-cp314-cp314t-macosx_10_15_universal2.whl (592.1 kB view details)

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

upolygon-0.2.1-cp314-cp314-win_amd64.whl (250.0 kB view details)

Uploaded CPython 3.14Windows x86-64

upolygon-0.2.1-cp314-cp314-win32.whl (206.3 kB view details)

Uploaded CPython 3.14Windows x86

upolygon-0.2.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (275.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

upolygon-0.2.1-cp314-cp314-macosx_10_15_x86_64.whl (279.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

upolygon-0.2.1-cp314-cp314-macosx_10_15_universal2.whl (551.6 kB view details)

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

upolygon-0.2.1-cp313-cp313-win_amd64.whl (243.3 kB view details)

Uploaded CPython 3.13Windows x86-64

upolygon-0.2.1-cp313-cp313-win32.whl (200.3 kB view details)

Uploaded CPython 3.13Windows x86

upolygon-0.2.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (273.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

upolygon-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl (279.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

upolygon-0.2.1-cp313-cp313-macosx_10_13_universal2.whl (550.2 kB view details)

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

upolygon-0.2.1-cp312-cp312-win_amd64.whl (244.2 kB view details)

Uploaded CPython 3.12Windows x86-64

upolygon-0.2.1-cp312-cp312-win32.whl (200.7 kB view details)

Uploaded CPython 3.12Windows x86

upolygon-0.2.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (275.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

upolygon-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl (281.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

upolygon-0.2.1-cp312-cp312-macosx_10_13_universal2.whl (554.3 kB view details)

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

upolygon-0.2.1-cp311-cp311-win_amd64.whl (240.7 kB view details)

Uploaded CPython 3.11Windows x86-64

upolygon-0.2.1-cp311-cp311-win32.whl (198.4 kB view details)

Uploaded CPython 3.11Windows x86

upolygon-0.2.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (272.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

upolygon-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl (276.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

upolygon-0.2.1-cp311-cp311-macosx_10_9_universal2.whl (546.4 kB view details)

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

upolygon-0.2.1-cp310-cp310-win_amd64.whl (241.3 kB view details)

Uploaded CPython 3.10Windows x86-64

upolygon-0.2.1-cp310-cp310-win32.whl (200.2 kB view details)

Uploaded CPython 3.10Windows x86

upolygon-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

upolygon-0.2.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (273.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

upolygon-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl (277.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

upolygon-0.2.1-cp310-cp310-macosx_10_9_universal2.whl (549.0 kB view details)

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

File details

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

File metadata

  • Download URL: upolygon-0.2.1.tar.gz
  • Upload date:
  • Size: 569.3 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.1.tar.gz
Algorithm Hash digest
SHA256 f53194af72dac9da70b47dce8a3167d747f5c05d07a7384a2dfdc899b2904360
MD5 29b7b0f8102fc82940165d8b922ccea6
BLAKE2b-256 7de5049295379eeb6bccd9d9c222ee2ab01d7f74ee56203d5994b4fc929bc2a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1.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.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: upolygon-0.2.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 296.1 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5b2570cf5dca98bd0406b9638baf1810c97c7b5004816216918c67de10fd042b
MD5 5191e174973d705071d5b4675dd1a853
BLAKE2b-256 bc3cd72d46ed074c105b5e47b0980a8394b883d4f096788a6831cf43cffa5048

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: upolygon-0.2.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 240.1 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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 cb1a36bd03403e57add4c16b448bb9bd66e48491ca5448d95b12adfb964b744a
MD5 46aad5b5ba123f003c019223b65ee75d
BLAKE2b-256 d19c90a3cf9b1a5651bf96a7601220def946f622559368458ba46dc71745ba9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18f1d25f8f08b8490a7409a203b00e4e003f1b788a2d30e865a608918f456d75
MD5 24b1d62bb8cd4d98e39c4cd0f194fc94
BLAKE2b-256 094273fd9219b86caea7316323d5d3db5d39e93ffdd34d1d47be7b8c25f982ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6eb359e9e71b0bd36e8e2d9632baa6ff5f79a7902854523ae6f404ae1e4d56c4
MD5 b549920a4d4d21991c8f767ef2b73a22
BLAKE2b-256 b7a87fbcbaae9d46c9ce4424a55c8e387c4e57e1c3a7f282b35067a612762cf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 683089d8117ae29338568bda2440fc38c04b46d38d3691ccd974db3969a35cfa
MD5 59d3bc96e26a5086f42597454f94b90d
BLAKE2b-256 8002b7dc3d5937546784096915f75c4eb10fd74de9004ef2982ebce3d871ca11

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 835f8becdb18fcbfc3cb5914f26869f3e9f50298bc32bbd7f5ed2aad39371313
MD5 412eb83ca3766fa5bea9881878188bc9
BLAKE2b-256 9594e93c3d4c214be1cca0c32452192d5e5070318d22a121e1f13c0435c3e282

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4f6b887ef3f9cec5273472188ee9f0ad4f6e42983caf91dffc7727a79febff8a
MD5 379f729b3986162fa4f6048b0d903ed0
BLAKE2b-256 cce857fe26c65d2fae668c73bcdebaf8242ed6b83dc0b0640cda928c5e99402f

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: upolygon-0.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 250.0 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9c484c7713465490c623282e4f71caede0ece823e1c9644d7430d710677ae9ea
MD5 867d9ff9f4bab41f352de4c8fa83ef1b
BLAKE2b-256 e70eb68f23d59c4865d41048ae2e4e05910ae89b7fc73be4a0fa4af9d6f11383

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: upolygon-0.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 206.3 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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fd384751389760d698034fe95af66378d29668fcf0e5c62f85559564fdb3c6b6
MD5 fb952eb8f6c9e25df5acd820eba6ff32
BLAKE2b-256 61ffa7b418803ab4619d7ffdc26da911990cae45cf73ee6c31e3a2fbb4149792

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56bf8680739dd0a13862a394a9820c5c205125b69de463fdd1f89a6ec4d2de9e
MD5 d0531d0500428242ecf106623c0460b2
BLAKE2b-256 941def50b5038139220b76c5a96d318ee55888b91e0acc6a26344a4b68862a8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b9395bc028e4b6caec0ae32cfb5572eb414430f453de014a29bdc0ae61194e1
MD5 94d8989e8beb406eeb16fa365a90353a
BLAKE2b-256 3883e10a04be017d8ba3d897ebb017c6b5ff245d1814b33218bf6afe9c8074ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac78d58d866941fe96032f4be67f4be8a2664406a2900da0874a7f615df04adf
MD5 b5e9da4ccf991e7e6fbd812cdea37b7e
BLAKE2b-256 590be36e8a7756eddebc1b1dd9e1f40ff5e0a86c9536d02d8804f330f43aacf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1342fb3edd819f8ea8c9bcac21f24c997c64883e5f75a82d145cfe4aede2b059
MD5 f2cf5657fcd2e54a2b9ed21053032a97
BLAKE2b-256 f666dddcd547b48c02340759c31d39c16e8a9cc059928a7fcb59f6888a644f0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 262998d90a35010c0e40e69133791f348a771cfc5bbc0b0779306f003d5413cd
MD5 0ea6dbad75686aa11797d9571aa85dcf
BLAKE2b-256 935eb9005f1683f956fdc5dd028d9f856593367e7e99a4634e92951c0e6aa0e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: upolygon-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 243.3 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 65616e74521e9aed4cee5c200bea7ce3a2ef3c7f8fd3b687fcaf08a1377e532d
MD5 3ec88ede2fecf0abfa8f95f9d82e8893
BLAKE2b-256 226ff439681e05271f47e17035240120b77eea93d5415edf97fed15026a56345

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: upolygon-0.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 200.3 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 00501bd5c3fa8bc053807fc8a6d45696273820e12792bfdd6f4e72160983441b
MD5 46e6e3b7c78e4c4e840023d20156566a
BLAKE2b-256 f66b3375ab6c95e294f2cc1910a28ce59434a18f51fe16410006faa98b213aec

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a522dd16d6c6ced236586754a5f2f3579982ef8f7b35d3d611a3176fe015de77
MD5 e5de3622539474814db6d86deaf43cb3
BLAKE2b-256 b521023f0cb23d26dcdd9223572a26ac12a1142b4ed92e367d5945e6c07899fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 927deb65720ecbfa62ec7780c9d649ddb7dbcbe1fe112cfe146efc6f697d20d0
MD5 5c75d7246e880ef9d86e84453e0e8c01
BLAKE2b-256 d5f4d9dc8a3f24ba1b67d62f74f83204dac4897313fc35af642eda41f78729a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b7520713bb2d7233386f1a184e2a1a7c2eea0c2dcd66bf7891869efba4e5fc9
MD5 bf8863fe3f2111c3e33a11eef94c3969
BLAKE2b-256 dc88976d63f67c10c66a475d34de5094edaf7c2dada292ea07eb0a38b85a7742

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1287afc3e64a324fe2469273d4b5dd3ec835a0b552b29ebc0715cda1687f0dfa
MD5 b781cf38a281f2db8c6718d0b368246c
BLAKE2b-256 ecaaed31b1c95e06d495c514853039ac6d342bdd871ec6188127a83b71ae5e6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 35a1cda8cabdd55ec6ffae4395d094e30c03fd019e7c32f8b556741612d85fd7
MD5 2c454f147496b4b86b2d8f5213db9c36
BLAKE2b-256 c4edaa9608670ab80f889fb3bbbe0724e4733428d173679c8e34d2f4a88475ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for upolygon-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3355369bbb2d9d854df67f9de8d69d067b0073396c13eacb1dd419df3f9fd037
MD5 b0cb9f1db10de773035597e297806568
BLAKE2b-256 994231f160ce00db9d259e5c35b478a261eddd91b85206af2f3d14bc346d4231

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: upolygon-0.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 200.7 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 347b9925f9f2828bed3de0ce761389c6e2890d8560614e5bd533550fe0e7a829
MD5 26f1d146c5600fe28db4ad1593b415a5
BLAKE2b-256 a4099793529ba71c7400d400834a03bbc590536b589e92cd17d9bd5029551f65

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 221fd29b06ad60ecd200c0ca51a36b8cd7e47d72e107409129e272841ce362da
MD5 c5b325d868d7c7a908120f21ae4e516a
BLAKE2b-256 ee756264001f3de31d870c99e4cb1c7109ca5bbed29cece5cdce03e3c68e3797

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92e38fd9a7fc6b95be079709e3df848431c4c3fa5f2556fa7d585bc3e2ed5a8f
MD5 9b547668ef4b2acd693acf30b4e71dc5
BLAKE2b-256 d6f47530e924fc63d0c43629ac309c88347498d031ba2c4f7d86a82788e3e824

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0261ce5772bc386322b0a9d85750d6a666ddd2d05e0063197e04aab0889f2448
MD5 c6396d936b648a8b83c5d8174a592f30
BLAKE2b-256 1ddba749482ea6de5f5a791fcee15fffd38fbd8b4dfb14fbeb712962b5e79f28

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d6fd4cf9f63f3623e06073905f7c214091474544717edfde1863914e3512d231
MD5 c69854d53bdb711b028b2b0ad61836ed
BLAKE2b-256 7a05a25d9327311cb603606352238092346a9d271adedb4eb95bc10263635e53

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5406252afe51cbe241c430e728b9feafe4f30f99a4029607264dcd8849021aeb
MD5 e7ceb91a95c47c6508a8cfbf9fea5c52
BLAKE2b-256 7200d90ca77a279362467e142dc4c04c90c3cda5514e7c5935416a01abf20f0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: upolygon-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 240.7 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0b1d15973eb784df982eaf7a48ab8f09099a38bb2f9bb4b4d335c61fd1e93c39
MD5 e20009ece178a907a9b29f1007c9249e
BLAKE2b-256 4c23bf6f893895d8050af3dc8a14df6de710952a0a796f334a114617db7dcaea

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: upolygon-0.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 198.4 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 53b31a19c06d78f1b719a6302bfe924a6921fbde80094c6c029e14b94993ca12
MD5 61a4214cca007cdf3d0b3f9df4cccfcd
BLAKE2b-256 aef8118470b8598f0274867dc503e93d9b9c89459e7c1ce4094cb311a6bac87d

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1dc08575c0a6db27d8ccb12fec25cf2c47dc31cd8776b15ee07c8a0f9c0050b
MD5 ea311fc54ef4db984c19987062fef657
BLAKE2b-256 116c58f44f7be9b5cae62970a6508ce49f3417803ead28636c891270cb56c1f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5dbf4d07a1273356ddc717b303353644dc43e4169581885b08ee15ca95d6ffca
MD5 204763c0c165b462eb696cad5b08c8ee
BLAKE2b-256 fa8adab84b5d7de042e17c5a9aade6565d7846e43da15a4f10743d59c6fbb59a

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b505c9446b4ed5b43b951dfa38994693fd3292298579703915677b4e3bf04a10
MD5 52cde4418094a8a4c432cdda3edcfb1f
BLAKE2b-256 a5d48ca3e4cb874efb84d4ca5a1b5596fa7175b066fcf9e838e2a414e7791864

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5946178bf5cc6248522c179bf24dc0f21de987cc666f3ff8d7955c34a14d3183
MD5 a56013e6e8780942554167fc5fc424b9
BLAKE2b-256 951623ec5ebec961631618b1cf26e70a16460670599ffd003ba200319c185c39

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ab01a9e190df8240cd544c4fedf9bb5f87c14946cbdb62d9c2f15077831f7bd0
MD5 0d21d3acd44f3040e8bc7ae946e0108f
BLAKE2b-256 ddda8263d30138fda3577c8c91b05a03b163d140e0161328524b8d7eb7d8f988

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: upolygon-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 241.3 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e359d95876a9b49a7d6f57d1435bd350e8489d6a19441ae96bb1aad632276d51
MD5 c6131b330563a004ea7ffb1b13659c80
BLAKE2b-256 0790966fe231002dd125ea01a540b4163e79196a4e507173af8d13ae88950cb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: upolygon-0.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 200.2 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9beb716a7fa893273319e51bda282e2a4c32f189d8722b8cf7f5a59019e547ba
MD5 e555351225f032725f4546f604268c0a
BLAKE2b-256 65ffdab109a812e65ecb35ecd909b32e28b9eb9d1b1cb9ed3ea0d285699b8701

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b218a1b1c54a05b996f22270eb4f3d9f45a8ab5d2cfc3d31c617d2e1b10c84fe
MD5 83b5e1d4085000fcbac323241ae34324
BLAKE2b-256 a71f2502b592c9b43a3f92b446c443f49c968145164ffc79b856232e8d34e069

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a172fd51ec28ba9e71a481803da57127b38621ecdefc3d820170608c8eaba5c
MD5 a746606729ec341869dd49d2a05a438f
BLAKE2b-256 320ec16feaf124fce351ed32944c682293c1818ed850a3b5fec34b9ccc0addec

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edfa852850ad36b0e4bf89edadf8a1c3540f2127c50afde7c57ad67fbfe74407
MD5 b5a921e185b6ffaf36683d7055ee7413
BLAKE2b-256 9551ff0b30f2b534bd1d50ea4b35950b35c8e41fe66d5c32e514b5ccb8885951

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7be12aed08cc59c7e453b7029f09123c0d6994e04dd438925c297164f2ae1748
MD5 80f83fd0d3a8b4b073a66085a5fbac0e
BLAKE2b-256 a5f016fb7e3c018f8fa74d98c96cd8bce2cf78068ec96ba7b22d59743636be50

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for upolygon-0.2.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7a70c5331d28af75500f54b3a3b342b801089ae86f484e40fd0c3c9e201e18a3
MD5 0f7058976b6f2f3416b84233b7900c77
BLAKE2b-256 f47ce336ae13aed1a486be19c03f2fca1fb6a2c87aed1c22d8a9e4beeaf50c76

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.1-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