Skip to main content

No project description provided

Project description

geomanpy

Python bindings for glam and wreck — fast geometric/linear-algebra primitives and collision detection, backed by Rust.

geomanpy exposes glam's vectors, quaternions, matrices and affine transforms, plus wreck's collision shapes and broad/narrow-phase queries, as native Python classes. Every type integrates with NumPy and behaves like a dataclass for serialization frameworks.

Features

  • Linear algebraVec2, Vec3, Vec4, Quat, Mat3, Mat4, Affine3 with the full glam method surface (normalization, projection, interpolation, Euler conversions, projection/view matrices, …).
  • Collision shapesSphere, Capsule, Cuboid, Cylinder, ConvexPolytope, ConvexPolygon, Line, Ray, LineSegment, Plane, Pointcloud, plus SphereCollection and Collider aggregates.
  • Transform & query protocols — shared Scalable, Transformable, Bounded, Stretchable, and Collides interfaces across shapes (scaled, translated, rotated_quat, transformed, broadphase, obb, aabb, collides).
  • NumPy interopfrom_numpy/to_numpy and the __array__ protocol on every primitive.
  • Serialization — instances expose __dataclass_fields__ so orjson, msgspec, and pydantic treat them as dataclasses; pickling is supported via __getnewargs_ex__.
  • Fully typed — ships a py.typed marker and complete .pyi stubs.

Installation

pip install geomanpy

Usage

import numpy as np
from geomanpy import Vec3, Quat, Sphere, Cuboid, Collider

# Linear algebra
a = Vec3(1.0, 2.0, 3.0)
b = Vec3.from_numpy(np.array([4.0, 5.0, 6.0]))
print(a.dot(b), a.cross(b).to_numpy())

# Rotations
q = Quat.from_rotation_z(np.pi / 2)
print((q * Vec3.X).to_numpy())

# Collision detection
ball = Sphere(Vec3.ZERO, radius=1.0)
box = Cuboid.from_aabb(Vec3(0.5, 0.5, 0.5), Vec3(2.0, 2.0, 2.0))
print(ball.collides(box))

# Aggregate many shapes behind a single broad/narrow-phase query
scene = Collider()
scene.add(box)
print(scene.collides(ball))

Convenience aliases are provided for common names: Quaternion (Quat), Rotation3d (Mat3), Translation3d (Vec3), Transform3d (Affine3), Box3d (Cuboid), Sphere3d (Sphere), Cylinder3d (Cylinder), ObstacleUnion (Collider), and PointCloud (Pointcloud).

Backends

geomanpy can target two Python runtimes, selected at build time by Cargo feature:

  • pyo3-backend (default) — builds a CPython extension module via PyO3.
  • rustpython-backend — registers a geomanpy module inside an embedded RustPython VM, reusing the same wrapper types.

Exactly one backend must be active. The optional safe-locks feature switches mutable wrappers to RustPython's PyRwLock.

Building from source

The CPython wheel is built with maturin:

maturin develop   # build and install into the active virtualenv
maturin build --release

License

Licensed under the Apache License, Version 2.0.

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

geomanpy-0.3.1.tar.gz (93.3 kB view details)

Uploaded Source

Built Distributions

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

geomanpy-0.3.1-cp315-abi3.abi3t-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.15CPython 3.15+Windows ARM64

geomanpy-0.3.1-cp315-abi3.abi3t-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.15CPython 3.15+Windows x86-64

geomanpy-0.3.1-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

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

geomanpy-0.3.1-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.15CPython 3.15+manylinux: glibc 2.17+ ARM64

geomanpy-0.3.1-cp315-abi3.abi3t-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15CPython 3.15+macOS 11.0+ ARM64

