Skip to main content

No project description provided

Project description

rust-geo-python

Fast 2D geometry for Python implemented in Rust. This project exposes geo-powered operations (distance, relations, boolean ops, buffering, etc.) to Python via PyO3 and NumPy arrays, with optional robust overlay helpers powered by i_overlay.

Status: early, API may change.

Features

  • Python classes for core shapes: point, line, line string, polygon, multipolygon, rect, triangle, and geometry collections.
  • Geometry operations: distance, containment, intersection/union/difference, buffer, area, validity checks, and relations.
  • Vectorized distance helpers that operate on NumPy arrays.
  • Optional robust overlay utilities for tiling workflows.

Install (from source)

This repo builds a Python extension with maturin.

Requirements:

  • Rust toolchain (edition 2024)
  • Python 3.7+ (uses abi3-py37)
  • maturin

Build and install into the current Python environment:

pip install maturin
maturin develop --release

Build a wheel:

maturin build --release

Quick start

import numpy as np
import rust_geo_python as rg

# Points / lines
p = rg.RustPoint(1.0, 2.0)
line = rg.RustLine(0.0, 0.0, 3.0, 4.0)

# Polygons are defined by an exterior ring and optional interior rings
outer = np.array([[0.0, 0.0], [4.0, 0.0], [4.0, 4.0], [0.0, 4.0], [0.0, 0.0]])
hole = np.array([[1.0, 1.0], [2.0, 1.0], [2.0, 2.0], [1.0, 2.0], [1.0, 1.0]])
poly = rg.RustPolygon(outer, [hole])

print(poly.area())
print(poly.contains(p))
print(poly.to_wkt())

Vectorized distance helpers:

points = np.array([[0.0, 0.0], [5.0, 5.0], [2.0, 3.0]])
polygon = np.array([[0.0, 0.0], [4.0, 0.0], [4.0, 4.0], [0.0, 4.0], [0.0, 0.0]])

dist = rg.points_polygon_distance(points, polygon)
print(dist)

API overview

Python module: rust_geo_python

Classes

  • RustShape (base class)
  • RustPoint
  • RustLine
  • RustLineString
  • RustMultiPoint
  • RustMultiLineString
  • RustPolygon
  • RustMultiPolygon
  • RustTriangle
  • RustRect
  • RustGeometryCollection
  • RustGeomVecCollection
  • RustIntersectionMatrix

Selected methods

RustShape provides:

  • distance(other)
  • unsigned_area()
  • hausdorff_distance(other)
  • bounding_rect()
  • contains(other)
  • contains_properly(other)
  • intersects(other)
  • relate(other)RustIntersectionMatrix
  • is_valid()
  • to_wkt()
  • buffer(radius)
  • intersection(other)
  • union(other)
  • difference(other)
  • boundary()

RustPolygon / RustMultiPolygon:

  • xy() (NumPy arrays)
  • simplify(epsilon)
  • area()

RustRect:

  • xy()
  • to_polygon()

RustGeomVecCollection:

  • distance(other) (pairwise distance matrix)

RustGeometryCollection:

  • len()

Functions

  • point_polygon_distance(point_xy, polygon_xy)
  • points_polygon_distance(points_xy, polygon_xy)
  • points_polygon_dist_mut(points_xy, polygon_xy) (parallelized)
  • polygon_polygon_distance(polygon_xy, polygon_xy)
  • from_wkt(wkt_string)
  • union(polygons)
  • union_with_adapter(polygons, rect)
  • intersection(polygon, polygon)
  • intersect_tile(multipolygon, tile_polygon, rect)
  • point_in_polygon(point, polygon)
  • union_set_shapes(...)
  • intersection_shapes(...)
  • difference_shapes(...)

Notes

  • Coordinates are float64.
  • Polygon rings are expected to be closed (first point == last point).
  • Boolean ops on shapes currently support polygon and multipolygon combinations.
  • from_wkt returns the most specific class (e.g., RustPoint, RustPolygon, RustGeometryCollection).
  • buffer() is not supported for RustGeometryCollection.

Development

Run tests:

cargo test

Build the Python extension in dev mode:

maturin develop

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

rust_geo_python-0.1.8.tar.gz (24.4 kB view details)

Uploaded Source

Built Distributions

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

