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.4.1.tar.gz (104.0 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.4.1-cp315-abi3.abi3t-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15CPython 3.15+Windows ARM64

geomanpy-0.4.1-cp315-abi3.abi3t-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.15CPython 3.15+Windows x86-64

geomanpy-0.4.1-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

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

geomanpy-0.4.1-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

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

geomanpy-0.4.1-cp315-abi3.abi3t-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.15CPython 3.15+macOS 11.0+ ARM64

geomanpy-0.4.1-cp314-cp314t-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows ARM64

geomanpy-0.4.1-cp314-cp314t-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

geomanpy-0.4.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

geomanpy-0.4.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

geomanpy-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

geomanpy-0.4.1-cp310-abi3-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10+Windows ARM64

geomanpy-0.4.1-cp310-abi3-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10+Windows x86-64

geomanpy-0.4.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

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

geomanpy-0.4.1-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

geomanpy-0.4.1-cp310-abi3-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: geomanpy-0.4.1.tar.gz
  • Upload date:
  • Size: 104.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1.tar.gz
Algorithm Hash digest
SHA256 a6af2f3dd2bc026dfb930e7db72812a4516a337b25bcc08c3704832ddb83f4d8
MD5 d0ac7bd7436f9fe801f0b06fd585a54f
BLAKE2b-256 d33e3f184e3c10d9d25fc98b7f258ee04b52666b7fd8e0e7727b58e399c37fc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp315-abi3.abi3t-win_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.15, CPython 3.15+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp315-abi3.abi3t-win_arm64.whl
Algorithm Hash digest
SHA256 63564ab3ee146f49edcace1b9daab813f02ac7180b8ae6ccd5c5aa594f02508e
MD5 e21f69b84dbd54c0b2fffc6bded5cb68
BLAKE2b-256 421ec51a7cceedb926f864ead8c66ae181662975e4b3e83a8fe1417911d69f73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp315-abi3.abi3t-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.15, CPython 3.15+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp315-abi3.abi3t-win_amd64.whl
Algorithm Hash digest
SHA256 2a4e071791636c6792f429254932ed1946aa9dbf46845e200a8a41c5ab655fba
MD5 34965d586a62ed5d3523e6e66b9649aa
BLAKE2b-256 9e4bcd67101c3c0f1dacdc3a0b42ea3138559dcf7f9713963d345966e1d9f740

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.15, CPython 3.15+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30866fd6ec9df1c690b0d5a5ea15f19ef305c479e38bd02079afc937ece06e3b
MD5 8a482e51bf6b12f06c4f079af218a1de
BLAKE2b-256 181bf6b37c1083fc459d4335d9788ae739ddc1490d9bf1be86062b0c16fe01c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.15, CPython 3.15+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 012c74d5864790a00c0ff1f7509384637bf948e03e642e3a9800e6c1014e180f
MD5 5a6e46eb3a8432c083f1f33f42eb0cf3
BLAKE2b-256 751d488c2c9b3e81f36ec6feb515f77d88a0374659d366d168412578618828c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp315-abi3.abi3t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.15, CPython 3.15+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp315-abi3.abi3t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a3d722baf8c125f7405f34e24538e78125e6dc0dc83e146abb5e6dd5830567a
MD5 315ab8de087bf1722db9cf2e32552980
BLAKE2b-256 64aaa9fa7430cddc93a1ec887e24b4bb237ab0ae3e236ac810e0aa43a3db4ce9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 a731d469a0f1c36619f635b65a3f7ec2f20297b3c393b97ed18ec0e4982159b6
MD5 9da4b237e30750eeb0fab291d0dd735a
BLAKE2b-256 35acaa3ba350acc6e1f6dafc8b226c4c3440fb01e586d2484eb90289a6cb0338

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bb03df3eea8f635e722064fbe77162ae7b77fdeab6d1080f9d7b8c40801cd454
MD5 edd705e8847d6099995dd8bdcea65c4e
BLAKE2b-256 7754811451627659db549e723d954d7f1014937546dd819c0d82bd97294f73fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c06c83332b16e2a1eb0e3b586fc8856087ca8357d2053e1f7ddfbe5d1f46bcff
MD5 65d2dcf3f1c57d6c95b26ffc02af40a1
BLAKE2b-256 1421c75ca04a9775ef9e36bfde483419c87c0301c33c23b445d4024ebef3d557

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ac04cdad34a105aacd7f138eccecda3f1891f1e6f5b6da5dd7dff49e6dc1192
MD5 2f9735dd6aaaa70fdc89dd624ae96a0a
BLAKE2b-256 bc3eb3023c86d0f6716006fe8e8422530ebcd39ce3190367b3b6da6076c5a4bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98973a8e11aef966aca6ff3a690bad7315a09b8aad92c65054c42f420125e94a
MD5 887f1c600773d49e6ba7872e8bb20e45
BLAKE2b-256 23fe575c9e107adbcc943430384246fb3ab27d7ceef1c78c8ad8a5de183a173b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp310-abi3-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp310-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 cd5d74ad71e4e70fc14b1779c5bf71d0ca74eaf286c93d1af5d169f99ff296dc
MD5 a0dd6b8bfc27e95e693ac13cdff4712f
BLAKE2b-256 7c06201fb7ceb5a8664350108f4376d1eee2512522f792f0a90af58d82f60ce3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 d1d2c599695b8409119c5deec4d3e683ddf491155371f3a02c965da1f5546e21
MD5 2ba28ab0f2a21eeaeed97366dc9bb918
BLAKE2b-256 932c7134382834930da57bb43a3a100510161ff9e87832672e215640881ab82b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b29d8c3053610acdcacc0582c1ce3e48134633f9fd312ca9c6339f89cdd040b9
MD5 52763b44a1accc9a715bd3042466be23
BLAKE2b-256 4e75d2f5a7ad9c887154aa91b3b813905eb1685500ba3e9b068456d1eac9d30f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f07018eed653d34a0bf488f1e08a466c9c0e3eb639c7fa058b9a05b0e2c3ca9
MD5 2731d2318b1ce38168aa7df4b6fd1f35
BLAKE2b-256 86e1f587fc6993683a266006ff6595578663ea909135dacb3b95079e5d25515a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.1-cp310-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.4.1-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da468b0ba9e88a7d57416009cdb5da971fc560c92e137507fd81c1e73472abf7
MD5 5f0e5584d3738ac5b0c5cb4e3f8b71a3
BLAKE2b-256 3731ed658c4ac61305c7085651bcc9be0dcfda2e9665afa118a597b781f0e2b6

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