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

Uploaded CPython 3.15CPython 3.15+Windows ARM64

geomanpy-0.4.0-cp315-abi3.abi3t-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.15CPython 3.15+Windows x86-64

geomanpy-0.4.0-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.0-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.0-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.0-cp314-cp314t-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

geomanpy-0.4.0-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.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.10+Windows ARM64

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

Uploaded CPython 3.10+Windows x86-64

geomanpy-0.4.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

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

geomanpy-0.4.0-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.0-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.0.tar.gz.

File metadata

  • Download URL: geomanpy-0.4.0.tar.gz
  • Upload date:
  • Size: 103.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","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.0.tar.gz
Algorithm Hash digest
SHA256 4d82a3a284f6625d13b73c963de1bc647453bc395ca8b4d573bc0d047e1cceeb
MD5 6bab37609db4d649ccd3f8752420dc6c
BLAKE2b-256 2c038107fed94982a8231b637fb80ed64346d09d5ed664d098f110d85bf60c8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-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.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp315-abi3.abi3t-win_arm64.whl
Algorithm Hash digest
SHA256 c69797dfe2032dbbd51e1465980a9efd48f328c55f52be08914d41a2d6065717
MD5 8444cdf09d54df625703f4edf867bfb1
BLAKE2b-256 9dd27268292ecb0d00d9e96c303793f21a57551f72113cddf63556fe425bfcbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-cp315-abi3.abi3t-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.15, CPython 3.15+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp315-abi3.abi3t-win_amd64.whl
Algorithm Hash digest
SHA256 5b952c71535125fce3e872d0a482b7afffc34381949984d34646720df94d827f
MD5 2701700a453a4185d862ca3758003b47
BLAKE2b-256 5ea966524fe3187a4d4c866cbd6b13d31337883dc95d85c875e70f8fa08f91d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-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.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40e5dacd85a56f9293287438898dd95a17adf27ced66edc4d3e63237e70f3632
MD5 e2942710516a8bdd56fe4bb84a3e5abc
BLAKE2b-256 1fd7c229193f365f8e3329445a65d99f4ee105698caf0c1a898bccd37c2e5520

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-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.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d7a5b3f3e24aad9fe99b5f2156cfea0869468eae26b1c2b176d6046d0cb66da
MD5 eed4b6f44e79adb0cb8c04a250478fb6
BLAKE2b-256 52580cc03ac75f55b3e295eb3dffc69c4652098e84a81388f03da1024d4d83ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-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.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp315-abi3.abi3t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a511d1a37ec3aaf92062f983fc0332417286ee6955664a158323ef599c9fdbe
MD5 8f971daa0888c22c98b4a8addc9b5910
BLAKE2b-256 d6c65a361245d4501ab8e0d4801544316fa7d8306d528e84aad0889adbad4d46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-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.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9e031e4d9f045e9378b8df24f89bc8591734f5ccc2c90176f4508f9cc8bb2e02
MD5 8958be663c167bcec3e99a704b63bbef
BLAKE2b-256 570bd30add580667eb47e3032a64c628ce3ed22451e9c2a8596ed494a397ccbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-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.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3875dfc62dc2e2e8499f321d6c715a3c264a5ff7e2b93be1b78d31ef522fc6db
MD5 0d7cbecf4b7dd029fcd2ca5b8a6f1004
BLAKE2b-256 78b0d9e8b0d6fe829d196629318c9147ca7a301f4fa3cafb1f9d045956024ebe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-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.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8381016e0a6c565651ce7c247dac7a901999c0ffbcdd64c052516a5c196a323
MD5 d6d1cd2e5e46ae39f4bd4ca7bc37e846
BLAKE2b-256 1fc0d2301463d190cc19142e5dc6621ae5959caf696b35af5f4afdc998d4289f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-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.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9f1cbaf45ab5183db0456474cdc3dc35fb38032e7bdead82aec0712063c6f82
MD5 2c978b5805841c28e6089bfda95a1fe4
BLAKE2b-256 cdfe6c4d2ff77e061b1048a0b33ce9ee7a28405919aa09fd2e70139a7e80c0a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-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.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 680c6a3a874ffe612c40988b5eb7debc15a445dd84fad5fb048c5ed9d8ebbcdd
MD5 bf63d15b4b3246ef9a1ae56991cf2ab6
BLAKE2b-256 0071416cf66303f362486699f57c2629f3fad37c37525a98a6736b51ca5e18ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-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.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp310-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 4cc3334ff4908b94a52f040c681ff5dab882e2e11977e83973e6aa28008775b9
MD5 ba049784d98d911eaef2bb02f800913a
BLAKE2b-256 8d0c17b1300fd7457b79ab1dd9091f69da5fca763f9a68e1992bf67647c2c12c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-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.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 aab1e6cac6ba305a7d6474c345a4120a338d80750d153a274ec1b3dd984da700
MD5 825ee358eb7a17c427ace899a071efbe
BLAKE2b-256 67493e7eb9f0d1a54be7d49930b61cc2792e7bb5bde46d8c809d9411879b9641

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac20d1f6d85d8b5a22841c07ec9dffa05324dd8fad2bbf436cb180aa36c5a0df
MD5 2462bb064fc932cb0e44580cf9299420
BLAKE2b-256 2d0f6286fdfdc9f1d9d938781eff7ce08a6e40c37806c78dc70d8e197fd31989

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-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.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29a33d3d94552de6df6f437b3f8a1596d8d3070d16219cdc99fb55fb279cdcb9
MD5 ca898373806ab23bb9b73d165e6b79f3
BLAKE2b-256 9c51dc21f6de2e432853fe973e1ebaae6745ab93296286843f382d2028ded65c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: geomanpy-0.4.0-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.23 {"installer":{"name":"uv","version":"0.11.23","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.0-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bd946990f30b43e0c42b4c9c28e02c958d89acd05240210d70585b6cdc130fd
MD5 a41cbd9b94060e64853744fb6b03806e
BLAKE2b-256 27925795875bda44f031126a41af82ae3421818d9d2637573e28dda5e1376e07

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