Skip to main content

mapbox_earcut

PyPi version

Python bindings for the C++ implementation of the Mapbox Earcut library, which provides very fast and quite robust triangulation of 2D polygons.

Original code: earcut.hpp

Original description:

The library implements a modified ear slicing algorithm, optimized by z-order curve hashing and extended to handle holes, twisted polygons, degeneracies and self-intersections in a way that doesn't guarantee correctness of triangulation, but attempts to always produce acceptable results for practical data like geographical shapes.

Provided functions (depending on dtype of vertex data):

triangulate_float32
triangulate_float64
triangulate_int32
triangulate_int64

Example:

import mapbox_earcut as earcut
import numpy as np

# A Nx2 array of vertices. Must be 2D.
verts = np.array([[0, 0], [1, 0], [1, 1]]).reshape(-1, 2)

# An array of end-indices for each ring.
# The first ring is the outer contour of the polygon.
# Subsequent ones are holes.
# This implies that the last index must always be equal to the size of verts!
rings = np.array([3])

result = earcut.triangulate_float32(verts, rings)

# Result is an np.ndarray with dtype np.uint32 and shape (3,)
# containing indices into the verts array.

print(verts[result])
# [[1 0]
#  [1 1]
#  [0 0]]

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mapbox_earcut-2.1.0.tar.gz (46.7 kB view details)

Uploaded Source

Built Distributions

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

mapbox_earcut-2.1.0-cp315-cp315t-win_amd64.whl (291.1 kB view details)

Uploaded CPython 3.15tWindows x86-64

mapbox_earcut-2.1.0-cp315-cp315t-win32.whl (283.6 kB view details)

Uploaded CPython 3.15tWindows x86

