Skip to main content

Cython wrapper for the Boost Voronoi library (version 1.59.0)

Project description

pyvoronoi

A wrapper for Boost's Voronoi diagram library. The full documentation of the Boost Voronoi API is available here.

Install

The installation have been tested on Windows and Linux Ubuntu. If you notice any issue on Mac, reach out to us, we are interested in making sure it works for you.

Windows users will need Microsoft Visual C++ installed on their machine. You can find information about the version needed on this link. Python version from 3.5 to 3.12 rely on Visual C++ 14.x.

Dependencies

Cython dependency is optional. Cpp sources generated with Cython are available in releases.

Note on using the setup.py:

setup.py operates in 2 modes that are based on the presence of the dev file in the root of the project.

  • When dev is present, Cython will be used to compile the .pyx sources. This is the development mode (as you get it in the git repository).

  • When dev is absent, C/C++ compiler will be used to compile the .cpp sources (that were prepared in in the development mode). This is the distribution mode (as you get it on PyPI).

This way the package can be used without or with an incompatible version of Cython.

The idea comes from Matt Shannon's bandmat library.

From PyPI

Cython not required.

pip install pyvoronoi

From source

Cython required.

Clone the repository:

git clone https://github.com/fabanc/pyvoronoi.git

Install:

python setup.py install

After every modification of .pyx files compile with Cython:

python setup.py build_ext --inplace

Note in order to build the wheels, you will need to also install wheel

pip install wheel

Using

Create a new instance, passing the scaling factor into the constructor:

import pyvoronoi
pv = pyvoronoi.Pyvoronoi(10)

Since the voronoi library uses integer representation for points, the scaling factor chosen must be high enough to avoid roundoff error when converting from point coordinates to integers.

Add points and segments:

pv.AddPoint([0, 0])
pv.AddSegment([[1,5],[2,2]])

Call Construct() and get the edges and vertices:

pv.Construct()
edges = pv.GetEdges()
vertices = pv.GetVertices()
cells = pv.GetCells()

Note that vertices, edges, and cells, can be accessed individually. The methods above are just convenience wrappers around the following functions:

  • GetVertex

  • GetEdge

  • Get Cell

def GetVertices(self):
    count = self.CountVertices()
    output = []
    for index in  range(count):
        output.append(self.GetVertex(index))
    return output
def GetEdges(self):
    count = self.CountEdges()
    output = []
    for index in range(count):
        output.append(self.GetEdge(index))
    return output
def GetCells(self):
    count = self.CountCells()
    output = []
    for index in range(count):
        output.append(self.GetCell(index))
    return output

If you are running python 2.x, you might want to write your own wrappers using xrange. This will be more efficient.

Edges have the following properties:

  • start, end contain the indices of the start and end vertices or -1 if the edge is infinite at that end.
  • is_primary is true if the edge is not coincident with any of the source inputs.
  • is_linear is true if the edge is linear (not curved).
  • cell is the identifier of the cell this segment is part of.
  • twin is the identifier of the twin segment as defined in the boost voronoi API.

Cells have the following properties:

  • cell_identifier is the index of the cell.
  • site is the index of the site which generated this cell (same as site1, site2 on the edges).
  • contains_point is true if the site was generated by a point.
  • contains_segment is true if the site was generated by a segment.
  • is_open is true if any of the cell's edges is infinite.
  • is_degenerate is true if the cell doesn't have an incident edge. Can happen if a few input segments share a common endpoint.
  • vertices contains indices into the vertex array.
  • edges contains indices into the edge array.
pv = pyvoronoi.Pyvoronoi(100)
pv.AddSegment([[0.1,0.8],[0.3,0.6]])
pv.AddSegment([[0.3,0.6],[0.4,0.6]])
pv.AddSegment([[0.4,0.6],[0.4,0.5]])
pv.AddSegment([[0.4,0.6],[0.4,0.7]])
pv.AddSegment([[0.4,0.7],[0.5,0.8]])
pv.AddSegment([[0.4,0.7],[0.5,0.6]])
pv.AddSegment([[0.5,0.6],[0.7,0.7]])

