Skip to main content

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

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.3.tar.gz (577.1 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.3-cp314-cp314t-win_amd64.whl (270.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

upolygon-0.2.3-cp314-cp314t-win32.whl (223.4 kB view details)

Uploaded CPython 3.14tWindows x86

upolygon-0.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

upolygon-0.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

upolygon-0.2.3-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.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

upolygon-0.2.3-cp314-cp314t-macosx_11_0_arm64.whl (299.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

upolygon-0.2.3-cp314-cp314t-macosx_10_15_x86_64.whl (298.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

upolygon-0.2.3-cp314-cp314t-macosx_10_15_universal2.whl (594.3 kB view details)

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

upolygon-0.2.3-cp314-cp314-win_amd64.whl (248.6 kB view details)

Uploaded CPython 3.14Windows x86-64

upolygon-0.2.3-cp314-cp314-win32.whl (206.8 kB view details)

Uploaded CPython 3.14Windows x86

upolygon-0.2.3-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.3-cp314-cp314-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

upolygon-0.2.3-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.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

upolygon-0.2.3-cp314-cp314-macosx_11_0_arm64.whl (280.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

upolygon-0.2.3-cp314-cp314-macosx_10_15_x86_64.whl (280.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

upolygon-0.2.3-cp314-cp314-macosx_10_15_universal2.whl (558.3 kB view details)

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

upolygon-0.2.3-cp313-cp313-win_amd64.whl (241.5 kB view details)

Uploaded CPython 3.13Windows x86-64

upolygon-0.2.3-cp313-cp313-win32.whl (200.4 kB view details)

Uploaded CPython 3.13Windows x86

upolygon-0.2.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

upolygon-0.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

upolygon-0.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

upolygon-0.2.3-cp313-cp313-macosx_11_0_arm64.whl (279.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

upolygon-0.2.3-cp313-cp313-macosx_10_13_x86_64.whl (280.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

upolygon-0.2.3-cp313-cp313-macosx_10_13_universal2.whl (557.2 kB view details)

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

upolygon-0.2.3-cp312-cp312-win_amd64.whl (242.3 kB view details)

Uploaded CPython 3.12Windows x86-64

upolygon-0.2.3-cp312-cp312-win32.whl (200.8 kB view details)

Uploaded CPython 3.12Windows x86

upolygon-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

upolygon-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

upolygon-0.2.3-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.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

upolygon-0.2.3-cp312-cp312-macosx_11_0_arm64.whl (281.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

upolygon-0.2.3-cp312-cp312-macosx_10_13_x86_64.whl (283.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

upolygon-0.2.3-cp312-cp312-macosx_10_13_universal2.whl (562.1 kB view details)

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

upolygon-0.2.3-cp311-cp311-win_amd64.whl (240.4 kB view details)

Uploaded CPython 3.11Windows x86-64

upolygon-0.2.3-cp311-cp311-win32.whl (198.6 kB view details)

Uploaded CPython 3.11Windows x86

upolygon-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

upolygon-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

upolygon-0.2.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

upolygon-0.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

upolygon-0.2.3-cp311-cp311-macosx_11_0_arm64.whl (278.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

upolygon-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl (277.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

upolygon-0.2.3-cp311-cp311-macosx_10_9_universal2.whl (553.3 kB view details)

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

upolygon-0.2.3-cp310-cp310-win_amd64.whl (240.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

upolygon-0.2.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

upolygon-0.2.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

upolygon-0.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

upolygon-0.2.3-cp310-cp310-macosx_11_0_arm64.whl (280.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

upolygon-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl (279.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

upolygon-0.2.3-cp310-cp310-macosx_10_9_universal2.whl (556.9 kB view details)

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

File details

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

File metadata

  • Download URL: upolygon-0.2.3.tar.gz
  • Upload date:
  • Size: 577.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for upolygon-0.2.3.tar.gz
Algorithm Hash digest
SHA256 636f347cc5a0d5359d39abb50c5b056dd9ff4d25c8775e0d8838d27f4bcd5394
MD5 10cb344fabaf1c2741e7a43ecb54ec41
BLAKE2b-256 0e5b4f6ce2282acb7e9aa2bc18a469f09f00b84ba6f7e172e6771fb71912e01f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: upolygon-0.2.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 270.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for upolygon-0.2.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 62b302f88ef0deee8d92cfab2a707dbddbfe8af169ccdce48eb947db6810c655
MD5 09079cef50d1d2820226456f6dbb5592
BLAKE2b-256 0bad84b4780de185d5f9045771caf34a1f4d3826d37692627728eadc84b3ec6f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: upolygon-0.2.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 223.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for upolygon-0.2.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a81fa9db7e00eabdf7f4c7bbfedb2550d04eeebf3227d86d70890dc6e39a8a12
MD5 3e13d7f0ddc16cc8617a9fe466ef26aa
BLAKE2b-256 7c8a2ac083277d5c0e439a09183f5118c47ef36dac1dc820ebabe73e0e88c673

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 159140982102677830381b7efdd319cea248faf6d7f83ba9b0542802ded2adef
MD5 8967d767e6db94d4dc216c752cc57e09
BLAKE2b-256 ed784c926cd3dc7eb796472f5705a0ea95d712b8c03d33ee5b52097e77ef27cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-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.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28e87b7c0ad8d96b8451923d3fb2b120efdc515b2b5ebc9b9b092f395aab00b8
MD5 ee957b12894adee6915b300901d7ab12
BLAKE2b-256 4add39de08f4aab85dc0450a7c18ce3a268f16f24f88d576f1f1004600b57cd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-cp314-cp314t-musllinux_1_2_aarch64.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.3-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.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7785ab0014769e758ab041cd62b6243206ccdc778a9b9c6259878feab310665
MD5 d1c8d78bb7323a9055e4f8f857b99ffd
BLAKE2b-256 146b8158365b44b245e11e764ec232b9ed979614dabcb7fe02a331f3c4315480

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-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.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c16faac6f755d180dc078f31bf7c629824b8b818748e1bda868c53cb3eeef0d
MD5 911ae891bb490b1878f3e400e852e8ac
BLAKE2b-256 7008a199161d7e590aed351a628fe45b959c978179d9653e3861f2444170474d

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc347bb4c6e6a26027544639b79e273f1374dbd53d827e13a8762bf2f49b7b5f
MD5 4f88bdcc3562c9d89ea2040ff739f624
BLAKE2b-256 c51b5f03aec1b77712b1d23d32110c3a879fb347a05773c0af6cdb2cd5babc3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e81c71919f71b39bfb25a9d5ec3b58b5560b3532f0e2e750ec78ded59e75d783
MD5 72480b717e04242a28d7ac8fcc6dcd51
BLAKE2b-256 0dc63b72c62f86d81365107b2395c61d3787af4f7a56e05ec216890e61af698f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a26dcf89b2b0e4a556a2273e5e0459e7d108b4905d0645be9abadda8318bd3af
MD5 9a36ee653651c3572f7b10fb9fc660ba
BLAKE2b-256 552366385b01670ee3ba3a405f6707d20d34d4aa519e410a45bcaafcccd82ace

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: upolygon-0.2.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 248.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for upolygon-0.2.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 69fb9947b9aa2043b90baa3aee40c05a78ad3161792ecdfacb2940dbac2ae757
MD5 9b535344c0c042865280cf17837aec08
BLAKE2b-256 76f036ff357475fd32406e9f8970c5c9ad8269026fae921c2ef2f28d5e34e441

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: upolygon-0.2.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 206.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for upolygon-0.2.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6051c32fd883bdb61fd62b7177040e582c02daf211614337eb3a35bdf3b8005d
MD5 c21141d79919a5d00b68498b65cec4d1
BLAKE2b-256 3989ace8e3ee1657cbc8f9c90f606182976f79aafe64cdb02430e92135f2ce97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68e53eaa4f5c225130a0c07bb3d6d564033b0eca3c1171e9edf391afa136f665
MD5 eaa89e5ee1bf7dd80f1b9c0a67b59361
BLAKE2b-256 2b78f3b013bfa9cbf86960ed5ceaffbeaf4a6d7b1358f1938823c8449f62479e

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-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.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 041b6b0b1bbbe27d39f6a3334758432fcd239bd8f29f91889cbaa39438cca465
MD5 f6b016b76725e69c9741d6e945937a9e
BLAKE2b-256 ed953ed09d4750dd9568cc11d7341bc9defef6ef14a53b8b3d39716ef8a830e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-cp314-cp314-musllinux_1_2_aarch64.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.3-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.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53b77faa329fceee89f84f755434e266063dd5bedcaed8e8d3b95bf64341686d
MD5 b71bdb0626cd6089f85acbb645fe923f
BLAKE2b-256 3abac7c9bd25d8e496e27ab2b1a77da5f5ecb88e2bfab96095edabd1f2c334f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-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.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8362e0570a1851b612f1f5246d17f11a1142ff20c5f8d7a3c71f96f460e55036
MD5 bd00cf03fb29947ec207bcb108717266
BLAKE2b-256 e437864f4ca5649bcb5c5736d0317f2c57a22abc0f8d5bc9d60b3053c81903b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4242ef744d486b4f106a38738b980b4aefce9d1c73107d3dc1a5574673c309a
MD5 01acee7b77d643b6749e5fb5191a0d10
BLAKE2b-256 978982506e8cd0c1c7fbb161165aeb36c783989d05aa161cfa2fd1f7b5e3cee2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 35cfea7215c4d202f74ff7d157da8cdfc04fc133cd14900fbb0eb2a86d7b81e2
MD5 5350eccc8808615f9629b1d07e673f41
BLAKE2b-256 55a360c9fdc38ee8be644a2160e671953fdde8df6a71ec13d128cb67c3314d8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 db8744b60131d8583a38a274e8291d0cb5c79a1cf1359ce55a747378d4a47ac8
MD5 23eefdf60c5ecaf476171d01193ed2c3
BLAKE2b-256 4b3e38b803b40f3f93cee93a377bf3cb93b3d5b77ad89364fe19d26505b3ddf7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: upolygon-0.2.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 241.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for upolygon-0.2.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f2beff46e754ef3b4266ac90b968f62fdce5a64fd6d810819d8f433ce24c358c
MD5 7eeabe539b2c6172e1630ae9346d7e64
BLAKE2b-256 087b71ad73e62c36faee82e2b74cc3022f311631d89c2fbe119ffe9732ac427e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: upolygon-0.2.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 200.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for upolygon-0.2.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 70b401778ac75856385062259401535861c19eb097a72769795b922c417a9948
MD5 7f3deec7f3df1889f3a85fba4ca17bf3
BLAKE2b-256 9849a0815369e2f38de49cf81ca253e86a29bf5c72fde843f3c9f4b9f933aa73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5dde9e8c98f88247226da129daffddd9509323487af0a6c7be48f8687aee191
MD5 7ba1084545fe388d0acbf31c31ca359c
BLAKE2b-256 4d82655063d3eec4b3d02d0d547525f82e520cebf76bb338293f681ae9c33ecb

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5924b83c377ff9b3d50962c05d4c5e888395dc8ca228cb7969a5181e6f6fb25f
MD5 cf9ce770c07b378f4fff794b0e11fa44
BLAKE2b-256 3ecfac442490cb1b453e4fd9d5cd94e98ca78ce2710b94a9b5fcd5b77db88d0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-cp313-cp313-musllinux_1_2_aarch64.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.3-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.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d61e35cd4c9adb41e132810057a683faf8c60b284bf8f02bf9a105fd2d128bed
MD5 bb37d72a240b4cc220f3f94a4efa98c2
BLAKE2b-256 9bcb3069399965302f040f5a9c87a9f556af8cac43713488bfdc7be3e934dc51

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-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.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0889bb82c67cf49c74a2114715fb93959695d240857b7e00277336e05060b881
MD5 84619caa915788398d746fc652beb468
BLAKE2b-256 dfae234cbff6018af9cb0805cd711e489a6da6cd620add22dd6cb021b928c700

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4331cc66561359348618b85a883719392c8c2494cd23c7811cce4cd0ff4c2dc
MD5 bea88ed6ea30c7c7697c0b528d0f25d0
BLAKE2b-256 1a1b2bda13108be5240d5387b59893676a8aeaf812e16fd2dc051f34856ae42e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 34980142eeab08c3d52071d9af3ce474b5a8ac9511872ad8adc6408300fdcbb1
MD5 c71e8d4c3c7625446a53acad4be9bca5
BLAKE2b-256 2d2b5a47ec532024c1898b8c1a1212c17e7ff6626f77a1e4c896aea7e9298942

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 14d20ae76a2f299d64ca02353ca251e95664a0046d94a03ca29a0ceb6881c7fb
MD5 0a06d67982fb3174b19e18099a04da74
BLAKE2b-256 44736bb06c49edb5185dec1b698058b865e623c3ca8fb4e903e95dffe6abd344

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: upolygon-0.2.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 242.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for upolygon-0.2.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 67d471fc3b2933b110b570afb4d21c28803339b2bdae099fc50dbc602bb76fac
MD5 7946b531152c89f18834792c1d2dac66
BLAKE2b-256 d8d5cd7040be73844516d75d715daf0e99551dcd9f3ad5672ab0b1eab5a02122

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: upolygon-0.2.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 200.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for upolygon-0.2.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4bd515ce936061efc2430c7a9be57431d68c1e3b73ec1e9c8b4577711b9e3df8
MD5 7825371e4071fa5bfbf145df2acefc26
BLAKE2b-256 91b36c2bb3fc54fba948a346c974739d9a824ec91e50cf8dcbef07b20523af33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 017a894a52e199b620f25a7494399e927c6202e1761d2e678b83d0e85b9b8049
MD5 a47814e20063c34de36cc015cc083170
BLAKE2b-256 c8dc85ca61f6220f91157730c3a55421aafd7b53b8be5b9df902ab6d15191870

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f33642b3790156c4f8e6a5c11075c3a9ca05bb575afc829ecc186802f95aaba
MD5 44b6fb8425f69ccea7fc6842f12b25ba
BLAKE2b-256 c01aad6ac6d2b10a527919597e35a89e425e01e2d8afb8c70041f5b21491dcb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-cp312-cp312-musllinux_1_2_aarch64.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.3-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.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90cac73616b620cbd417236cb15ebd4c079f4a1b956e3735611b16f77b916c15
MD5 5dcdcf0369e7fd625a1756b5de8ac66e
BLAKE2b-256 164e4d2be26422571350468b6c3bd5c4721067cc27d5a4bfacaa0bdb3c0bf12b

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-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.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f878ea3194987ae0969378940622fc2376c8b317ee56626f36c025346ccf19b
MD5 2f953ca1327fcced3bbb09716b013d76
BLAKE2b-256 cb1b9f9accc3e8285fedaaacab175edd161d9cb9cb0505db53cc08a63cfa57ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38a89364fcd01d79b1a00781f04f4cf7c224905d9c4757f549a790ef046f75b5
MD5 a7d3e0b561a2f5650462ffd558210eb6
BLAKE2b-256 aef3583528c1ed04f334ed9408bcf4185b4a9443b4ff187218d5bbe1b99b69fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0134b0b19e90a91793678f56bd6c660f06e2e0c2cabf1f1e4edab0443a4f5802
MD5 b8ffa4abf3e7629fca01a135901a533d
BLAKE2b-256 66ae2f6e81c7a9dc739d425e6bb44ace6fb72b387c8b2de50fbc7b6014634f44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 035e4d08e816c2a73f5c40210ebf31188e9e724bbf0eeced0ba0379247a6ef89
MD5 53e794c06639bc8ae915863bac73ead6
BLAKE2b-256 52700bbaf779f15f4b40befe3dba93353e8cbe4d1a3279bec620902388377c3b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: upolygon-0.2.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 240.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for upolygon-0.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ebff380857430fb0bc0bc66e48a8c0fbbd13c43e68e0799ed0b5f7c778f89473
MD5 0b342d42e8a508739e1b6a8bc34f43a2
BLAKE2b-256 4db7f71a74b1bf4dc8c47dfdbb8d560b72d7ef3ba64ef0d55dcd21a2727b16dc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: upolygon-0.2.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 198.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for upolygon-0.2.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1e2a4e17b19fecc3da300ff5c7c136da59cb53bcd41df002498f5c56cc646462
MD5 7159245af21b10e12d7f716405057e2b
BLAKE2b-256 785071438e95d45cf32bd317118bd54830953cc045a989f9e6c9054ba0be0c47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3aa7d523533314c10ef0d3662907270408167f9085ef241635641eab76111bdd
MD5 8c349776b341f1644adc22ec82998e78
BLAKE2b-256 b0e0b57e225257d280dd7cf1bbff7bf8bebb4e46c09e81cb306ae1a97604d883

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcaaaac5a6c9b227a4d8892f9d322e36ce236e757e62bbc33eb374e2faa5b08a
MD5 7122a8c11f76b373802e2a840f5ca6d9
BLAKE2b-256 ec220dceeb8f1e807e4150793bf953d045ec2a2bf4820b32f0bdaa42ea833667

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-cp311-cp311-musllinux_1_2_aarch64.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.3-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.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff3e4e36027bd10ace7c1d20879454f6080b7a04f6c71f4d398ca89537c924b6
MD5 25f31a0da6706874253f42e50e147264
BLAKE2b-256 34f8b18f17d2043948a2ad317866b703e95ef349ca343e5c0d2129dea615131c

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-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.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c154f17bb059bb71511cb1d0fa107239a9f28ea361f5c2e8dabab768d0529b6
MD5 de771396db7af8fce1ee6cd8486fde42
BLAKE2b-256 3f80897fe2b60243d5e048b0b58915d1b86dfc2b087cfb030ac7351de9916366

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0720eef558ffe5e365860aa2c756cfd8fda991ba585c559870b5061e0f2d3147
MD5 b1439f77aca303bf36f40b31334715f3
BLAKE2b-256 bfc9f23585e955eb696d5c6ccd5eb8d4d03f25db1ed624d1be93e1523aeb3a13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0a70efa7a705815ebe6f06eab2ae6a0dda530232450765a4869f13edc19fcae
MD5 bd8ec32c1b7717770bd5c1c3734c1163
BLAKE2b-256 1898cb79584b11203486c21ec89be6311a5c2974b1bce207102eeae324bdcf96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 861fb26a2ec1c3d8fc497cd82f504caa98c08295215afadb8f454048d3a8a577
MD5 351b61f63e508a7d8f944bb05fd4719f
BLAKE2b-256 9113bf4243917e6d3a415b2f249a083933a0ad1436bdb1be6341bdd2f700f333

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: upolygon-0.2.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 240.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for upolygon-0.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a797ac41beddf9a7d315bd58a3768b79087fe16ff6ae9a9eab06ef184a6b9a43
MD5 ce5477a07d1b6d2f1089dec7469fe939
BLAKE2b-256 4d6436b88cbdbffcd67d6430e5ccdd90810c13c96f3866f3d1629c1891cdc2d0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: upolygon-0.2.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 200.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for upolygon-0.2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 280234221671cd0f0a1eaeceee71d1b9741b1e4c9133114d05d513fc900daf8c
MD5 797526fa6f125169577279bb58b26456
BLAKE2b-256 375c1df88f9672c522cb5d23b85dbd3e423ac1e9d96b1c7b11d6fb72c63b14bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6a9d1f824347300cb772e1d66747302185e5794ab345d41be473f8f66decdba
MD5 b1b6083a152b9353af1b4764a9d109c1
BLAKE2b-256 6e877a24699d6f3aa894d75164ab6ca8b22beb652128f5fcc08d343b5056bc53

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03a05add58310969e34226a7db7196d50fbb78bd7d5706e590fd8b91cde8f9a4
MD5 7ded1c7cfb7527097af24a8e184f191f
BLAKE2b-256 12ab712280e105c02c3ae6b097a5c2417b526fac5437b9fb2511e6c938e63d39

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-cp310-cp310-musllinux_1_2_aarch64.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.3-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.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d27b000cdf5fbe1dfff62248abdb429739be5a9f777d8d8233c301216d998f0c
MD5 715ff6446337e10a42dd046ed56290ba
BLAKE2b-256 6b100842b68b092d18c13eaf29128f6c17d8e4b8e09a6752ea82785f07ba9d42

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-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.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f278ef3531056b2e394b8426003b901c13e633f8468fc127939dfefea66747f
MD5 abff80497b4c7537c2aad493ef18b7cc
BLAKE2b-256 78e60a8a01fedfdf3a95c0a86bd64b47ac680fb59c815809a8c1dc8b98025a09

See more details on using hashes here.

Provenance

The following attestation bundles were made for upolygon-0.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for upolygon-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f93dc0623497aaa2bf5aac60d68e5864a46a1224f2d09810add425cdcb41cd49
MD5 c9d6891f434531670b35b3c9d4a6dae0
BLAKE2b-256 3c0eaef7d62da9b01b4971b67ac61e2a1ac0a2449da6c5aae2a9d0ea8d89ac5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84e73377bf7544278af33e568ab6a3fe8ca55ce9822b3de5ff8aab3e14af50a4
MD5 abdd712727d4ae78dd0fadb1e702c1cc
BLAKE2b-256 ba796f1b9d13ea5687d4f920b145f02328ec7813d6f516aee069cc18eea26bd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for upolygon-0.2.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ce287abd012afc1d9e83ddee6914379086d33cc524522addb04e6524b367fa28
MD5 49a2a5edfb496e1af3a762f251546235
BLAKE2b-256 e382d73cd5d1352b38ba093e574537369f0754c53f472e8b8f79a116b4bbf982

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

0.2.3 This release

55 files

0.2.2

43 files

0.2.1

43 files

0.1.11

43 files

0.1.10

9 files

0.1.8

16 files

0.1.7

10 files

0.1.6

14 files

0.1.5

14 files

0.1.4

4 files

0.1.3

4 files

0.1.2

10 files

0.1.1

10 files

0.1

10 files

Supported by

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