geomanpy-0.3.1-cp314-cp314t-win_arm64.whl (987.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

geomanpy-0.3.1-cp314-cp314t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

geomanpy-0.3.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

geomanpy-0.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

geomanpy-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

geomanpy-0.3.1-cp310-abi3-win_arm64.whl (998.9 kB view details)

Uploaded CPython 3.10+Windows ARM64

geomanpy-0.3.1-cp310-abi3-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10+Windows x86-64

geomanpy-0.3.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

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

geomanpy-0.3.1-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

geomanpy-0.3.1-cp310-abi3-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

File details

Details for the file geomanpy-0.3.1.tar.gz.

File metadata

  • Download URL: geomanpy-0.3.1.tar.gz
  • Upload date:
  • Size: 93.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1.tar.gz
Algorithm Hash digest
SHA256 9b1890389fa6d3b494518b780edea72a5f24ebf62599bc42d363e02961df0c59
MD5 81ac5ada45d45164873684ce34cdfbc6
BLAKE2b-256 dd1b5ea7de81c727a78e8cba6965ef1d39be5c02cada58c3b1289c24f3645fde

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp315-abi3.abi3t-win_arm64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp315-abi3.abi3t-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.15, CPython 3.15+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp315-abi3.abi3t-win_arm64.whl
Algorithm Hash digest
SHA256 810fed693879261cc40eff57f22088e89b98fd0d945f6ad9467d095e3ecb880c
MD5 7f95c7bf0755743ba064ef0ff284bcff
BLAKE2b-256 60ebcd3322258ad549768c5c029d51ee27185387483f19cfadb65b540100d451

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp315-abi3.abi3t-win_amd64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp315-abi3.abi3t-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.15, CPython 3.15+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp315-abi3.abi3t-win_amd64.whl
Algorithm Hash digest
SHA256 c4cf23944eabdbb6c9c16ae6cde28c06ace18a34e30de57dac73e6e63919c71c
MD5 0c90ee2cda28bf5ff91e93dacabd3341
BLAKE2b-256 f27d34a497ab20fead4551b16934fef790abf23a96f50c63714dae99b4922c31

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.15, CPython 3.15+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aaf69d6741b59c5c6cc03f54afd478de3781abe19b4bc93c091d38919efd4186
MD5 d175d085f2a6d285081b2b5468f9e5f1
BLAKE2b-256 2807a90a014ff2417d31fa3f56af8ecb6d9883838e1634ae1688a02ca579bbe9

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.15, CPython 3.15+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77864f6f579c5869c339333e6d41a1bd8cd1eaef5597ee2707b54deefa6826b8
MD5 d620e5012a0bcb937c5a0dcfe23b1a00
BLAKE2b-256 2beab6927210c6c2e4e936b7898aec64186643d92cabccacd5a84e41c572ac3f

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp315-abi3.abi3t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp315-abi3.abi3t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.15, CPython 3.15+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp315-abi3.abi3t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97ca96f92982eca5b7c651d27ed4ebe0c99e9a4cd53b8175c09388f25a214d9d
MD5 b3a2e075b87c5f07bfa9fee8df441357
BLAKE2b-256 15b685626d61f7e03e23eb5e05bb1a9e553073edaf8dad0c51ab4456584fb39c

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 987.6 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 291109c703317047c30f0b980b5ff65c284da6615fc6a9fd75253bd74b742522
MD5 4e9cbab92928aa31a4d888304585d670
BLAKE2b-256 481832127d1f44b799823101c3d3a0b6b680ee0d5e144a3343da8577d98620ef

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a98acf010b28d9fb4162ea444c50e0eedc1966cd8450a6394c190c0b0171d845
MD5 6f7c5978f14e0abacd536a8fd19d90d6
BLAKE2b-256 33be9bc7300ff82ca70c876a69f562f4a6f5d12099506f80cb3bc8597cd0aa01

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cc0329c4e439398652bb29e44060374cad327b79aa00597540e65a5edcaf692
MD5 1c585bbc3c5e5b12e47cf7101ce81f96
BLAKE2b-256 2b7a89078161a8a70eb8e85c61c7e3c86f4753ca51e721bce449078a8368279f

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a21de48c881a79910396935636a36b1f60eb5e96fc4566a0806423f32981a86
MD5 36665ee32d22ab41d5c5ba09d3b65b3e
BLAKE2b-256 a29666bef09e55728405cc0f1e28a0ca70a3880ff2a02d9322eefc66cf7ea09e

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29a0b4cc69bcb4e02d14290e220bb4ae56f8e9cf749b758f23846e99f2f7d2c8
MD5 92f88098b8c1f14d1ac9d25184164f8b
BLAKE2b-256 0bb7d7331043ac6ecf35338a26fbc1c61db1beb8a5b0f9b697ff18ec4fd79290

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp310-abi3-win_arm64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp310-abi3-win_arm64.whl
  • Upload date:
  • Size: 998.9 kB
  • Tags: CPython 3.10+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp310-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 ef94902436bf65c6d9cf187129e55935923a0e289fef2ed436916b0ce84608b5
MD5 3943c361ccbab43ae4a1fb3b8cd2d9e3
BLAKE2b-256 9a633899c5d2ec6108885e2711ee724ac1ed25018983fdd021e2e26653376aec

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 56bd86d04690ba321d3333c17d9c760d687e2fa51c088ea7bace26a06b56320e
MD5 dc6744ba5246ad40ff0d0e4c7267c6f4
BLAKE2b-256 cf56d79f38ff3c5bff01ce1664f74ef3636477baf0a463bb3ecdf4d5920737cd

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91c30df5e384f29d507f25f577a08ba9556788c48eb3db4c93e765e312490317
MD5 e6dcc2d089b096eeab5234f0c50c5ac9
BLAKE2b-256 9155d711dcb9cdda80174cb8fc403b22c6008442551b57bf780a963d1ab78736

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca18026aa712c0d06f9b68d9073638b857a71d342f358bc488ba2da773555d73
MD5 70c962e5156b7437c0eafb6cd4468ea5
BLAKE2b-256 55db416ec1cf1b18484d16f921ab1158957df8de687aaa2244aa8acf48451085

See more details on using hashes here.

File details

Details for the file geomanpy-0.3.1-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: geomanpy-0.3.1-cp310-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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 geomanpy-0.3.1-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dace94eacc93988786422a75e3e3ca51c4be93a8e1c541bc345857f0d49e38b
MD5 a48c9950ef894b05520b1059eddeb05d
BLAKE2b-256 e1ea2488e1895d490869cc40158cd21cbae0167a752e6501a50440e7923e9233

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