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.0.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.0-cp313-cp313t-win_amd64.whl (604.5 kB view details)

Uploaded CPython 3.13tWindows x86-64

schiebung-0.5.0-cp313-cp313t-win32.whl (572.3 kB view details)

Uploaded CPython 3.13tWindows x86

schiebung-0.5.0-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.0-cp313-cp313t-musllinux_1_2_aarch64.whl (970.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

schiebung-0.5.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (835.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

schiebung-0.5.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (881.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

schiebung-0.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (800.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

schiebung-0.5.0-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.0-cp313-cp313t-macosx_11_0_arm64.whl (714.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

schiebung-0.5.0-cp312-abi3-win_amd64.whl (604.9 kB view details)

Uploaded CPython 3.12+Windows x86-64

schiebung-0.5.0-cp312-abi3-win32.whl (572.4 kB view details)

Uploaded CPython 3.12+Windows x86

schiebung-0.5.0-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.0-cp312-abi3-musllinux_1_2_aarch64.whl (971.1 kB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ ARM64

schiebung-0.5.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (836.7 kB view details)

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

schiebung-0.5.0-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.0-cp312-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (801.6 kB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ ARMv7l

schiebung-0.5.0-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.0-cp312-abi3-macosx_11_0_arm64.whl (715.2 kB view details)

Uploaded CPython 3.12+macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: schiebung-0.5.0.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.0.tar.gz
Algorithm Hash digest
SHA256 d124e2e0b665559a7fb92f355cfbb075d51f15b4d620af6784db5bc3a89492c9
MD5 4d20317efd6f6ab1ea2ee5a48377b1e5
BLAKE2b-256 663773ec6887c0e512ddbedffade77f0505b559a4932f4653f2bf820ff69468f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 604.5 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.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 0bc12cac67541a73b05dea013eff747b347c26e012b70b947a908a49998c8510
MD5 86d32831a9be2c280cc0cffefb46630e
BLAKE2b-256 cf5fd972e2ea650648b76df534dd50c658f545bc3198ebe8fc88f838fdceb5a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 572.3 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.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 eaa0c39131958df7f26a0248896419a21d08090ffaa4ebaef70fb90b35faa8c9
MD5 35a08fefda892940e2ee6d07f8a40be3
BLAKE2b-256 b0b67f17034149a1cfc20a6e6a8827bbc3a25aa69dbff05922c652b90781d563

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-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.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd7e71780372b1ecc5b1b004d7b3e76565ffb50928def57486aa7a65471e7c0a
MD5 12dc6f7e4728fd368cc065b8d888e120
BLAKE2b-256 971c5d199e5afca2ec312a45c8310f175324b1118e7d807e337a1f4fd5bcb543

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 970.3 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.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f0a5ac16af97056f1c822e6939ad80eb23f57571e18fa84a71c548ddf0fa766
MD5 a044af0d2ae64085f4f06ec6d5328e3b
BLAKE2b-256 b2a0247e90cbf7e4d84e554d4eaa7ba55cea3dc210bae9bec69ca7fb00402729

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 835.4 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.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcc443ae7234c893241308fa99f4a79ec419cf1335d27ffc3da2400e493ac693
MD5 e3dd059dac401967f1afc198adba5622
BLAKE2b-256 dea62fb17e73bf38973523a9a26cca921861b5d7a66b7bdc1bde3d82dca5333e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 881.3 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.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c96462527970796bccbd66c8f25891252fee7d63c344587a3e1614912a9e1d4a
MD5 657e1392685e36ee86026b77424956b7
BLAKE2b-256 affef263910c8ba873d93a79674298900350bf1ca2263b46d6d919a8f64134ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 800.8 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.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 294b5c9343db347b543b218c2a6c0d4e915b122784cfab3f861b6af46f4d9fce
MD5 462aa205348ef2c473a63365df213bfe
BLAKE2b-256 11b712d44ec38467fdd4bbb69a4eb8abbe7587d199233cbb796a81ba2418d591

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-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.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12c97b224a371c78c6c68c8213cd032e0f660d9b0113ae948da36b19458651c9
MD5 6657ccb6c7ccec141288ae025d1756ac
BLAKE2b-256 a02ffc9ab65c57012de6d2c0ea9a08947b2f7af64e492a7a63cdb3acb205899f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 714.8 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.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e24ceabc64531c0314711e0e902415ad43fa221b8700172415760875414b765
MD5 0cbbaa0ead814f300cc87aaafa56e4f5
BLAKE2b-256 e2c6e576cbae66d9c9ac28759c05deab39f6ea886f0783cf70eafaca7ab6c10c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-cp312-abi3-win_amd64.whl
  • Upload date:
  • Size: 604.9 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.0-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 e585cd21010a0d82e751266e6b40adecb3dff51864da8920e61ba05598d084fa
MD5 84f6fed20769c0060dab77d165ac554d
BLAKE2b-256 f592c3140d7b10e12bb8bdca9df637dee5b7db0b6f546ea07f4e4105fabece2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-cp312-abi3-win32.whl
  • Upload date:
  • Size: 572.4 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.0-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 3a63af3cd746bd4bde97bff9e4cb030c067ae13cb5a4afe69aa9309dc3c9f95d
MD5 fde1a71b861126f23edbb08d6570994f
BLAKE2b-256 f76554a2a7fb49fa700a77213cc5b73bd6797c284a09737b460ca72008071e09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-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.0-cp312-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fca3509ccde938b0150628c04b07ecafea1d716a96c058636cbf86b5aec72b8f
MD5 c5fdd2252d0b08dcd251f16fe6cea861
BLAKE2b-256 119c44f04a9e7461cbe0f3a3ebf725b632a3196ce26c367f85b63853dcc5d7c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-cp312-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 971.1 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.0-cp312-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2d648d3ce8cdc8fff5957f91c74aae1c4c24a3a65bb8efe9a06dcd7680ff3bb
MD5 f5e8a5c729059f78db1d4c0147314f77
BLAKE2b-256 d3ee52fb7ab8d3d0316cb1fd01e1e35eac38d049930518c1a1b542e5a0b396fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 836.7 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.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60e2cfa0e4f3c39874e5a03289a11801d328563ecb9075c9769b13e8581c6a4f
MD5 c52e0a893da4750091997dae88ecc91b
BLAKE2b-256 bd9fff8e1413e289fc752337cf1f028e709b9177c6a950561f57b6aebbd8add4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-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.0-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a3b5c2314056823f8be282132fa31327951c9fd8e54757d8b917873dd1d33882
MD5 70bfeedc63ce334f73a1528db5aed939
BLAKE2b-256 1105a152bf581c965a8c964f90dac639a2e4b387f453a44b5da79d4ee075b4d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-cp312-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 801.6 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.0-cp312-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b743892ad45c897a681c38af519207cd8c9642ec18d3a90c1cfa035f38dc1e2f
MD5 43c56fae1c902848065b9931e9537dac
BLAKE2b-256 66bf1ec54bfbd741f623d343bd9b0a884831250571c2c8a8b2302de7dc14485a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-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.0-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91418b3c81fcd13d4538936d6f3a6789f6e0e4b0eebab176e8abd5e14ecab872
MD5 81bf2d5d9d686a56624c9f719576933d
BLAKE2b-256 a040c4ae12a21afc386e68d878efcc111d9356dd74b6dd97f64308d73944ed92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.0-cp312-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 715.2 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.0-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee194c9c61b2a5e70b3b896e0a2c067646a63c95504d2ae274eff154e2bd8665
MD5 87777168c0d61f1a6c1fb6edef65727f
BLAKE2b-256 1fd1a6461d6abddf45b7765aa27abfe0aa3355778fee9d2501c171cda1b490a2

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