mapbox_earcut-2.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl (175.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

mapbox_earcut-2.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl (170.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

mapbox_earcut-2.1.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (75.6 kB view details)

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

mapbox_earcut-2.1.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (72.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

mapbox_earcut-2.1.0-cp315-cp315t-macosx_11_0_arm64.whl (67.7 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

mapbox_earcut-2.1.0-cp315-cp315t-macosx_10_15_x86_64.whl (70.7 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

mapbox_earcut-2.1.0-cp315-cp315-win_amd64.whl (289.2 kB view details)

Uploaded CPython 3.15Windows x86-64

mapbox_earcut-2.1.0-cp315-cp315-win32.whl (281.0 kB view details)

Uploaded CPython 3.15Windows x86

mapbox_earcut-2.1.0-cp315-cp315-musllinux_1_2_x86_64.whl (174.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

mapbox_earcut-2.1.0-cp315-cp315-musllinux_1_2_aarch64.whl (168.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

mapbox_earcut-2.1.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (76.9 kB view details)

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

mapbox_earcut-2.1.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (73.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

mapbox_earcut-2.1.0-cp315-cp315-macosx_11_0_arm64.whl (66.5 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

mapbox_earcut-2.1.0-cp315-cp315-macosx_10_15_x86_64.whl (69.6 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

mapbox_earcut-2.1.0-cp314-cp314t-win_amd64.whl (290.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

mapbox_earcut-2.1.0-cp314-cp314t-win32.whl (283.5 kB view details)

Uploaded CPython 3.14tWindows x86

mapbox_earcut-2.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (174.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

mapbox_earcut-2.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (169.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mapbox_earcut-2.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (75.5 kB view details)

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

mapbox_earcut-2.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (72.5 kB view details)

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

mapbox_earcut-2.1.0-cp314-cp314t-macosx_11_0_arm64.whl (67.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mapbox_earcut-2.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (70.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

mapbox_earcut-2.1.0-cp314-cp314-win_arm64.whl (464.1 kB view details)

Uploaded CPython 3.14Windows ARM64

mapbox_earcut-2.1.0-cp314-cp314-win_amd64.whl (289.0 kB view details)

Uploaded CPython 3.14Windows x86-64

mapbox_earcut-2.1.0-cp314-cp314-win32.whl (280.9 kB view details)

Uploaded CPython 3.14Windows x86

mapbox_earcut-2.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (174.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mapbox_earcut-2.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (168.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mapbox_earcut-2.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (76.8 kB view details)

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

mapbox_earcut-2.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (73.0 kB view details)

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

mapbox_earcut-2.1.0-cp314-cp314-macosx_11_0_arm64.whl (66.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mapbox_earcut-2.1.0-cp314-cp314-macosx_10_15_x86_64.whl (69.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

mapbox_earcut-2.1.0-cp313-cp313-win_arm64.whl (448.1 kB view details)

Uploaded CPython 3.13Windows ARM64

mapbox_earcut-2.1.0-cp313-cp313-win_amd64.whl (279.4 kB view details)

Uploaded CPython 3.13Windows x86-64

mapbox_earcut-2.1.0-cp313-cp313-win32.whl (272.9 kB view details)

Uploaded CPython 3.13Windows x86

mapbox_earcut-2.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (174.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mapbox_earcut-2.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (168.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mapbox_earcut-2.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (76.7 kB view details)

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

mapbox_earcut-2.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (72.9 kB view details)

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

mapbox_earcut-2.1.0-cp313-cp313-macosx_11_0_arm64.whl (66.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mapbox_earcut-2.1.0-cp313-cp313-macosx_10_13_x86_64.whl (69.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mapbox_earcut-2.1.0-cp312-cp312-win_arm64.whl (448.1 kB view details)

Uploaded CPython 3.12Windows ARM64

mapbox_earcut-2.1.0-cp312-cp312-win_amd64.whl (279.4 kB view details)

Uploaded CPython 3.12Windows x86-64

mapbox_earcut-2.1.0-cp312-cp312-win32.whl (272.9 kB view details)

Uploaded CPython 3.12Windows x86

mapbox_earcut-2.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (174.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mapbox_earcut-2.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (168.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mapbox_earcut-2.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (76.8 kB view details)

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

mapbox_earcut-2.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (73.0 kB view details)

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

mapbox_earcut-2.1.0-cp312-cp312-macosx_11_0_arm64.whl (66.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mapbox_earcut-2.1.0-cp312-cp312-macosx_10_13_x86_64.whl (69.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mapbox_earcut-2.1.0-cp311-cp311-win_arm64.whl (448.8 kB view details)

Uploaded CPython 3.11Windows ARM64

mapbox_earcut-2.1.0-cp311-cp311-win_amd64.whl (279.5 kB view details)

Uploaded CPython 3.11Windows x86-64

mapbox_earcut-2.1.0-cp311-cp311-win32.whl (273.2 kB view details)

Uploaded CPython 3.11Windows x86

mapbox_earcut-2.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (175.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mapbox_earcut-2.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (169.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mapbox_earcut-2.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (77.3 kB view details)

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

mapbox_earcut-2.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (73.8 kB view details)

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

mapbox_earcut-2.1.0-cp311-cp311-macosx_11_0_arm64.whl (67.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mapbox_earcut-2.1.0-cp311-cp311-macosx_10_13_x86_64.whl (70.0 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

mapbox_earcut-2.1.0-cp310-cp310-win_amd64.whl (279.1 kB view details)

Uploaded CPython 3.10Windows x86-64

mapbox_earcut-2.1.0-cp310-cp310-win32.whl (273.0 kB view details)

Uploaded CPython 3.10Windows x86

mapbox_earcut-2.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (175.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mapbox_earcut-2.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (169.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mapbox_earcut-2.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (77.7 kB view details)

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

mapbox_earcut-2.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (74.2 kB view details)

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

mapbox_earcut-2.1.0-cp310-cp310-macosx_11_0_arm64.whl (67.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mapbox_earcut-2.1.0-cp310-cp310-macosx_10_13_x86_64.whl (70.4 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

mapbox_earcut-2.1.0-cp39-cp39-win_amd64.whl (253.3 kB view details)

Uploaded CPython 3.9Windows x86-64

mapbox_earcut-2.1.0-cp39-cp39-win32.whl (249.9 kB view details)

Uploaded CPython 3.9Windows x86

mapbox_earcut-2.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (170.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

mapbox_earcut-2.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (165.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

mapbox_earcut-2.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (73.2 kB view details)

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

mapbox_earcut-2.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (70.1 kB view details)

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

mapbox_earcut-2.1.0-cp39-cp39-macosx_11_0_arm64.whl (63.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mapbox_earcut-2.1.0-cp39-cp39-macosx_10_13_x86_64.whl (67.3 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

Details for the file mapbox_earcut-2.1.0.tar.gz.

File metadata

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

File hashes

Hashes for mapbox_earcut-2.1.0.tar.gz
Algorithm Hash digest
SHA256 fb0c1e43581a635bbaabf4a5149009014d370c515816c4d5a7d8118477f28d48
MD5 bf33eddfa746dc6657199662d0261a37
BLAKE2b-256 aa148505f246191c41da54a64a4d6c30049ed47b6047930d8f0de328dadb06ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0.tar.gz:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 265e2670bad18d86a6a542b09ae6426e8025fcc7bfc7b039027f6af380d2a604
MD5 510b6e6f01b4215b3b78381b066fe2b2
BLAKE2b-256 923cb73e2b9e4291663eaf1c2548ffc9051ccd47abd0f68e99f39e3dd8c8d603

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315t-win_amd64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315t-win32.whl.

File metadata

  • Download URL: mapbox_earcut-2.1.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 283.6 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 d7dca5e525f54c28160d5515f5aeae135a35cb82408e3bd280b01f208d23f5e0
MD5 5b283f49cb21aab1fc645a07d56fc25c
BLAKE2b-256 05f50beffb7ad07b71ece774b201b6efe969571fa7697be9649ad53b4eb4d8f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315t-win32.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afa1e3c5b9d983b58e88cf5a1ab8d57c7817777a9a9bc13d26356f940fa0bad1
MD5 ed6787e4ddd7999aa9594e123baa4999
BLAKE2b-256 28d3f2e047ba37e25f98b4086afed39c9ee6566c98a9c5bd7a32a8f459df4c8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f90df2b36e6008a5993e29c74a9d711fa227600a6f9675cb182f7feef3dcfbd7
MD5 52df497ad053c1a968dc4e6b4f26fb17
BLAKE2b-256 9e675d4d81b893b2d0a7950edcd688fdc8fcfde92c6c3aaa49dbc306a6912019

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da53538a84bc1bb32d3983710d0014be6f41f2e5dc90fad51dfb53278b0a1698
MD5 b064f8b31e1b4b112249e4484a530e94
BLAKE2b-256 f0fbed1e52409b65873c1cbfcd3b701ac9adecb506585268f8c4d813a359d51a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3bce59b92603849ef49084cad77dda3da323970ba7a82de3a0a35fc962ab92a1
MD5 a3bacdfef14fc0a92f548e620e1a761f
BLAKE2b-256 cea2ec7ea2249e5b47b5c779f3879e83a51072d19b78822655f56cbad716fb0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 260814d85d5cb7f02b99d0fb69b4ec83a0cc4aaedb2c7f9c69d9f47a8ad38ff5
MD5 16f307f68ba15d539387755055bd9829
BLAKE2b-256 ddee1e92aaa17861ee9a5e7b406e33325b89f3e83fbc5767763f5cb57fa20fdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0e1cd2514e2774c11f988f33af09b3ff30f534c6dd9630d6a0b99694274d4b6a
MD5 478306200d2123005d90a0af2bc99503
BLAKE2b-256 d622cabd764d02ba6a4639354d78f65456f2f0bbc7ca4c553d39e96c71a52c2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 e1b21fd100655ae3c0a2f62e08994228051f9b0b31e081c535c1431361b54614
MD5 67d5cdd28e8f2da11fe250cc00a84201
BLAKE2b-256 fb21ba8bc7f379005f2df1f21cafde1b7f5880f539af35356c67a1bc156d9367

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315-win_amd64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: mapbox_earcut-2.1.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 281.0 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 fbaae75dc6c34d94329f55068aa3c0e4285b8f54a84e569f3d7c14be4774295c
MD5 1cde85615905260c1714649ca2d31cda
BLAKE2b-256 5cf63518161f9caa9c5f50cf59ed764749b3a4eb650c07cdb11bd2a6ec4a7a6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315-win32.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7447082d864ac496aa6e0b23e31428bda9ec3ca217c09ea9af405274fb56410
MD5 af75e599b5a4aa41df559d048c46cec0
BLAKE2b-256 05d1a72944ae9567d8745668dacefafa92d6a9aadac63b2d9c155feef7b8c87e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d6e11e5e722cc29d2da08840802742b0337842bed0c6655b8785874e646cc34
MD5 864ec46a6f8c652609a6e78d33fd1932
BLAKE2b-256 7091bdc5aa7dae025b8faf022987397bb27081f3b95d49ed45b4c9347b7f8528

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5b7b07974a3832175fb79bcfba32582cdb04142703d804c40fe1043d4dfca3f
MD5 19ddc4d22ea5167319468f99650c9de0
BLAKE2b-256 d1beaf8af09b7c74613a38fe4ca23afbdd45e70bf9019ff4b91401ce879b8572

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26e40f410c0b101626111252fd657d310220254434bd240d29503d83c0857d71
MD5 40f890ece7b85f1810058740fc7d4fe0
BLAKE2b-256 3acfb4a2bea95c0ab9b46206898308103087df993d656e0e089891be331dbf29

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cccc1efbfbc989ed178f91d1e855969fdc4acf26d4396ad404fec011ec69973
MD5 059f195fa490ac194945c691f522d7c6
BLAKE2b-256 ba6249ebf1d6afbbdba83b73efbb2e91b45701ac6f0f07d5cf9242c521d28992

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2f5f9e0e7be256393cb872b3af3064bd7eaddda16c0d238588b5c8ba9a8544b7
MD5 08b18a816140bba4366f597a6501b42b
BLAKE2b-256 0ac7e410ccb819156c4500f363a4cf6f1bddbf1f48007b10fd2352d93b0ac2c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4b11782a4bec5c5b442ebf5421361ea4b8d343ac15fd58d8dee39c0affc81a4f
MD5 f12145885ebc7d480e2a227d1b802c18
BLAKE2b-256 a302091aa8f58defed3696b12ff7d4a56e78fcb3416b3d4e32fb183a2ce31646

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: mapbox_earcut-2.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 283.5 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 mapbox_earcut-2.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 46c75cbf1d10b3e3b88dc2e0047f6f0c715e1bd4d56931727751f776660c0357
MD5 e3f8ef8466c84e5b40209f75d5817774
BLAKE2b-256 049eb0c286fb9d2d71d08665d23f00906d402f67b4379570b5cf115a2e7c07d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314t-win32.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0eab4447b73c54b4b73ccc25881a66d533b13ca37d887cf654efc17b8da21f8
MD5 3be89903f5e0a268d548be51c1071719
BLAKE2b-256 e116c852be8d82c438ac583b6a07db02ff5547634c64966f5bc5fd761f1a6589

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 691825b5b93171b1725491fada1ddae70c37330360f70592bf07c1b770a2b437
MD5 1977551b61534618e4860e77d871ccba
BLAKE2b-256 9c8dd86b1da12235b27d8530ca30e5499bba646468926978eb46bd8f4ce79747

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52f75cca40240f33fe18de005ee1ecb1c13af6ecc45d108400ac6489b54562ca
MD5 6fe22503e4bc81a17a5113036f0e5686
BLAKE2b-256 976e4cdab89617fbc955b85c91250767b482dce19813515dcee2d78a76da0354

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 66439a181c1416907607b97f3f749ad22cb8b5d410a37da3a7d3f4914739a19d
MD5 094c5e7eac4fa5c4d781d29fcb36b50d
BLAKE2b-256 865d3e52d5dd94d7227d5161d2270a29b5831738a119ff343c78b111c070463c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01e35034f923d087359a8551ee8546abfcc4d711674859ca41385409d44e993b
MD5 9263c0e1d386847c5167ede35c6abcdc
BLAKE2b-256 050189e382936dcc3a0cf8260fd30d428afec81fa53e35062b150ff95350b154

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1c924fd7f19a1b1a2421306c651b228d36be30c131a1d552c2303214c67cf186
MD5 674bacf5ffc9a0a049c40e2535cdfd5d
BLAKE2b-256 36954477d1231487470822a98cff8dae19720ae3eef1798fa4a51e97b8251452

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5d28efcc3448f524ad45f52db9046b3296de32a0406f62ba203b360e3492d7fa
MD5 23e410950718714224a8f7904bd1b943
BLAKE2b-256 30914d53f1cd838936da7cf7f14a641a07bff730cc19f5be3e3b77eb75475e9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314-win_arm64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d8816d6b4b83d2a3e4b9a2f685a9d16418c680825ac277642c05975a08af073c
MD5 7417d5c9a3d369863b50ae369d3ff5ec
BLAKE2b-256 92e8a94aa807140140d515fccb7393c75d2aaddac2403a207588fb3da1a2b688

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: mapbox_earcut-2.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 280.9 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 mapbox_earcut-2.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ef8e993d04ce5f8e198f55af4f5de0a64164c7d2f914fee29731d2c14da63bcf
MD5 97e8ff38538ffb8ea533a5ba87435597
BLAKE2b-256 4e1e7c3e2cdf47c70526376769dd981ed0e608e44a9772e1edd213e3f211e31b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314-win32.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5488bdd616a4ab9b8ec2b177f9d94ca33243020209fb5025ca0c6d19fd043a76
MD5 6e2c62eb18cd2849a47a8b68ea0e3a79
BLAKE2b-256 eeba3be16d09fcb5277cb1f27a65566584d0bac33664aa3e74f20b224cfda762

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b300e634ca98f44bd7300d06f177197e5872f63675a4003ea1857d16f364571
MD5 a286b61a45342e184fe4b7ab23b761c8
BLAKE2b-256 60129ea657f8117c3c0d6e0d96218395c57f0b289654955f90405d7981e5b816

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db56b69aace164fb82884f9ca36864ea3d6e8ec643defebec83541dddf41be32
MD5 83503eb7fe3413ad2a7bb1c74cea4a03
BLAKE2b-256 864f3655c691732f14cc829fa45a4629085a7ada9e1bb65caf231e6ce982e9d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b51988c17538fb98dd18a45656ea1d54c30b4d384eabd20eb8ad0a142116495f
MD5 49d6192f65fa545487812022f90b4cf3
BLAKE2b-256 44d1499e87fc1b630ef2d1ac3083587258d0dea4e5e7b1048e73d9d9770f133d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e2d94b2a5ff27082975c57372fc6c966111482b82f42c322dbae22a11737c78
MD5 11e35413f5feaeb5529cd0973ab8747f
BLAKE2b-256 4cb77a558c3a36ec6818632dce1c4e45ea4bac764b4e484a9f15a44e33116c9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 01754511b3b2adf9068a0aec595f6b3c2ef91e101942f0805153a555bfb4226b
MD5 34b774c545a7eacf3bf386c30c9595ec
BLAKE2b-256 56f5d927a6c18e628fe76ee6d5be1991a9ed55f07b8d608f37acd78aa9bf0337

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7b3441c188704bd03ca7c320c444378eda529ef494220b9b735389b87765a38e
MD5 804990fad1e122e7224ae49b5938682f
BLAKE2b-256 e945cc48844e03f595b535facd5f5b481db05f98e017b3858fab96c639b5da50

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp313-cp313-win_arm64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0224b889f67b2868b4cf4dc3ba7dd7006122ece2199159147edce80e05df079c
MD5 faf9cab128c0f4c785ca8fb834150013
BLAKE2b-256 60e1dc52f1b18347c29742ff1a82c0f88553c8fac71fdc541cabe553ddead1c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: mapbox_earcut-2.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 272.9 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 mapbox_earcut-2.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fed97aaa1cd846c1a24867a43fe0a6603e84b25543cec9f58aced65a8c5c723f
MD5 0bfd5e1e53f3bcd8d7ba49c19f596c39
BLAKE2b-256 e265c97fabf109c2e381611e20a9657a4097d90dcbd82abb2e183e0247a81a8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp313-cp313-win32.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 086cf89caf061da1669add4f92aa76e5e90a232edc7f82445df362334fd4c3f8
MD5 e71a6dbc1f027ee406626ee87fdc5bea
BLAKE2b-256 38451a43da1002787a1b4dcc3740d0216d60239cf92a878ac6cc1ca8d2d4d089

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2d87ecc9a00faafb7a0e6c0179bc61e54f79c23f44c33269605475d5eeceb07
MD5 b3f8b17fbc06b07a22f5280035e68ab9
BLAKE2b-256 47ca349241fb7971173f2bb7f626396b2d504c7ed3fc1f46f19c18769865fc94

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7cee9422275dd8700bb04f82eac3410d03c283630a1cc536b1a09cc721a5c0a1
MD5 730543d406777508f035fb5ec0bcb1fd
BLAKE2b-256 fea1841d702350b644808fc9c4793910045a9fb63a387aabe132de225d0a07cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 611a6fc362c6a24cd7fc230e2740300e60bc5360e6085e36b40c5776eaf156a5
MD5 20d85b48f49430663a02af0fb7cd279f
BLAKE2b-256 3824edf60cbcdf8327e18279dce6963496542dfefbf3c49641a8a68e753b9a6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01e1df4c841ebdccce44e07046e6d23f307019957f69751439da744f7b09a262
MD5 51cb25cd87516e4a3e25257e3ae6dead
BLAKE2b-256 b1c734fc86374e487adeae197f42883664abe72c48663e9d106b6b431645d053

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fe652ace9a050b9f6447e9d7a9f2465fab951547e295ba1de7f2404f8bdf326f
MD5 c15c143af39d237b8921c813c0f8d700
BLAKE2b-256 c98d9225758660ddf74fa757a044efdd40bc3e9ad509bc012c0efd58082012dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d48c8abdf0268903689335f4b609022b588b84d98a455c2a2cb0d6bacd5bad50
MD5 384ea5cfe65869da31f239dbd5722eec
BLAKE2b-256 fb95f9b0ecb85c62768b2827ab50fcda3228e5f133c0e11aa9dc4759c6f4c1dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp312-cp312-win_arm64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eeea00eeb70873d840290e98471671d02e4ac0536b847b785177a14001e33a95
MD5 a6b130cb365e4d37f002aee816e88c89
BLAKE2b-256 ba58b1021f9065d315a5d325a913cc76c996a1629fb032df9c3fa5c9939bf692

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: mapbox_earcut-2.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 272.9 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 mapbox_earcut-2.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c87bf3755011fde95713c5b655c67b144e23e218e65efed2b7ec44f0188b3af9
MD5 7e2490ea7b7413122c2b90766714ca47
BLAKE2b-256 9dc17c9453cb4e0cf19184da13324d96f349e5a180dc78da12dda886dce894a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp312-cp312-win32.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ace5e2f5f53d742fffdb795c66e8387b0cca04ecf11588fbb8ab14150f30f214
MD5 f1ccaa601b488ad31ba477e926f8f4f3
BLAKE2b-256 bed58cbe09f35d6dedccfc90d7823bbdf7782e0665134dd5abd53d18e2ad1bc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0875192aed99a58e438abbcd5c096517c7947002a5f442440e2a7673f20cc0d
MD5 51c6b797f38643ba70d71611c1d9f3e8
BLAKE2b-256 29716ea9a0bf249782684b241c58a7fdf58c07aa760233a5c0d4366d10f2c25e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5592b56bf6ba66c1d360edf019c7708c8ec9ab6b71b336e457f4660a077676ed
MD5 86ebee5b00e5ec4ae6ff1b449345458d
BLAKE2b-256 9dd09557f5d60e21c434cf87d70fe056899eb6b7ee8cf7755c556e06c77c8dab

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f6181c097afb5de2a7160424cdb0660510bf8689ed4585a3f61f3f52596c18b
MD5 cbda41814a42f740bc21cde581151455
BLAKE2b-256 524fb886e77d14f9807abccb2eb0e4752400746fa16cc6a2c9197e88385332ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e392807f3e25f268826ece0f32739f0410ac46eebf70f06e701950297292d7c
MD5 e83cc5718c18722a972ba7af6b2c6232
BLAKE2b-256 673ed93e98c76afad5075151d6e19a8446092a53fd42823f4734138dbc74fd5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ba3e72cbe58c564acc4e07458da0da0cbf3e034705a093cdf6213815793cf566
MD5 e2e031d304707cfe54b8726b89db902c
BLAKE2b-256 2cd074534b0a7df17340cb2ab2c959909ec7005eaaf8422da646565205b04664

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5613a5947aebe42557dfc09a545469db34876a5c6d06c1b341b11a0e5dcaea95
MD5 4ef4c706d269c41ceecd4ae9c6aec6fd
BLAKE2b-256 4ccbb9802ebe1f0afc06e258af142ed66963fd5bb9e30e6ce608be126b8b08ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp311-cp311-win_arm64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 010531c21c3ebbe9f52b185e023aa9132a496bd57a6e113bafd7ce4b41d05c7b
MD5 45b3205eac2c094b7450eabdacb77004
BLAKE2b-256 6c700acc354827f848721d77c1efaca0e23bb16ba4b90c2b2ed2961179650217

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: mapbox_earcut-2.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 273.2 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 mapbox_earcut-2.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 87a6f1df5df5d35e10d8120d1ff4ee35a26007e5aa15435d17124a8c72e385bf
MD5 8be2b9a5186405c0320099938fea4f85
BLAKE2b-256 e9fbe9dfa7d9587c769e500cdb3bbc263ce5a6d0e4a70edd40a4927c38c8a6a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp311-cp311-win32.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a17febe0d541fe7cfc9dced37234adda598e0fd303d08b5f56c75b4d5e0ba0d3
MD5 f0f2f3e56823125d2ebf1bf5c9b9de1c
BLAKE2b-256 4b3b0d2139c8599650ae8edf68b6c5efeb60776dfdd4dd905fbfe285899f25eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08fe000894fa4e4c5794c0a9c361e1fbb7c7c2baa40398cf6c89bb1327f2a430
MD5 6479ee168e5d86c73cdc1f770b1b7854
BLAKE2b-256 f40e9246639cd6f8c0864a2fd08ede2920c8fe4842adc487538bd4d839faf351

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89c81f3806540c5b7091fc7ac4dcc2336d6410a922ff9fb384835015c7709c1a
MD5 2e6e795daabf05bf2b0c73b10cfad4f5
BLAKE2b-256 68f5d5296c3bfa1d4ba0580f1785526dc634f65ee25619db75538583a33f40bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74bea5212c7253f624f771a4bdc5ac661a701ddb3b9f503dc1c0378ea573800c
MD5 fedcb73909ff9989b2d7c8efbbc550ad
BLAKE2b-256 dfbf69d9967fa16218125c5cd9800ff52ef200ff3b65cf6cbda1946eb4ec44cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6318a6fc346d94d8fe7703b75d7436c02609b4707fe27ea7fcff9877f1e620a3
MD5 a5416cb9d00241c6eced07c4e5c60e4b
BLAKE2b-256 7d0e57cd9441cd98809e397e4856786290f31fd77ca696a9254414f107ccac4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 32143eff1deb83a78ac03759fe5f87403874fc5915e48ad23e6b948375871364
MD5 cf7e7e9110e4f20772fbafb2fa198444
BLAKE2b-256 a4b78d0cc82be423a6220c46428288ae963b176502c3a85baf6f5a82e62780d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp311-cp311-macosx_10_13_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9ffd573619606eb4399e6d19ee7e8fb351b11435bf8194dacd8836faed87ca7d
MD5 d742f035d9d4be763f88557c96ca6eca
BLAKE2b-256 ad9f56a99cb3e8a47468bb8128699bcfcdec8eeef36049b3259890c54940e9a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: mapbox_earcut-2.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 273.0 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 mapbox_earcut-2.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 aa18e4bfad11053a49d8ad03e92e63742cf6db71ea6dc6a6dd16e3f260d0e829
MD5 294ed2a8a893cdfe061606109a6a1cfc
BLAKE2b-256 30b32f17730ddfade34936e0b60fe60f1a65cac45ed1e9291127f45804c9f473

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp310-cp310-win32.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d40c690598ac45e2c77bf1a7f0c374a9eb21730492c75515234e4754b7cf4660
MD5 2b82ee37a3589d5b10ae97f4e2ecc137
BLAKE2b-256 819dc7848d011fe5c28bbdeb12130d229f36d6b9821876dec2625b32052288f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6da41db4c566a50d2d7ff4a10d0bae85d70fac09382d491bbc2c034da0f45973
MD5 e59ce7c1a86b638f1472b19ddff0c323
BLAKE2b-256 9ea293a6bdcd0e4aab083e15fba66a9ccea339c22a43976440eca148421100e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22c6106c1db9c45a83d20d4eec0133b41d2746f348418440fc5693156901528c
MD5 1f0ec2efdb30c90737674840bfc0e188
BLAKE2b-256 fcd523a0aa58c23f3630bf3b4f137ac2faed28c4512595e953ea836aa5df75e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b67043dd426c6a78a2463730c67657837786710908fe2fba60e226864ee54464
MD5 cc9cafc498e39899e2c016d63dbf77d2
BLAKE2b-256 e917267f07b0b28643e1aee05d717eea7705031688a4ffb4783d8bbe9e4aa410

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87a2c587c93300501d05bbd424a980059339bbb722cea3cea8740032d6309721
MD5 42f8a581d7ce7f3b49fe42f6cf97b1cd
BLAKE2b-256 593a5ca87e7d5c80b4a7512042dae49780ad324968f13bf9a4915e9ed8ae00e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 942c94de1da6b078969c13383cb7697ec7884ad314c35753b60527590a94c4b8
MD5 4269a0bde9c42d448d24ccaa7c04c307
BLAKE2b-256 9927693647c0faf2e2e2078ff3cd4bc8e9e06d3f6299b83062cfebd838d53c01

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp310-cp310-macosx_10_13_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6cecf0ffc9f78b8ec97e6708a97192684a8998291c577b15d4b30c37d7dff9b9
MD5 5fd874eb650a464999e49d7cc5b5f25d
BLAKE2b-256 9dc30591f382af52c279318917f60ff8da0559f74d79b1f24d1cf32df9e3fa46

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: mapbox_earcut-2.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 249.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mapbox_earcut-2.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e7af33d530c1e11b144c68a7300827156c4ed71a8dd3fe16ea8323bd8ffb827e
MD5 ca90f117653f953f5c09d9677c7ffcc2
BLAKE2b-256 839f5777a0947c6479649d5a9470f4a3bbdc2532fa6a03f4de1c3797abb673f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp39-cp39-win32.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09e7f50cc1de37c11a039ade46e0e8a516b06f84bbc1c4eabbaa924a2cd8c354
MD5 fa1d8f42298c42dd9de3c1ff4d45a3a3
BLAKE2b-256 c5b11a6e56b678c7e7d0af079af35097e042c73b404b58d61c447782445bb22c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1882b28119b0b3816a21619abc5ccbf669446f6d89ebcdc7ccfff3b02f199a2
MD5 c21bd7f5b6be978ac174576f9dbe670e
BLAKE2b-256 ff6fcd2640b1fd66403bd733951ddecc874ce4961ec410afa2c8d9edc16e4277

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7cfafd2860a1a6c4625f3fff9776e90f40bad180d2a4bd658f7485380b5c36d7
MD5 68d52f535ea4e59d23d698726706b6b8
BLAKE2b-256 734f2985505645179c78a3d8f53f4a71c1cd86d840d7d6df071e6bfb260499fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01f158470968293287d4c15ee28cc87bc3d87814d17850441529a665a8e58d82
MD5 f9bb3a9c1959474467632965bf9a630e
BLAKE2b-256 2ee81c4e4d470b2b99f13425674f15292e56627cb4ab5d3db718c6ece77b1f73

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3ee543e87db47e600724fd69eb6e20459da6297f0f02ce293225889d2f60206
MD5 56772e54ee58494b8b170044c62aa6c9
BLAKE2b-256 a1274eed73d09f792bf610daacfc9c2f3174b886e9db83cca14567895dc65807

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

File details

Details for the file mapbox_earcut-2.1.0-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mapbox_earcut-2.1.0-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7b1c4d2a2d31d0effc350013ea15786c9e96fe57da705e778ab50524196b98ae
MD5 73f0f3eff7df62da1ef142c254a2f08a
BLAKE2b-256 b98bfdf8b0394cb0f6c3f2b14fabe95b4534c9799ac47a407c29c10a00bd86ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapbox_earcut-2.1.0-cp39-cp39-macosx_10_13_x86_64.whl:

Publisher: release.yml on skogler/mapbox_earcut_python

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

2.1.0 This release

77 files

2.0.0

61 files

1.0.3

39 files

1.0.2

33 files

1.0.1

67 files

1.0.0

30 files

0.12.11

30 files

0.12.10

40 files

0.12.7

10 files

0.12.6

1 file

0.12.5.1

7 files

0.12.5

4 files

0.12.4

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page