pv.Construct()
edges = pv.GetEdges()
vertices = pv.GetVertices()
cells = pv.GetCells()
print("Cell Count: {0}".format(len(cells)))
for c in cells:
    print("Cell contains point: {0}. Contains segment: {1}. Is open: {2}, Site Index: {3}".format(c.contains_point, c.contains_segment, c.is_open, c.site))
    print(",".join(map(str,c.vertices)))
    for sIndex in c.edges:
        print("Start Index: {0}, End Index = {1}".format(edges[sIndex].start, edges[sIndex].end))

Some output edges returned by the boost voronoi API are suposed to be curved. In the C++ API, it is up to you to code it. Luckily, you can do it in python using the following the function DiscretizeCurvedEdge. The sample below shows you how to do that:

for cIndex in range(len(cells)):
    cell = cells[cIndex]
    if cell.is_open == False:
        for i in range(len(cell.edges)):
            e = edges[cell.edges[i]]
            startVertex = vertices[e.start]
            endVertex = vertices[e.end]

            max_distance  = distance([startVertex.X, startVertex.Y], [endVertex.X, endVertex.Y]) / 10
            if startVertex != -1 and endVertex != -1:
                if(e.is_linear == True):
                    array = [[startVertex.X, startVertex.Y],[endVertex.X, endVertex.Y]]
                else:
                    points = pv.DiscretizeCurvedEdge(i, max_distance)
                    for p in points:
                        print "{0},{1}".format(p[0], p[1])

The curve interpolation code can return 2 exceptions.

  • FocusOnDirectixException: this happens when the input point is on the segment side. In that cases, it makes no sense to interpolate a parabola between those two geometries since a parabola equation is supposed to find an equidistant point between the two geometries.

  • UnsolvableParabolaEquation: there are cases where the point returned by boost does not fit with the parabola equation (for a same position on the x-axis, we get 2 different points, both equidistant). Understanding this issue is still under investigation. It is possible to mitigate this issue by setting an optional 3rd parameter of the function DiscretizeCurvedEdge). A higher value means more tolerance to this exception. The recommended value would be 1 / Scaling Factor.

License

  • Pyvoronoi is available under MIT license <http://opensource.org/licenses/MIT>__.
  • The core Voronoi library is available under Boost Software License <http://www.boost.org/LICENSE_1_0.txt>__. Freeware for both open source and commercial applications.

Development

Build tools

This project uses cibuildwheel to build wheels on multiple platforms.

Project details


Download files

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

Source Distribution

pyvoronoi-1.1.5.tar.gz (73.6 kB view details)

Uploaded Source

Built Distributions

pyvoronoi-1.1.5-cp313-cp313-win_amd64.whl (115.6 kB view details)

Uploaded CPython 3.13 Windows x86-64

pyvoronoi-1.1.5-cp313-cp313-win32.whl (104.1 kB view details)

Uploaded CPython 3.13 Windows x86

pyvoronoi-1.1.5-cp313-cp313-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pyvoronoi-1.1.5-cp313-cp313-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

pyvoronoi-1.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pyvoronoi-1.1.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

