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.3.0.tar.gz (108.6 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.3.0-cp313-cp313t-win_amd64.whl (599.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

schiebung-0.3.0-cp313-cp313t-win32.whl (566.2 kB view details)

Uploaded CPython 3.13tWindows x86

schiebung-0.3.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.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (968.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

schiebung-0.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (831.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

schiebung-0.3.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (872.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

schiebung-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (796.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

schiebung-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (789.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

schiebung-0.3.0-cp313-cp313t-macosx_11_0_arm64.whl (710.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

schiebung-0.3.0-cp312-abi3-win_amd64.whl (599.1 kB view details)

Uploaded CPython 3.12+Windows x86-64

schiebung-0.3.0-cp312-abi3-win32.whl (566.2 kB view details)

Uploaded CPython 3.12+Windows x86

schiebung-0.3.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.3.0-cp312-abi3-musllinux_1_2_aarch64.whl (967.9 kB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ ARM64

schiebung-0.3.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (832.4 kB view details)

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

schiebung-0.3.0-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (873.6 kB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ i686

schiebung-0.3.0-cp312-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (796.9 kB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ ARMv7l

schiebung-0.3.0-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (790.2 kB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ ARM64

schiebung-0.3.0-cp312-abi3-macosx_11_0_arm64.whl (711.0 kB view details)

Uploaded CPython 3.12+macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: schiebung-0.3.0.tar.gz
  • Upload date:
  • Size: 108.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0.tar.gz
Algorithm Hash digest
SHA256 6e9a86bb2dc6f90d6e026e7f42f751a29b95cf3c5e61a3a704da793e0466c4fd
MD5 adb24066419dfe51732d816944993d59
BLAKE2b-256 8187ed09e1afd4899ad3b96938083d38ecb563e105b1731fd8ec4df05db9320d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 599.0 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 556a8664a3cf7e0b1a94187f1c0d4b5a0f2d83568fb4794b9898a3e4cef1ca6d
MD5 192496db6775488c1eca5ce6eeaf505e
BLAKE2b-256 0bfd49693ac9c39f366aff55bc8044d18d7b5ece0cc6b28899bf213922161d92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 566.2 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 a0f35c54ef6166869ca64e682d1c403e12c402b4aae8a35da20e9d9f121623d5
MD5 12520e37681000087d466e980d47eba5
BLAKE2b-256 ccf2761e584d50ed3f78d2798df5f8cc8174185f89ed4d8a72a9ed5a05542258

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.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.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e99d6c68e209d2fda564ea4aa9dde81f96b9bd3b25dfd097ee7d294fc83be75
MD5 a99437a34ba88d546dc3161836f63f75
BLAKE2b-256 3e9e32eadc15608a63835dee32346696e300594abdb82e27a11477890dce4eaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 968.1 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5ec4ca2d6d2e78ed989e0bdfaf90f1e2b0ced9f17d5962fb5ca595ccce3506c
MD5 12bf59cbf78adc073f60835d2cf23382
BLAKE2b-256 10548250077d4c7534af91a691f118048cc4bb576e187957597349db69d62719

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 831.4 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03a234036f6272257080d83b62eeb37037d3008ffeffc864b655b4cf2abf8b05
MD5 ec98dcd264a4c639d530bef7db64a882
BLAKE2b-256 55c2209d1bec993ba01c275c42dcca51d8a3c0f698841458b490cfc43deb1ad7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 872.5 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7940f00ec9c93b8e089dccce87194c828ccccb7faa13f80eac4a26bfed264990
MD5 4572a0d9a0e0a26fc82812a1af82f3f4
BLAKE2b-256 3417f6823142d2f567da30a8d94f8e0e82f032653ba3f8692fcd0804d45850d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 796.8 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26368e20b516364dd63a226c30b9191770684c0f5388bd18a77b11dd1cf3d62d
MD5 59ebd32fddafaae844ede6da0ee528f8
BLAKE2b-256 39eb9b9a164ff0ea79965e79c3a2089f7450da04e4330c03b21273e4114ba2da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 789.9 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 063b69bc78b0cc7658b90dff084792e879e48231b90b730f069dd23cf5c84e35
MD5 bf48bb205f3ece427e34412b15e96e61
BLAKE2b-256 0dbb83409b90829e80c84b4071b950360c0ecf010bbefc2bcf9c7e7efc9afbbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 710.3 kB
  • Tags: CPython 3.13t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ea9cd550b1e247ef34ed8f9f4a211f6f2b9284e83480c0b969ceb7b42a7bf4a
MD5 8f38e53b8b16e17f4ef2150e8949cec4
BLAKE2b-256 d33a0424c4cb5eefe47ee877728700296e59371860c39ea0d5d24b1d97b6af53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp312-abi3-win_amd64.whl
  • Upload date:
  • Size: 599.1 kB
  • Tags: CPython 3.12+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 6abdc29efefdc3db3b9d2cf3a79b5fa3f230911ec1c83c8fd197abecf50efaf7
MD5 6f21e1327cb02ff234137a55367b41b3
BLAKE2b-256 757a2b66ffc645fc9bbfc9dffdcc727f483989015faac56bcaf6d7f946d80637

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp312-abi3-win32.whl
  • Upload date:
  • Size: 566.2 kB
  • Tags: CPython 3.12+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 f6bfddaf5a35f873d94f57861905fa7d439bc36a4fe56eff91573fad0951e770
MD5 fd29693f918eee3c29f5a6b0ee92c9ca
BLAKE2b-256 dcac62e8707a3e2ace1d93964c63d5309065c71f6c55a7bc66b2ba6640cd6857

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.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.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp312-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79b20741787d304372bddc50c9b9d49e9e9aaa30aa7ba784ffc1189bfaf6c296
MD5 cbd5b7bb037cbba65857506c42bdd67a
BLAKE2b-256 e8fb37251dfba6eb5f2c83d480ff85cd9718448aa794465ae120ba40937253eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp312-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 967.9 kB
  • Tags: CPython 3.12+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp312-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20e417893a3dfaf3e7356ad9cace229582a878638371c45b269afc96d34ed3ce
MD5 aa49ac77a8b14f4157f9805502e8e13c
BLAKE2b-256 67e431f25fc53a425a0343cd21c0818eb3d49b3fde7f3424d70688b77619c288

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 832.4 kB
  • Tags: CPython 3.12+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 765a6e39f06735a7f01e36c85261e1c30fe6ec1223d2f5d54d1fe902752a456a
MD5 c2d2e58e30107b772c84d27c0528d0f3
BLAKE2b-256 b8de7033a525a5041de5c5c45aa1853be8aa22eca66ddc83e11a9edb2eb44b57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 873.6 kB
  • Tags: CPython 3.12+, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3de1383f26ee515f1a0fd4832b9f12b6cc193ee9d180460acb796aea0d4f85dd
MD5 539775af8d890d84660dc2749f7f2342
BLAKE2b-256 082b52bb1fa476fc9d8d4cbb2462e97f1e01d8c90048ecd1fe2679df8d0994a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp312-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 796.9 kB
  • Tags: CPython 3.12+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp312-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c22f03980fdb1d30c42f6b675f1c60272951eb83324885860b58340e8f7da81a
MD5 0bb4c538ecd42fde26791b36ae179f5e
BLAKE2b-256 47ad8c128bd7fef7af7274cae2884f78b8c9582b74f204f3b613a206432108ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 790.2 kB
  • Tags: CPython 3.12+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e5ca8ada558821d45c8e9872ceb10173df122738f7ae39ee3cc835c5d5680bb
MD5 66c5e87a4d7a048b0ad199406f317c9d
BLAKE2b-256 c3a0f695446c21e4ce73efe22ab9f63b8cc7f728fc085cd448f6b0190f1b9dd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.3.0-cp312-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 711.0 kB
  • Tags: CPython 3.12+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.3.0-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a942ea8eb6c172c43cbde39132d9e19a4a2d478ef4441243846adc4a4d977de7
MD5 827f5f93ad8c6cc7e4908c00dd1c97f5
BLAKE2b-256 68d3b3deb3f66bbbd99deb1991e7c30716e41816ed57578feb8dfd84697d6ac7

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