rust_geo_python-0.1.8-cp314-cp314t-win_arm64.whl (645.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

rust_geo_python-0.1.8-cp313-cp313t-win_arm64.whl (646.3 kB view details)

Uploaded CPython 3.13tWindows ARM64

rust_geo_python-0.1.8-cp313-cp313t-win_amd64.whl (746.5 kB view details)

Uploaded CPython 3.13tWindows x86-64

rust_geo_python-0.1.8-cp313-cp313t-win32.whl (706.1 kB view details)

Uploaded CPython 3.13tWindows x86

rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (906.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (996.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (831.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.whl (970.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.12+ i686

rust_geo_python-0.1.8-cp313-cp313t-macosx_11_0_arm64.whl (791.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

rust_geo_python-0.1.8-cp313-cp313t-macosx_10_12_x86_64.whl (876.7 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

rust_geo_python-0.1.8-cp37-abi3-win_arm64.whl (651.9 kB view details)

Uploaded CPython 3.7+Windows ARM64

rust_geo_python-0.1.8-cp37-abi3-win_amd64.whl (751.9 kB view details)

Uploaded CPython 3.7+Windows x86-64

rust_geo_python-0.1.8-cp37-abi3-win32.whl (711.7 kB view details)

Uploaded CPython 3.7+Windows x86

rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_x86_64.whl (1.1 MB view details)

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

rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ i686

rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARMv7l

rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARM64

rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (910.2 kB view details)

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

rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ s390x

rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ppc64le

rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.8 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARMv7l

rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (835.6 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARM64

rust_geo_python-0.1.8-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl (973.8 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.12+ i686

rust_geo_python-0.1.8-cp37-abi3-macosx_11_0_arm64.whl (796.9 kB view details)

Uploaded CPython 3.7+macOS 11.0+ ARM64

rust_geo_python-0.1.8-cp37-abi3-macosx_10_12_x86_64.whl (880.2 kB view details)

Uploaded CPython 3.7+macOS 10.12+ x86-64

File details

Details for the file rust_geo_python-0.1.8.tar.gz.

File metadata

  • Download URL: rust_geo_python-0.1.8.tar.gz
  • Upload date:
  • Size: 24.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8.tar.gz
Algorithm Hash digest
SHA256 c5122cbb4d5a9141b0a07792a30a2d306343206e5711bc33a5db206aa6b9587c
MD5 e43179d68cc55a0b3728a48999f1adaf
BLAKE2b-256 866a8376c49e4b1c2c46241ffeb419f3428b88e40a48992fc842a5761882c648

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 645.6 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 40632b9157923df8063ab5606f927f864385b3e17ea3b90dc3848b90c12c27aa
MD5 cddaaf53ff00d7ab5a85ddb727b85c16
BLAKE2b-256 f7d4f8a7037607aa8464b81e80a3888a5b274e3e7ca4975345135716edab572c

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 646.3 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 1475e9079440b256fcf2dc05d6a16345b4a57bdf3fcb3cda5442b6faa29930c2
MD5 7e6bb99a4d2f3c2e325f896f142b7c96
BLAKE2b-256 df6d7c3a0a608590a8d7285385e6fff622d928f2a6ef9bda0c0bc0a91b18c44c

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 746.5 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 7ca595d940d849f40af2ddf70bf3a9103228fa785b44a49c97b99e2c75373421
MD5 d2ce35949bcecd3c069e41424059e4fd
BLAKE2b-256 d945d6c4f1ec9e08cf5c0cef432d8756988a8928fb8479ee97502c9d00959a68

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-win32.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 706.1 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 f2c45f473d9a4d4a31fcd775261d49a3c3cd71d6e85da5c00dbc8448465bf22b
MD5 1070a158da0f012b97f2ed5914cc3c91
BLAKE2b-256 dd870dca09936c4819c3d1a7876f33562e458aa797bfef8b89c1b20ec4d6255c

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f99ce5dff5cc2bc442cdaa5e38dbe164ca7c5c633898bd2f10903de9cfe4ce13
MD5 2868f2bcfd3bf1873d1f2ccecba320a9
BLAKE2b-256 a68eb4fcd033de61930a99222c45cf4a6ccc1ff648072d319c39fb3940488c3b

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d82bfd8da8cc306d780cd1fe92c29c34e156cd7f6691ddf5788642eb4b612f5
MD5 5982a4c871f9c5a0bfdf533a356ffb6f
BLAKE2b-256 e08de7f0f135d6ff66045c394e45cf76c15a50e4766b50977d544f95b7406b74

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d8f0bb4b1d16ebb8956d67f7d792e6262f89d173d440a0fdcf5b9d466be6653
MD5 5b3698370ee871017c2cb88a327310bf
BLAKE2b-256 7a4f0460b47be629de520ede9c86e55e086439ce5e45dd1cc28e742065c1b73e

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f006082ab0aa1a126892483bd0fabb17216756574c4977a9f373351d2aef1689
MD5 d0a47c864b00d829f546192c7d49c9bb
BLAKE2b-256 3e18af8bf6c04bde53d741f8caf3141d6cb4e6bcdc2c05329350f32a1995de38

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 906.4 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8739765c65306a065d54de1f551880eebb61a411d57b5d7c3dbe703410c112db
MD5 804dc988495f7fcfa1162578670376ec
BLAKE2b-256 1a744154afbb7deea5f0c4a471a5adccc4f36a8ef2d400f4cf22e611d5b3ecc2

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8fc76469068ac404b0f015c3a17db653404b80b518edb712c3d0e22ed4d2768c
MD5 4e261c628bd22e464f524bfac1e5a0ff
BLAKE2b-256 26caac00d0a35a092798acbb84cbd5c8798fbc3f4038ed185d064564dbc09ff6

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 996.1 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b69f162fdbfa745cf6033b62a27fb8fad100718552f19a2c1338f8b71690056
MD5 222da5589fb382e626e80cdc448172da
BLAKE2b-256 e8e7a607c0678cff0c2a2988389254a3347e49565d933f67954845d6c251ff51

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 873.9 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 773dee92bd32bec5a0913e8ee20a11018bdf24fe408c97ae74e360e47f1b8ecf
MD5 749a0bffa69034b21eab7f1b651841f5
BLAKE2b-256 7c616e75e9f2026965f888bdea6de2ac248951af6c28e1520f0590e20eb2b825

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 831.3 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e7ed40d6e7fa507d943e15275954af884b9700ed26037a3368a2072291baa5d
MD5 26ee5c7f48fd33a2399c0fe65e94aa88
BLAKE2b-256 17df811a1a6db706c8390b4f4f05cc84dff7d4939e072729d60826835a55f98c

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 970.6 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 50741e6cf135f0c44b0283dbf0a882f58505a7bdf6f0405a4ecf35f4f1b87dcd
MD5 7d24cbad4a81d4cd5231f4f540e18da8
BLAKE2b-256 b18ff5e7b8c33b32cad5c7364fd500a1fd972f657aed272d028b0bb5d215a9a8

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 791.5 kB
  • Tags: CPython 3.13t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efb0a12a7ae272c87f42cd739a2c6d149db8d53f2a6e6c56fc8f9aa565da174d
MD5 cbc8c8822a23a28ceb990a5115d12d0a
BLAKE2b-256 330333a7c03482b86ec866d49539dbd3f9ea0df59f41602fdec06d20b6ee1f49

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp313-cp313t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 876.7 kB
  • Tags: CPython 3.13t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e0f057c3e0be873623c8e604cc8cf2c09631d332510daebf2a721e1860b3a88
MD5 0e4ad935ffb69121dedcb0ef0fdef2c2
BLAKE2b-256 87e82e812221ee3c0c350c22636ea673e14bf847dcbed057e5614e91e5f416fd

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-win_arm64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-win_arm64.whl
  • Upload date:
  • Size: 651.9 kB
  • Tags: CPython 3.7+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 d8f196d554b8d71854d3d2a87aaaa492ed6ba7eeb66aee431cce727581051596
MD5 c37dacf453f864bcd0d4e1a0ae8542c3
BLAKE2b-256 925c1b8674a55442bd5cbacc6f6eb4775209f55ef6ed4a58486c161c11062194

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-win_amd64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-win_amd64.whl
  • Upload date:
  • Size: 751.9 kB
  • Tags: CPython 3.7+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 44d256a429bc95294160c493a09da13550913d2016f6844b1f7e4266e4de5a0c
MD5 59e9da301ad647b9c3e16761fa6a0ce8
BLAKE2b-256 ac09165af74debeb68d978148714862f82def38fe38f134f5f0bf615f0e7cae8

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-win32.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-win32.whl
  • Upload date:
  • Size: 711.7 kB
  • Tags: CPython 3.7+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-win32.whl
Algorithm Hash digest
SHA256 a231550228c767e2074bdd4b1667cbef5c8c9cd42a0d7634b8e4f432cbb0a273
MD5 14120b38b368ac35cbaabae7742dc391
BLAKE2b-256 974ed13ee6783ed715c61e8acf9d5f6eca5349e3b6d8ead014752d93865ebe69

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9fe39b4466a8759960dcd521a7e6136002013ee2bcc3b00bf1749e1fa50a64a
MD5 9b13abbc278ee22aca4c3eb30f70167b
BLAKE2b-256 adc30762ce97e1026452fe4370e8e808c5614a367e95bb8248df13aab094bcc4

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66ccc9b26736a6dd9ba3b381db411579f1c4c63c52ce8f6aac9eeb0ea57f0456
MD5 8c896bc595d89cf39a8dce74409566b6
BLAKE2b-256 5d8afd9796c83fafef15d1d29dbf6722652f0307212028e74a4a76e0cebeae04

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b40758752d82342565840c9b2563739a85d570c886fd95288d3409c5e079423
MD5 78159439816a91a0faba70560f90d4ed
BLAKE2b-256 a8a5a3dcdf20549e2af2cae15af3f9f6e5d846ff50fa3b39dfb77c101f4ac566

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a4033b077a1239fc3c693199db5873d83e0d867856e43edc4741c61442d4997
MD5 790a9d6ea2c996522aabff5a98ab3b53
BLAKE2b-256 47035cceb6cbc87a0e1c1a3b469e787aae97035460404f786aa8d10df09e1051

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 910.2 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30c565c9e4e5d110eb8771ef6133621b6beff3c75014065a56008350799694fc
MD5 42507fa6acd847a9f69dd5eb7142b467
BLAKE2b-256 47093065d638300f536ce8c0ec3c553a43f940c6475e51f53cdeb596f9fb7905

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c85130e5ef080ff4fb464852198b45896cf803d5e25402f718e443b3250b4ebf
MD5 a491926ae93694fef61d9bbc59e58847
BLAKE2b-256 caf0b5c393daa3063083418c6d8b479e7d1d0c80bdea5a7a92056c167f093048

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e655434aea33110e03776b4620566a0882632fb8cbe7b80ef7c43f7ef89fce7e
MD5 708f840ff2a9b27ad5619d2555178737
BLAKE2b-256 f4778b7373badaf4e1176e1c01cde10dba4eae5c3619779c64883f8068b81db2

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 877.8 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 992ff90230d49029731e1710205f2d8389dafa7a2e656f014e1ef21f36c2530b
MD5 79fa2a15111940b52c434c36dda34acb
BLAKE2b-256 e535cbf53f8d7d768d1add31b38f9f62059c1708efd8ee58e2858d5999dac17e

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 835.6 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1359121873075c387e0f00f994d6431d3a4ada8284ab6ca83c5f05d1167b1c04
MD5 dbf5cc231dbab9c4b02847adc2fd4438
BLAKE2b-256 14d0bbc7a01d3a5327fda667924981d28e66933e67d49cc6d4bbd627d877bead

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 973.8 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1cb6c07cc64f4c94eb041bd019205f0d5c69395468455fa4ecb7f707400802c8
MD5 b6dff8e67086b7b093b0cfcacdb4192f
BLAKE2b-256 550497a75274072b31c1342b5a9d5df085159bdbc9baaa5decb1c5682ee064ea

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 796.9 kB
  • Tags: CPython 3.7+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 396cc0b9609b6c0b7ffbfda34f792961c2c7556546883c92eacab7bbd7a7d712
MD5 0571b844de4d05540772ead6eb736bb5
BLAKE2b-256 eddd43a319565525e321b9fef5b56e8984f220cc21225b505e0804e6ef623820

See more details on using hashes here.

File details

Details for the file rust_geo_python-0.1.8-cp37-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: rust_geo_python-0.1.8-cp37-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 880.2 kB
  • Tags: CPython 3.7+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rust_geo_python-0.1.8-cp37-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe91cab15bcced4e2082e818a45d3e504c375d241be80d85b71fe312c70fe2ae
MD5 72f3f753be18ddf77d86486012210b68
BLAKE2b-256 6c1d8da03e2f1fbd783eca245b1c45c872e4e44a2f9b9ff719296da63a022459

See more details on using hashes here.

Supported by

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