Skip to main content

Python bindings for the schiebung core library

Project description

Schiebung Core - Python Bindings

Python bindings for the schiebung core library — a fast, memory-safe in-memory transform graph with time-aware lookups. Useful for multi-sensor fusion, simulation, motion capture, AR/VR, and robotics.

Installation

pip install schiebung

Quick Start

import time
import numpy as np
from schiebung import BufferTree, StampedIsometry, TransformType

buffer = BufferTree()

# stamp accepts int (nanoseconds) or float (seconds since the Unix epoch).
transform = StampedIsometry([1.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0], time.time())

# update() takes a list of (from, to, transform, kind) tuples — push many in one call.
buffer.update([("world", "robot", transform, TransformType.Dynamic)])

result = buffer.lookup_latest_transform("world", "robot")
print("translation:", result.translation())   # python list
print("matrix:\n", result.as_matrix())          # 4x4 numpy array

# StampedIsometry implements __array__, so it works directly with numpy:
inverse = np.linalg.inv(result)

Documentation

Full documentation: https://maximaerz.github.io/schiebung/ · API reference: docs.rs/schiebung

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

schiebung-0.5.1.tar.gz (110.4 kB view details)

Uploaded Source

Built Distributions

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

schiebung-0.5.1-cp313-cp313t-win_amd64.whl (604.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

schiebung-0.5.1-cp313-cp313t-win32.whl (573.7 kB view details)

Uploaded CPython 3.13tWindows x86

schiebung-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

schiebung-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl (970.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

schiebung-0.5.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (834.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

schiebung-0.5.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (881.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

schiebung-0.5.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (801.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

schiebung-0.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (794.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

schiebung-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl (714.6 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

schiebung-0.5.1-cp312-abi3-win_amd64.whl (605.1 kB view details)

Uploaded CPython 3.12+Windows x86-64

schiebung-0.5.1-cp312-abi3-win32.whl (574.2 kB view details)

Uploaded CPython 3.12+Windows x86

schiebung-0.5.1-cp312-abi3-musllinux_1_2_x86_64.whl (1.0 MB view details)

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

schiebung-0.5.1-cp312-abi3-musllinux_1_2_aarch64.whl (971.9 kB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ ARM64

schiebung-0.5.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (835.9 kB view details)

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

schiebung-0.5.1-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (881.7 kB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ i686

schiebung-0.5.1-cp312-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (801.7 kB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ ARMv7l

schiebung-0.5.1-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (795.6 kB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ ARM64

schiebung-0.5.1-cp312-abi3-macosx_11_0_arm64.whl (715.1 kB view details)

Uploaded CPython 3.12+macOS 11.0+ ARM64

File details

Details for the file schiebung-0.5.1.tar.gz.

File metadata

  • Download URL: schiebung-0.5.1.tar.gz
  • Upload date:
  • Size: 110.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1.tar.gz
Algorithm Hash digest
SHA256 c474688b1560aec2ca6242f26b5916089d7d21d5f0b3d946f78d3fd84c9f50d9
MD5 42f00cfdc51bda2e3077beb09ac9fe05
BLAKE2b-256 5adf3fd85745e5ace74ba1c44e32079be6036d41f8571068359f0670775d7b38

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 604.6 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 8c019015e7ce9325a421788e292ee88cb834ededc1d5d8097c774411bf50de1b
MD5 f0a44f67c88736d609a9dd35888f60f6
BLAKE2b-256 33766df33a6f4319804289ad4b3d46267ad00fc0c2e2f433ea3bf662cb56ed99

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp313-cp313t-win32.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 573.7 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 7f355119dc639f0db78180c32a6d6ba5ea5e179eaf1d6cdf8eccb2b287cd7262
MD5 d3b5ef608fbd024662dcbd84510c4f61
BLAKE2b-256 ca2bffbf4a4ff5f555b78a0e9b1969792c394d406a87e20b88ef6aeda557dffe

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62f009c1d107cdd15a5f863738c5269cde95f14887edb5936df6ae2afc69e032
MD5 8f762c0f7125a0c8868cc0314ecbf3cc
BLAKE2b-256 12ba40fc5d909fa38b8185c42cd75ced04a0add533c84ae214ccfdd892474b72

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 970.7 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ca556ca0b18b7e72577dc3d0f7bec18a95b5c86ff505657f2469ccf94a0b576
MD5 d1ae49ad83bc47e1733972db0fd3c9a9
BLAKE2b-256 0f42aa95931a7dc3baa8908d3b70bb9749a894f5bd433e220497a8975c40c73e

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 834.7 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78f93e9aa528dce96b9faa96543261a9fbf8454ccd50e7983806f5223ba10c9d
MD5 ab55d763db3965f2e3a10f2ff71942da
BLAKE2b-256 809cad735cc261abcea756408b0aef29c7a1f4f06def7e2e6bfd6cdb90a26895

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 881.2 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01bea45186038d1d8ae8816c21b00c721cb64cc557b3e2eda434549aed3b5fae
MD5 4042c643cbd390ab1e8aea6128656fa2
BLAKE2b-256 3b347821d9bb825fc9a8310692fb13201fb04488b09b628297509962a5c98528

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 801.3 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d561162bed8c5482a4ad4e4e1870466b115b465c3ae8ad14844923afd9c04192
MD5 d26a61e95e3e75b1e0638be21e9b62c5
BLAKE2b-256 54e9eede3066a45a907c5f4c34ca32e35ab9c287bea8102726dfa158d05d1159

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 794.3 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee3e9bf051c7154687c984edc7af370bbae15b86f45be984afdaf5ca9a8d10a8
MD5 3078dda513247e0e0e3a17d1c0aeccdc
BLAKE2b-256 5e1bf32437f4ae0f0bc5014afe7b71ba7839d16eee8e6c5ee348219b4cb37b92

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 714.6 kB
  • Tags: CPython 3.13t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e910ce2b3e433b3d792e970f8a0f09ef34ff01c60a89a0800b7661ba71708571
MD5 41891591a7dec3bc40e2ae79daeedaa3
BLAKE2b-256 b0c1aebf6b905c2569a2133d1047eee246f889bf7e6d08368148f970d84c3e9f

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp312-abi3-win_amd64.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp312-abi3-win_amd64.whl
  • Upload date:
  • Size: 605.1 kB
  • Tags: CPython 3.12+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 9fe9dc255da24f5ce653b1efb787bb1c743be3219ce92d73db16a26e0e89c2ed
MD5 5de444a31e06edcd412a8d80c9c568fb
BLAKE2b-256 80c4fa2b6712f8bef0602815e2cacee90893b74006c6665bb416651767444af9

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp312-abi3-win32.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp312-abi3-win32.whl
  • Upload date:
  • Size: 574.2 kB
  • Tags: CPython 3.12+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 72d8470b039343594a605589d27780842f3516925879048ce3267bc8aa88aade
MD5 6cf4e89fd0ec5769d0b9189a0a4706fe
BLAKE2b-256 223f85c2120ae32b39db00a45a16a7bd15d6f80d41b64178177db44842533e63

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp312-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp312-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp312-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0ed47605a956825cb966a97de1f3dafa18aba4a752e2ca19632ca745f291d95
MD5 e44c9c4f498f0415156c8dc76eb1b120
BLAKE2b-256 50a995c067e7c1fa94b6f154695679a9370f1809450f3919813ebae106f113e1

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp312-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp312-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 971.9 kB
  • Tags: CPython 3.12+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp312-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a40cb2ad5cbfc616b1707e15f25c157d27adb059e702a92c8eae7d77407db62
MD5 f63b892f0e6ca1f7d5073d8cccff79a0
BLAKE2b-256 646ece8d791deb0a4b8736abe483cc402c9a76eab03664519bbf07c6c111228a

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 835.9 kB
  • Tags: CPython 3.12+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07d53c39ad05bb1c843067912aa2674220a5cc763c9fbe84f69d26b5839a22c8
MD5 f050ccc883a9bb91261f1f9ce16f9655
BLAKE2b-256 d191153e844b3bce39aef933723045913113212254f51bbae3451659cff8427e

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 881.7 kB
  • Tags: CPython 3.12+, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5ae5320d6434cc2d76b84ff0275f2df6568549da13e0083811b8956b53380874
MD5 4b16a2b2d43ad07581e4f2077f68ab84
BLAKE2b-256 1fd7e839be716ba87a7b140cd7db514cf7a36da8d97fb89e002d7d54fc0f8e09

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp312-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp312-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 801.7 kB
  • Tags: CPython 3.12+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp312-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c26dbdfe657fba59e13a212f42a419cc3c141d533e5485d36a9555b0a9d86af6
MD5 b07c6a0289cac6aa38fdd15dc1be851a
BLAKE2b-256 aba92b55267a60716020c987d19b36b01c4ac68da8b913c407d239e5e56d9f5b

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 795.6 kB
  • Tags: CPython 3.12+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f1c4096f121883d48d89d7c9beee49c9d97eec19244b4c36db8b7ace3b39acd
MD5 d126f46d51f603e80d792d8315a50e17
BLAKE2b-256 1b1ef938009e1a95693aa409bd72ff5898cdfbcce431f5491a4cc9b926f0ace0

See more details on using hashes here.

File details

Details for the file schiebung-0.5.1-cp312-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: schiebung-0.5.1-cp312-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 715.1 kB
  • Tags: CPython 3.12+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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 schiebung-0.5.1-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca4573b6d2c8c97290b9f38c86a7a59e7b926541d6f3851f48df2318629fb64b
MD5 6f26de277f9afacb758793acee13cae7
BLAKE2b-256 59a36bc9b25b0aa0a30cf2b2c78d3e3c795e00e63f358b8eae7cce482b2da71f

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