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.2.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.2-cp314-cp314t-win_amd64.whl (606.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

schiebung-0.5.2-cp314-cp314t-win32.whl (576.7 kB view details)

Uploaded CPython 3.14tWindows x86

schiebung-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

schiebung-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl (962.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

schiebung-0.5.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (826.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

schiebung-0.5.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (872.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

schiebung-0.5.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (795.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

schiebung-0.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (788.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

schiebung-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl (714.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

schiebung-0.5.2-cp312-abi3-win_amd64.whl (606.4 kB view details)

Uploaded CPython 3.12+Windows x86-64

schiebung-0.5.2-cp312-abi3-win32.whl (576.6 kB view details)

Uploaded CPython 3.12+Windows x86

schiebung-0.5.2-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.2-cp312-abi3-musllinux_1_2_aarch64.whl (964.4 kB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ ARM64

schiebung-0.5.2-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (828.3 kB view details)

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

schiebung-0.5.2-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (873.2 kB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ i686

schiebung-0.5.2-cp312-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (797.1 kB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ ARMv7l

schiebung-0.5.2-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (789.7 kB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ ARM64

schiebung-0.5.2-cp312-abi3-macosx_11_0_arm64.whl (715.0 kB view details)

Uploaded CPython 3.12+macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: schiebung-0.5.2.tar.gz
  • Upload date:
  • Size: 110.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2.tar.gz
Algorithm Hash digest
SHA256 2fb765b237747b1c25a3353a8909e16a6359aa89e4d59fd91a46bf70687cc77a
MD5 47db6a0bb3767c2da8e5fb69d68030d1
BLAKE2b-256 f4e9a339a0113dd21afc405eafae25247135a38361f0b600cf9fc5d4b5ea1774

See more details on using hashes here.

File details

Details for the file schiebung-0.5.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: schiebung-0.5.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 606.4 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 dbf62fdc335defa70e178e16c976e6ec9d2106b53c3a69049da8226ee6145563
MD5 cd26dec7e1f6c11883c838cad88f678e
BLAKE2b-256 abf0525e597c8d4d31c5c25be8511b57c10219f7e1d7fa56f9519cc2d1d1a4fe

See more details on using hashes here.

File details

Details for the file schiebung-0.5.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: schiebung-0.5.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 576.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 bf76d019c49a648d08853ce425170afd8d07998509a715aad74e1c72f8261e00
MD5 d00e1ba4059836953ba53c31675e924d
BLAKE2b-256 9f3a0af4a5d327aab3c0eaf1c9993a9cbfd8f99d3cd6dc15e507ba2c25c1549b

See more details on using hashes here.

File details

Details for the file schiebung-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: schiebung-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6176c3b93a6904ba226cebfb71ebdf1d9790a10da3bc11f4a967c90449995ea
MD5 8400754afa8ec54afabe281fc4782b37
BLAKE2b-256 e4092d73d70eb62b4004b17dc86017e264672bce301b3c5198d7062c0621a8e2

See more details on using hashes here.

File details

Details for the file schiebung-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: schiebung-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 962.2 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a0fbbb34e2b6c2a8850f994d8373525dccba0959a31a4a0627fbfe495433f4f
MD5 adf8758992ea327582f3e03e28c7ad91
BLAKE2b-256 03f1aa1d8a73b0cdd86440c21202fbedaf9602b5bdfbe6c7bdbcec795ca6e24b

See more details on using hashes here.

File details

Details for the file schiebung-0.5.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: schiebung-0.5.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 826.5 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b16ce755888692f795fb0f0019481d727df14008cc4426e212a502d554b1e13
MD5 0c55f7cbe5329d5b991c0383da813ac3
BLAKE2b-256 5702ef28643272a0c80e17ae9cfc94514a281b7e1c8e9042c8e8e2f7ff31faba

See more details on using hashes here.

File details

Details for the file schiebung-0.5.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: schiebung-0.5.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 872.1 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30d1488a2798a5e8438f27d2fe91aa981f6317fdecfa223dbeac3936f28a22c9
MD5 9b577932df0985608be14081dd65ff9e
BLAKE2b-256 eb331e6772e8cedab3165bc174c71f4843ecfd4a9e176233640f3adbb9138119

See more details on using hashes here.

File details

Details for the file schiebung-0.5.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: schiebung-0.5.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 795.1 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 00e1c95094aa221c6369019631b3b9aaf0f25ef8a6a2bd7dcc064129ba0a871d
MD5 8fa4323c0baa29a28657337bbd395819
BLAKE2b-256 c15184f78ea895647a7b9073bccf04dd4caa022439a994185b5a7ffb80c3a143

See more details on using hashes here.

File details

Details for the file schiebung-0.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: schiebung-0.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 788.1 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e759281b73773c13d6fc9b13c25c5114712dcf0e424eae93255bd30ba209bedb
MD5 be3a83846d1438f36339ee9a19271447
BLAKE2b-256 e20d388ddb035956f3071f0c7395e03c4eb694b7bca7f1e25ba7b360d34cf8a8

See more details on using hashes here.

File details

Details for the file schiebung-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: schiebung-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 714.6 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d4dc5a74abfd997c403b4d27a4fb023ae766fb7deabb2ae072df71b6d8d3a42
MD5 28aa1936aab38fc2a9e232cab577acc8
BLAKE2b-256 0ab0dc0e0d6d798369df21538a149a10e3cf7195d0fe2adc994f0903a9d114b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.2-cp312-abi3-win_amd64.whl
  • Upload date:
  • Size: 606.4 kB
  • Tags: CPython 3.12+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 fb10a7b2e364ef81d879454d40e9fc86ead44dd53b676d8e2eb3d5ce06dca8ae
MD5 93a740775877258cc3684662c7d157f6
BLAKE2b-256 76e1e1926dd9341ebcd6efed15b3580d6d8bc17b09de41ef2a08edd926629634

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.2-cp312-abi3-win32.whl
  • Upload date:
  • Size: 576.6 kB
  • Tags: CPython 3.12+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 3c66c9cafeb7f6b97fa5e4c343ee547aa56190a21f9f6d9ec00c7d06a9571109
MD5 a3ded6b85c595e6f8c042f7db0e0cf76
BLAKE2b-256 ffc6eaa2fc2688f2be98fa616bd9d0be9130581712ad2b3d5efc11b57f70d0fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.2-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.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 schiebung-0.5.2-cp312-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eff6ea52061b9e36b1f25232212a331518e5d541a8b585b4758c76872a9a05ca
MD5 b7db7c05a213bc69863056705c9d8fb5
BLAKE2b-256 ae1f2e74a6c868dc345a7dc93a5aa048e2d1be8d2834879e9ebf38f84aaec02e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.2-cp312-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 964.4 kB
  • Tags: CPython 3.12+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp312-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c692ef0a7085ef95c01b1aee88a33b6f443449f55d1f17287b47fd1eee54eed
MD5 037450aa3e70479f5b60228fba6038f2
BLAKE2b-256 a26aa2745b8ba12d5a0139142cc16dcb35fecce10eef2de6c4ed7f9c9ec672de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.2-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 828.3 kB
  • Tags: CPython 3.12+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5c77d7444dffafd3c79e8356469742fc77fdd0b84b3b23dd29e4e27070f39b7
MD5 cba654001dd6024ade62638112c2b86e
BLAKE2b-256 959f2b69cf8998ff2946fd5d25ef295b8e9025198a4047f0a4228e4a69582df9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.2-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 873.2 kB
  • Tags: CPython 3.12+, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5fa5ec0e740129173ceac4577920c723b25568ab1d534e68b14f43a860e75b2
MD5 fad80d27ef28b0f5d0993c73216052b0
BLAKE2b-256 2e7744a9940bd6e57c6c22feb6176492230def32f0d89d11191bdf5ca8be7c74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.2-cp312-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 797.1 kB
  • Tags: CPython 3.12+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp312-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a889d1c4b0a7656c64e05768d98817bb51ea979f5ff6679cbe7c594e3a56f80
MD5 68e1848d2d84f104580189d61cf6ddec
BLAKE2b-256 00375047917110147cc9dbc2ee5440f27e6b82ff445a0f152f8256dd04e0394e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.2-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 789.7 kB
  • Tags: CPython 3.12+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07d6bbc524980122dd59738e4830cbc6cd41ac38cdec44e43c9d4a0b3a34201b
MD5 55c2d6412e6b37225ec27280ec5ecfcd
BLAKE2b-256 581ff21a7a765c245f0a0de81e472f57aa94708101a369d64335f9ff760d8e2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schiebung-0.5.2-cp312-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 715.0 kB
  • Tags: CPython 3.12+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • 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 schiebung-0.5.2-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddf636ebdd175cfa05e8d357955754e5174b3ca10f7956fd807719142450d20b
MD5 1ef5f513425c10a0bcaa07d867b756b4
BLAKE2b-256 85f1eaba97ccce4f900d0e67f7b01b216a396b72278cc4940323b2bfe21e1878

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