pyvoronoi-1.1.5-cp313-cp313-macosx_10_13_x86_64.whl (150.4 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pyvoronoi-1.1.5-cp312-cp312-win_amd64.whl (116.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyvoronoi-1.1.5-cp312-cp312-win32.whl (104.7 kB view details)

Uploaded CPython 3.12 Windows x86

pyvoronoi-1.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pyvoronoi-1.1.5-cp312-cp312-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pyvoronoi-1.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyvoronoi-1.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pyvoronoi-1.1.5-cp312-cp312-macosx_10_13_x86_64.whl (151.8 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pyvoronoi-1.1.5-cp311-cp311-win_amd64.whl (117.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyvoronoi-1.1.5-cp311-cp311-win32.whl (105.4 kB view details)

Uploaded CPython 3.11 Windows x86

pyvoronoi-1.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pyvoronoi-1.1.5-cp311-cp311-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pyvoronoi-1.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyvoronoi-1.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pyvoronoi-1.1.5-cp311-cp311-macosx_10_9_x86_64.whl (151.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyvoronoi-1.1.5-cp310-cp310-win_amd64.whl (117.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyvoronoi-1.1.5-cp310-cp310-win32.whl (105.7 kB view details)

Uploaded CPython 3.10 Windows x86

pyvoronoi-1.1.5-cp310-cp310-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pyvoronoi-1.1.5-cp310-cp310-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pyvoronoi-1.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyvoronoi-1.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pyvoronoi-1.1.5-cp310-cp310-macosx_10_9_x86_64.whl (150.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyvoronoi-1.1.5-cp39-cp39-win_amd64.whl (117.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyvoronoi-1.1.5-cp39-cp39-win32.whl (106.0 kB view details)

Uploaded CPython 3.9 Windows x86

pyvoronoi-1.1.5-cp39-cp39-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pyvoronoi-1.1.5-cp39-cp39-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

pyvoronoi-1.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyvoronoi-1.1.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pyvoronoi-1.1.5-cp39-cp39-macosx_10_9_x86_64.whl (151.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyvoronoi-1.1.5-cp38-cp38-win_amd64.whl (117.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyvoronoi-1.1.5-cp38-cp38-win32.whl (106.1 kB view details)

Uploaded CPython 3.8 Windows x86

pyvoronoi-1.1.5-cp38-cp38-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

pyvoronoi-1.1.5-cp38-cp38-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

pyvoronoi-1.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyvoronoi-1.1.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pyvoronoi-1.1.5-cp38-cp38-macosx_10_9_x86_64.whl (152.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyvoronoi-1.1.5-cp37-cp37m-win_amd64.whl (116.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyvoronoi-1.1.5-cp37-cp37m-win32.whl (105.4 kB view details)

Uploaded CPython 3.7m Windows x86

pyvoronoi-1.1.5-cp37-cp37m-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

pyvoronoi-1.1.5-cp37-cp37m-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

pyvoronoi-1.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pyvoronoi-1.1.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

pyvoronoi-1.1.5-cp37-cp37m-macosx_10_9_x86_64.whl (150.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyvoronoi-1.1.5-cp36-cp36m-win_amd64.whl (123.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyvoronoi-1.1.5-cp36-cp36m-win32.whl (109.3 kB view details)

Uploaded CPython 3.6m Windows x86

pyvoronoi-1.1.5-cp36-cp36m-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ x86-64

pyvoronoi-1.1.5-cp36-cp36m-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

pyvoronoi-1.1.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

pyvoronoi-1.1.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

pyvoronoi-1.1.5-cp36-cp36m-macosx_10_9_x86_64.whl (148.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file pyvoronoi-1.1.5.tar.gz.

File metadata

  • Download URL: pyvoronoi-1.1.5.tar.gz
  • Upload date:
  • Size: 73.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvoronoi-1.1.5.tar.gz
Algorithm Hash digest
SHA256 832cb603198c10b7ed7a87a18b47912b061dead5bb0f51b802ba60235ba91e70
MD5 d7e667bb2b84674410b7aaba85e970a5
BLAKE2b-256 3a6d45cab8c9c1cb9ba76cd07893b3d2b2ff45e6de71996347d6620ada16f3a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5.tar.gz:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dd2c5c4f6bee0196548c4af30f74332d61c47bc91b1d921923637e4d28008a42
MD5 e06ded9c8350c446c6341237da27b5e4
BLAKE2b-256 ef2b8641455cac11ac2251fa21daf553e96a894979100dacca1e5a54acceb6f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp313-cp313-win_amd64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyvoronoi-1.1.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 104.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvoronoi-1.1.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ef8757ec031205faaec06c92440be8f7b3cfe3e46c9341d228434ec6d7e204e0
MD5 6387476caef4efcd084f6d21f61371ff
BLAKE2b-256 e3a0e6394507c6688c6075b06f27623567268a1497a3eeb99f0cfe8d5e1ca01d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp313-cp313-win32.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3ae8e78171c5520b0f5e84052c6853f5c1dc8a516021c2be7bb878e259a120a
MD5 41b542addc865e0432fc7c7261c7737b
BLAKE2b-256 7fe701e0b20f50e2f7b5c20d861799045dd664b196644c7614be49930d9f05a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5f61f3e568f9f2cdc0407cb66c535dc04db4e146f67615026fa6711a49d3690
MD5 05dc636434ca1c5f2135760c4618192c
BLAKE2b-256 d55e351b35a5b33c46e81fc136fc421e4f55b968f8f16833e347c2a242e7e0be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dc9b04451b95b6cd18d271148c692cc6807fea4597300ab0eab81190b9e9689
MD5 fceaa15010497a77ba35d65ede02987b
BLAKE2b-256 ab3b23c8885cea23ef866ab50719283fe7db50b04d0b9e40f03dd4ce9ca9d67a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4a3d19982896db688a295ff6e38b7272ff53bc9b583d36614a68823a975315b
MD5 02afc5bec614b664b4d0e2dd920916bf
BLAKE2b-256 259485cb36ae421a4ca114c8d41c89a6429b154a5a3684b5ad2a942ee7b654be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8b28a461b5bad7fbd5c8ae44e8ee02522cf91030ab45a6966ef09a1308dd8bb6
MD5 9aefbe45d4d8e51b54baaa0c48a26895
BLAKE2b-256 3aee4ef2aabace38e6d84538f02265476c41eabb45e85f9e7cb97780d2fc3807

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 32ca18993bc01f7e307a31ec899f63a2a5a42f8f58102ed038bdacf4e11e25da
MD5 6dbe0730d0822b5073c3c86ed18761bf
BLAKE2b-256 39c5aff5be6a36451558dc359e1003c11c6bf4cf1b6e70ee8561ad9a15e425a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp312-cp312-win_amd64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyvoronoi-1.1.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 104.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvoronoi-1.1.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f25b3cd821c0983358da08b84269590062d92fc725748a487047177b5dd80da9
MD5 ca3976fb54b64f1112beb7fb5cfde88f
BLAKE2b-256 90b4923de382eec4393b7c0327f185070a1950d876f593702f915366b59b418d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp312-cp312-win32.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88be7292a911a89616ff73a0c956c6475ed72ef276bbae05f04f32e0c323ac4d
MD5 a88cc231d4f37b1324960a8adb0d1bfa
BLAKE2b-256 55df8a6b0796105082362437c6b6401ab9fb263977d05aedade7e9b82b73f8a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2353d3b480aea28b17e5959d6a654a2b97f48cf3bf8e0f589ccb0132205516da
MD5 a5f2ed483c256a48ebb9b7e840e497fa
BLAKE2b-256 2878a8f224b38bb2fc93ad7f8aba1535290f1c88f82ec4e5795753fb9e0102e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8ed7cb5f82338e36ca708fdc494ea2954b0b57f254ef4743085853ebb05f899
MD5 0ed4574a520fbe364ec2524ace3146ee
BLAKE2b-256 2f4ff20226ba34cda64300698d8fca9a537663b3ae78c7dbd28888cb53b950e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 043108da172817a8463019f77190585e2cd7327312f4071f2a11e462e91b07ed
MD5 7e924da543da667a784de6904db082ff
BLAKE2b-256 a84bfef8d34bab1525040b4cc07c747e2e194d41e6ad48d614143702dfe653ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a772f33f599c3a44d784c88078a9455e5cdfa1c16db20df9725937dd32ebcae7
MD5 08585f3ebc7e4893f18c5f64a09c5167
BLAKE2b-256 3c1b382e9ae1107b8aad820495861bce5ee73ff9646fefdc1cef77f90b97084a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 991a81c3fe54b116d76f723f47cbd68d146e90c025621e21fa69a502f92cc557
MD5 df59732ab67e7c02ab0a708b4d8503ba
BLAKE2b-256 9e39fbf0a1a4ef30a58bea0865e35d6afc98bb742f482fca6454c72f7455e7f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp311-cp311-win_amd64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyvoronoi-1.1.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 105.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvoronoi-1.1.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b31f69ca987466e14ae554101fb980a0bde6b5868a021c7629ee3ad183055898
MD5 05d1a6fb200245c0183252ad9092e554
BLAKE2b-256 f5231f64fac2d21cc4ab2c45346f0a652267646b896a0e69b4bf81dacb8b10a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp311-cp311-win32.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc4e4f7acdd8c1f0299fb8358e4208bd876cda76764ea3072606911464dc16b2
MD5 84f10477d8c97dbb4268b831856e8f60
BLAKE2b-256 07e98e952fee0f8cbe67c61845a7457aa44a8088dbc70b9ad3e52d4c820e4446

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6174bf6453cc48ad4482f06ac57171a3a039547adaedb0711444471639b005a
MD5 acfc42a9bd4c3f2225b50363d9d1f5e3
BLAKE2b-256 e27948cb5772f6496da10b89841c7bc4bee7073f722ec2ca35ff7bb2f58f758a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f83f4864042378ec82b4fa9905310c75921a697ed7010de7c5b4ba7de5a665f4
MD5 f881eded1add0fb60eb4d991232e8249
BLAKE2b-256 eef8044105cc775825b6102df741cc61ddaaef34d9b4e785cd02e84887726ebc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f25eb30a723eeb65d5f4db260c91993ea00ad87da19c14db4ac2b4a643967c2
MD5 37a863b831b0723949f0417f69a09825
BLAKE2b-256 c4ebdf0b1af67e8a54d764059d351f31f3ffbc8229e4d5b27ac0711095a88f62

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0804755097607f264f91d675a27b413fa5e01034c7bee1bfe0c00f95fce47d39
MD5 7402c9fceece5f2935eb9830bbb18f6a
BLAKE2b-256 ef275f8565db87cb8b1310cf9506b5aaa7db10a4a808bc5a589ef85558c8dcf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9c7c3bf257fd18876450c5fa66f4cb6e1b682949207d764529052fb11c1c7af3
MD5 75c8416d9f45ec7b98499b6e73422278
BLAKE2b-256 7033099dc25287e56abb521dda97c5e635ee744b66fde7ba21bd5442f1ee29f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp310-cp310-win_amd64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyvoronoi-1.1.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 105.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvoronoi-1.1.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a1a89333f029b27811ab142ffeef9e7692c17fe12007c0a0d46e07a997926b4f
MD5 74fb17774b282eb8ec5eee8a962d828f
BLAKE2b-256 1ed24bbcdcdb3b60808e1d1a7be5ff5a7265c8efc4fa61a063724b8c6ba8f524

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp310-cp310-win32.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1455e5a0894f74c4eeb35b110f009278b01a32450e2020d09f6dd4c12e469026
MD5 512297726bc3fd7df0980016f9c824ee
BLAKE2b-256 f0d2e723d21b3420bf0d8d7b0a5d18066dbed8b9f80539e24361fd67cfa48a5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2b344feff0a60cd0cf0393091e4a5b2acb2d34575723870ae8cafe1d3f17540
MD5 a4356c14dd8d00bf31cdaea2d7579023
BLAKE2b-256 d592a2eab7e6f41f713a136673c007596e2e0c4bf7a62256d1f8cc72e2d5fee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04ccfbbbf54cf596ac4566b606887ab85a1ef7334657f97e3d2da58bbc769e1f
MD5 fe8479a1f477c81c15bef6b3f233f468
BLAKE2b-256 d8c9764c59f2a1d51d04e24d0121b7631adc6c50cf269774903c4b4a933ca4ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d45a71bc32c5a2c3062865fe1827fb1c44270867365893925d647a12cf2dbb0f
MD5 3eae2d4ab5b95d19eab1f378853d5ae5
BLAKE2b-256 6cc0d33fcdd04a3bcbfaa14bc858ceab7dbe868f2db3fd11483271923cdc3dae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0a0efa3b856a58fdec3a84ddcf67db53e59bc7aed9b819c99ed5bdca6b96827
MD5 3388d72bef4b07a0a3ece775ec4e85bc
BLAKE2b-256 ecfc04185a393a750c744cf847dfb51f95f182d3b7d54985ed9ffe1e30b9c591

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyvoronoi-1.1.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 117.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvoronoi-1.1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2051e2cf8a3e752d3d2f16f3f4cdab5bad99861b1aa3b783518632450151420a
MD5 23631f782e05502e811298c358379e98
BLAKE2b-256 1a0a0fe0b232f632f0833a3843c096cf4c56d659cadb7bb05b25b90673532feb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp39-cp39-win_amd64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyvoronoi-1.1.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 106.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvoronoi-1.1.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d70a3fda6157011a87a01a60571449a5b1145ee6b55869a5bf9c8ece06d8cd6c
MD5 ba28030f6896d71a300cc9ac45b9487b
BLAKE2b-256 6b6cdf97c5edaa758b522f7b31e80709bd821b1dfdb2bf082be4b9cd5667d904

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp39-cp39-win32.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c2f73f6904074b8f0ae19ade5b2a99a93d3eacc16f1bdb551c5f0d5ea864651
MD5 06d2d90e57b660be386966501e8ad531
BLAKE2b-256 56bd17fd169a9112ab54da5b9d821a24c87f006b9c68503efc8f11ec4aed9724

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57d4ec3d7fe7eb365e9d8b6a8c17a0e4ead31de037211aaf2a697a707faaf138
MD5 09d16d9808404a0e3178e8ee405108c6
BLAKE2b-256 79515a9070f78d914324b5ba54e8fba1befca09ea2b407ddf583864acfa88a64

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8f8bf41a88f832f4f85679e499559886c0cbc6338a75146ad82f2cb798b1823
MD5 65e8c0e611e3b43b306c7e8d54c9a892
BLAKE2b-256 d9f0c465007673cb61fa2310d5e02215e704ad4ee02f8345de61832f9a627e63

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7994bd630cf876dc649f7b4ef5aebe9c28a3f4132fb09baa8d7d898a290797ff
MD5 7b7c35d5eb057dab44e41a01417a4744
BLAKE2b-256 c06b4d349d94a85f5903fc701abd75046b565bca9259c9e7be1581c0b13d56d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7fe9c13536eee747312b22d85e0c11ba7bac963633c20006b1bd0bd0ad44cedd
MD5 67c0322f638c9544ae95518e3ae00ed7
BLAKE2b-256 9df691ac32786a72b59f4115aa0fe6ee57e65adaa40ec466f86e945219c8f281

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyvoronoi-1.1.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 117.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvoronoi-1.1.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d8adb93233175ffb71c8e658106bdf7e208a9142483267d9cbcc72f4641f889a
MD5 9853327263c5cfac1067dc3ed73da9b3
BLAKE2b-256 96a8cfca95dd66162b615b27466980026555212c9411f3df0fc9cbbefb9d5d61

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp38-cp38-win_amd64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyvoronoi-1.1.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 106.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvoronoi-1.1.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 611b069b0a46f4b0c598e41651f5879d3e69fa1a4686f454804e2ba108fbc97f
MD5 2a212ab6afbcee369d53f07238b9f76b
BLAKE2b-256 7ab1dd407e01cf18adeca65c9a0a95ddba5c4b149dcf8f37df650dd07778e488

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp38-cp38-win32.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aafa9edf8e87392b06f75b90bee0b1602c9a7787487f84acaa34ce9a3bbdc669
MD5 731e3c750f5aaba74247acdc5ce3c25d
BLAKE2b-256 fa8d0da0fbc039d8e0514e984fd10fe530b157e680d941234a6635face034d74

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c9c2bf9d86c739b76b6754a66665edc3edd6f16c8a608393eb645ffb8032200
MD5 46ccc4d3ee391cd2123a06142b4be8dc
BLAKE2b-256 e70ff968242105e4cec48bdedcb33f909323d24e9aa8342f4b0ea912378e9a3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27e2f4b795bf0e85021705a3ee4cc880e571289035047fd207f13fc7f95ef044
MD5 9207e3621b2f575a07a8290f52ffdd04
BLAKE2b-256 8bce9ac3a53310733f4b27b7723f5e84afa05b17ab493892a7144e6ba446af4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c99c2519faf180c549bc8cf5efcbc76e0899bf36259100e2fad1f74ca5b88741
MD5 8dd66096689b975f5c3049551b3b1f46
BLAKE2b-256 17a3ebb6e853069317cacde59b49def2ca87d5fe50508a395f3f8eb7ad5bfbff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 861ca9d552f0699e57489c882144b8ef6ec27555531a0611f008af68853e7046
MD5 9253b8bc8b7c10977f4197f2733e03bc
BLAKE2b-256 42aa846d6353a7fed722123e2a95f547995abce227e2605186d7b46e6ac59171

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyvoronoi-1.1.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 116.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvoronoi-1.1.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 372699f96c1b438b55a86106f972c695311a5fc9ed5be2f1d5fea5fc7e75f597
MD5 91250c94263dd979c53a1d9b79e5840f
BLAKE2b-256 e02edbf5e79811b119e9b71c0ecce8e573fd4ff049d2c064ae53ab71aa9aed3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp37-cp37m-win_amd64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyvoronoi-1.1.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 105.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvoronoi-1.1.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2b0acc4f47341c3f2732995503116792ed1f276bc9ce8fd8565a79e5e249b746
MD5 020ae233ef0dc6aea6da4067ee86c58a
BLAKE2b-256 a8b9b7b70a4019805177c7feaf1d1c837e9e6dfacc8c3491f1b6f1dca96ba88e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp37-cp37m-win32.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd9833c774a85d172d292ad14c8936e797a2cff205db9ad809121ba87e31ded7
MD5 485284eb1042fd1338d13d8bc6bd5604
BLAKE2b-256 aa56770e58dc7479006352bc1ac74d39a04a353635ccc7065f5832d7815ef4ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c5ed61806ba91f7813b0fb4d020d57d22e70e57ba911af713a3497c8fecc2ff9
MD5 f6b71904077f26a97ef3bcdfe159a097
BLAKE2b-256 7e990ad14f6d7da30f449f6ef6386416c5c26c92041d8bde3e92872390e4539a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp37-cp37m-musllinux_1_2_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 293d7c963b7216808c151bca9fabc32df6b85c263ecb4daec6e0bf4bedde6f19
MD5 ff42a572f3f95b3abed601a82a4aa4e0
BLAKE2b-256 cff1348ec9425e49f44457ec48c96c278badb37ed166ffa7314e22a81300b9ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5de6795e7828b4dd0fcd080dca706e94ed5effef7fc64b39b14dcd8686dca3e6
MD5 860b9c3b28c17f581b3db0a61ee9a62a
BLAKE2b-256 e9c7159128b34f8cfe54fe637200386b5f2fc54908746817f6360654e553d8ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0774cf5229089419a7801bbfd31c9aa2617cf197ef48c3ce5f7d07d0e6728c85
MD5 8facc7098b73a70ee2bd449002f940ec
BLAKE2b-256 39c103d0af2dc63ee44de8e05cac0c33ee5b803dcba35a5a8ae653b7dbf02a83

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp37-cp37m-macosx_10_9_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyvoronoi-1.1.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 123.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvoronoi-1.1.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9fee5f16a8d56d7e7845100868d05b3555ce40c6de7d2de22b70eb60df2d182a
MD5 8bc908c57e4f6900bbe4d191070c89c2
BLAKE2b-256 ef25e1d85d5c672f91625a973901484ab607b29c022c13a5e019c76e21edde3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp36-cp36m-win_amd64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pyvoronoi-1.1.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 109.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvoronoi-1.1.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7ce12969eaf05aa64c03535c5d49365cb2d9128d9e477e68c4abb3ba0189935d
MD5 7f5c7e2df5e201c940c4cc2ab1fcf6ba
BLAKE2b-256 afab1c1c9a410afecdbf8e786726792ad7af0a4b44d01b6bc117611defe80cb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp36-cp36m-win32.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38f160eb3f52e7285ab2628b5488ded9249451d2dcc2f0753ed479898f1f0389
MD5 164e1271eab063312dc537051418b5bb
BLAKE2b-256 5d32eeede70ee7ea68e6a53716854ca762778649663fdc2f79bc4d7636d4e11f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp36-cp36m-musllinux_1_2_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 258370e364c274ee06f8b90d54ee4d3ad1d2c37f166d7e0b9fea31732d33565d
MD5 f5fd6656f41162d448e1bb1fd248011b
BLAKE2b-256 88d2306224f2e390099d8d7938e7e444db399ae5ba1191caa5ce0f782a7b699e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp36-cp36m-musllinux_1_2_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aee664b800fa4e198d2352db36ef697985560ec0fde4a55b4c6afce9ad814132
MD5 f1b84918f6d7f801d029e5a9f0d11c98
BLAKE2b-256 b632e4290ea37ecbc4a4b2d637656f36e799fbc19f57657ef7cceccd06a2b84e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1f65d6a8441b449347c5d4fd70e43d5b8785ba601f016342adfe3cbbde78c8f
MD5 526c6f299ec8d7a59c42a5b99e428c49
BLAKE2b-256 453abf8cc70c468781596e1bf5f11c2264174d8a9bdcce5d5f7bc30689e26189

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

File details

Details for the file pyvoronoi-1.1.5-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyvoronoi-1.1.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e9e733501419b437f03aceec3450f62fcfce4d879e37d9e07b899a2f8fc4d36f
MD5 6b783742dc55cbca29022cf6234d8f7a
BLAKE2b-256 b50195726fed68b3bbfacdb89486bae280c9119168240699d8b17eb9681c4231

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvoronoi-1.1.5-cp36-cp36m-macosx_10_9_x86_64.whl:

Publisher: pypi_release.yml on fabanc/pyvoronoi

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page