Skip to main content

Tibs cat tibs
A sleek Python library for binary data


PyPI - Version CI badge Docs PyPI - License     Pepy Total Downloads PyPI - Downloads


tibs is a Rust-backed Python library for binary data that does not assume everything fits neatly into bytes. Use it for packets, registers, instruction formats, bitsets, compressed data and streams where fields can have many different interpretations and be any number of bits long.

It is use to power the popular bitstring library, which is by the same author.

Install

pip install tibs

Tibs works with Python 3.10 and later. There are pre-built wheels for most common platforms; if there are issues then please let me know.

The full documentation is available on Read the Docs.

Why use it?

  • It's fast - often significantly faster than similar libraries.
  • Work with bit sequences of any length, not just whole bytes.
  • Construct from strings, bytes, bools, integers, floats, random data or typed values.
  • Slice, split and reinterpret fields as bytes, ints, floats, binary, octal or hex.
  • Decode little-endian values and LSB0-labelled fields without manually reshuffling data.
  • Search, count, replace, rotate, reverse, byte-swap, set and unset bits with Rust-backed operations.
  • Use immutable Tibs for stable values and cheap slices; use Mutibs for in-place edits.

Quick taste

Tibs is immutable, like bytes. It is good for parsing, slicing, hashing and holding stable binary values.

>>> from tibs import Tibs
>>> # Four flag bits, a 12-bit integer, then two payload bytes.
>>> packet = Tibs.from_joined(["0b1010", Tibs.from_u(3200, 12), b"OK"])
>>> packet
Tibs('0xac804f4b')

>>> flags, size, payload = packet.split_at([4, 16])
>>> flags.bin, size.u, payload.bytes
('1010', 3200, b'OK')

>>> packet.find(b"OK", byte_aligned=True)
16

Mutibs is mutable. Convert when a packet or bitset needs to be patched in place.

>>> patched = packet.to_mutibs()
>>> patched[4:16] = Tibs.from_u(2047, 12)
>>> patched[-8:] = b"!"
>>> patched
Mutibs('0xa7ff4f21')
>>> patched[4:16].to_u(), patched[-16:].bytes
(2047, b'O!')
>>> packet
Tibs('0xac804f4b')

Views handle byte order and bit numbering. This is the sort of job that gets awkward quickly with plain bytes and masks.

>>> # Linux eBPF: little-endian instruction, LSB0 field labels.
>>> instruction = Tibs.from_bytes(bytes.fromhex("07 01 00 00 44 33 22 11")).lsb0.le
>>> dst_reg = instruction.field(11, 8).u
>>> immediate = instruction.field(63, 32).u
>>> f"r{dst_reg} += 0x{immediate:08x}"
'r1 += 0x11223344'

Search APIs work at bit granularity but can also stay byte-aligned for stream parsing.

>>> sync = Tibs("0xaa55")
>>> log = bytes.fromhex("00 ff aa 55 11 02 c0 01 7f aa 55 22 01 40 aa")
>>> bits = Tibs(log)
>>> records = []
>>> for start in bits.find_all_iter(sync, byte_aligned=True):
...     payload_len = bits[start + 24:start + 32].u
...     payload = bits[start + 32:start + 32 + payload_len * 8]
...     if len(payload) == payload_len * 8:
...         records.append((bits[start + 16:start + 24].u, payload.bytes))
>>> records
[(17, b'\xc0\x01'), (34, b'@')]

The full documentation covers construction from ints, floats, bytes and strings; endianness; searching and replacing; rotations; bit indexing; serialization; and worked examples.

Performance

Tibs is written in Rust with PyO3. The repository contains a dedicated performance regression suite and CI workflow that compare benchmark medians against the base commit.

The regression benchmarks cover operations such as:

  • bit-pattern search, reverse search and byte-aligned search
  • logical operations on large aligned and unaligned slices
  • counting, inversion, shifting, reversing and concatenation
  • bulk mutation, slice replacement, deletion, append and pop
  • bytes conversion, random generation and bool-list construction
  • typed packing and unpacking such as u16 value streams
  • a sieve workload using Mutibs as a large mutable bitset

For local comparisons, tests/performance_comparison_new.py checks common operations against bitarray. With bitarray installed, run:

python tests/performance_comparison_new.py --bytes 250000 --values 20000 --repeats 5

Benchmarks are machine-dependent, but the mean speedup over bitarray will typically be > 2x.

Examples

The runnable examples in examples/ are small, but they are meant to look like real binary-data tasks:

Example Shows
log_scan.py Find byte-aligned sync markers and pull records from a stream.
little_endian_registers.py Decode and rebuild little-endian register dumps with u16_le.
ebpf_instruction.py Decode LSB0, little-endian instruction fields.
sensor_samples.py Pack and unpack 12-bit ADC samples.
patch_config.py Patch compact config fields in place with Mutibs.
construct.py Build and unpack a structured MPEG-style header.
sieve.py Use a large mutable bitset for a prime sieve.

Project status

Tibs has reached the 1.0 stable API milestone. Documented public behavior will remain compatible across future 1.x releases. It is used to power the bitstring library and gets several million downloads per month.

There are over 800 unit tests, including Hypothesis tests and performance benchmarks.

For the full API reference, see the documentation.

Credits

The tibs library was created by Scott Griffiths and is released under the MIT License.

The Tibs cat artwork was created by Ada Griffiths and is not covered by the software license. All rights reserved.

Tibs cat

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tibs-1.1.0.tar.gz (2.2 MB view details)

Uploaded Source

Built Distributions

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

tibs-1.1.0-cp314-cp314t-win_arm64.whl (642.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

tibs-1.1.0-cp314-cp314t-win_amd64.whl (687.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

tibs-1.1.0-cp314-cp314t-win32.whl (630.2 kB view details)

Uploaded CPython 3.14tWindows x86

tibs-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

tibs-1.1.0-cp314-cp314t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

tibs-1.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

tibs-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

tibs-1.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (988.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

tibs-1.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

tibs-1.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

tibs-1.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (922.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

tibs-1.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

tibs-1.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

tibs-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl (796.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

tibs-1.1.0-cp314-cp314t-macosx_10_12_x86_64.whl (905.0 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

tibs-1.1.0-cp310-abi3-win_arm64.whl (653.1 kB view details)

Uploaded CPython 3.10+Windows ARM64

tibs-1.1.0-cp310-abi3-win_amd64.whl (700.2 kB view details)

Uploaded CPython 3.10+Windows x86-64

tibs-1.1.0-cp310-abi3-win32.whl (640.4 kB view details)

Uploaded CPython 3.10+Windows x86

tibs-1.1.0-cp310-abi3-musllinux_1_2_x86_64.whl (1.2 MB view details)

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

tibs-1.1.0-cp310-abi3-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ i686

tibs-1.1.0-cp310-abi3-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARMv7l

tibs-1.1.0-cp310-abi3-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARM64

tibs-1.1.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (993.4 kB view details)

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

tibs-1.1.0-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (991.3 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ s390x

tibs-1.1.0-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ppc64le

tibs-1.1.0-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARMv7l

tibs-1.1.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (922.5 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

tibs-1.1.0-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.5+ i686

tibs-1.1.0-cp310-abi3-macosx_11_0_arm64.whl (807.8 kB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

tibs-1.1.0-cp310-abi3-macosx_10_12_x86_64.whl (894.9 kB view details)

Uploaded CPython 3.10+macOS 10.12+ x86-64

File details

Details for the file tibs-1.1.0.tar.gz.

File metadata

  • Download URL: tibs-1.1.0.tar.gz
  • Upload date:
  • Size: 2.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0.tar.gz
Algorithm Hash digest
SHA256 c95dd2955600aab16b13697af53f23ae52f534276f4cc02c4984d183cd3f9933
MD5 37a5716d77e5dd2765c9621e9b1c9c48
BLAKE2b-256 f9e0057b221da0668625f7318453176e9e465a363c9b3e51c5fe3df89ddfc883

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 642.6 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c2a90047aaa56778dbc4d17ffa4c0bb14d695f84b6d4a0dd89a9b79d5487712e
MD5 6a76a9629100bc97d8b66d10f4cc4569
BLAKE2b-256 1a644ee1fab8c044ecb11e7bf78337476c3a7ccc1e597bc54c620e792a684368

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 687.2 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 dfa1c634f716ba8233a402f61578f4e0e7a1d5da7b724d5a24fa3e0297045173
MD5 67c2c4b526407a406a6b79b35b57cc99
BLAKE2b-256 c044abcc06355c0d37c3100ef536f9f82124c31f2c0bdf275b60cb48a62439c8

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 630.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 03b224e0292084156a04cb760780b496eb504acdea32a7994edd5ac7aed74df1
MD5 af5ce16453c6bf234adce5aabe8a563e
BLAKE2b-256 5675d11cfd4b68e3e8d80424aa8839492b4173d7ba63bb04f5d5747db11d20f5

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e28d8c47c0dae25fc1e6ceb544778b1a49de70f8a5af9fb1455108b3098ebf90
MD5 d6b5a0c764d4e255c5edf2b08ae0c752
BLAKE2b-256 c49d1417d77e1751f6e746a3dbdb6de148bdd9088e25d6ee51194097cb71b577

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52af6955369b153ef07204d9fd2b8f65d2d6f3e59139f5ec68c89aa2db391beb
MD5 e4402d00d30d962d2512d1c4aea4710e
BLAKE2b-256 4bea5bae01a1959883db1de3894fef34d3b32864efffa3d651afb541220e9268

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aeda0d713263d40b61e160908771884e0fed5ec8d75e9d95e28448df1c791081
MD5 f31908165ead2107f7726ebfdac406dd
BLAKE2b-256 2cb1cc28b08bb097f766fc1fadb36e0afc331f6ef48d3324ac229c81681b77df

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d25b54f2f9f5631c6ea6b70ad1929e2df65b82cffe89599d63ba6ab53998c108
MD5 6c364d35b2f3e01501a4d661679ff3ce
BLAKE2b-256 b3094b431eebc0893461a737dfd3f8f02f769d21e1750fe103f3f43c56cdd8ce

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 988.1 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b74a5187ab39f8330bf0c0530cb4c8d559954fd78f7be41424c06fd3dbdac1b1
MD5 c2c4ff9bb11d7f328091bd5e20398d8d
BLAKE2b-256 4ad42234e31e9112d8d6f308610305553ffc45cb8cb7d1e45931264b5efd372a

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 997.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5a91e16f854bde4f636993a9dcb2e7d049a0d2ed295d2764d3ea40541adcbef
MD5 5fe76493369aea0f6e6a19ba3d5218ae
BLAKE2b-256 99dda8d064e5e445dc8b5020d2b2746019ceb9df7a84fcd246448846566605f4

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 883e4a7def496f72159f055288c8b7a13558589e540dccddbd4c21654a460178
MD5 b8002f3f76108517438826e2fc2d61ef
BLAKE2b-256 de3c57855517f45edf46e8c1f79af6fc2895d4b7580ec15c9ffaa5f811c30680

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 922.3 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c57fa3fa7b43ec7bdd0bee043b37a7c625f2dce11634170ecc53fac9d7e9cb82
MD5 ee0f24153f41b37a9ee36a0a8796fc26
BLAKE2b-256 8fc174e8738990e335ec0d99cb27617adcde4395d9edbff7a00ef85668c706f0

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 915.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 125e972076b15393a0969ad795dcbf3cbe1b2cfb711d6dd29150f1fddbf5d0db
MD5 09e072c5e145861f9487dd4093cf5076
BLAKE2b-256 f5c9ecf5af3ce7f1076abebdf230294848b925507aad6ff6c10ce4e5c54c7d2e

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a087b75d1c1b70ee07a3f288f9d68ed97b842963ac9e9c1b9a2b8236ae5d60b
MD5 8091531bb471b41903275fede7d830fb
BLAKE2b-256 db1e8c7941efc34e9824121e11a65ffc9e9c080a587319cefb85f92e4f4ecdf5

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 796.8 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5bbddd8ca08dbbde3b66dc138c929d78984834d76857af28ca0f42b2debd961
MD5 f0232ddc506201c57b142010f4402192
BLAKE2b-256 9f1ff3747b4e9f3d1bbe291c7a78860e543166cfabf05f56ac7b81f42cc2deb7

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 905.0 kB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b2fe59b6e1da893bef219e0a628f8f874c000f6a71d88f4ea6d95776c87a3d6b
MD5 f457210c875bcce6e6ec845087b96625
BLAKE2b-256 dda7b8508054551c1d7aca115408fbc9e8533aa654e9df1d7fcf78de628d7e16

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-win_arm64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-win_arm64.whl
  • Upload date:
  • Size: 653.1 kB
  • Tags: CPython 3.10+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 c8bc2c9a0339da04adce5f9d66c037665a1bb9889d0bfb770e2598e7997a256f
MD5 76dd84389cd09a064a1d7a4d0973ca0b
BLAKE2b-256 c81bbde9ae84e385510b41e5d5d3f9d6598e1db8391783614fddf39e6cafbf7e

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 700.2 kB
  • Tags: CPython 3.10+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 bc2edf5128ea455d19094f8a06a72c97055d5db09454819e5a0d62ffdfc46d1b
MD5 dedf250f3615b865d8cc6cd973afe869
BLAKE2b-256 e957c281645d48bd47993c44daebbf42b565ae496afcf5fb5fa4d0702c2e62e0

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-win32.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-win32.whl
  • Upload date:
  • Size: 640.4 kB
  • Tags: CPython 3.10+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-win32.whl
Algorithm Hash digest
SHA256 909f9158434ec3bffc697ae74f747d3262a06ab82954e7017944edf9e6c574b7
MD5 ca173f1bccd13405fa73d17f7b178eca
BLAKE2b-256 f64d6c14658c285e59ff0809275acf982e1bc2ea35989f9e57d8202c2717630e

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 801daa06818761a65ed222dcbaf1531023d41cae9c40349cef1623b863ebad83
MD5 c30d83fa94c75936ae890023456b20a5
BLAKE2b-256 0e446b5346cdba63ab841cc710439232ba8978b0a3783e30f0636b2d15ec22c7

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a417d359f657defcee4eeb8314eeec20cbac4ed7de648651a8847867e8eb8fd5
MD5 7dc0ee8f28ff6344804df2b5cf990cdb
BLAKE2b-256 4d02a6910ea9f88002e2930ffb95b7ac400a478293af8e0724a4ae91c8572830

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f70f3c488d3747e9fb5ee49f872725fd68f676889ac173096c933ee1f5ab0a7
MD5 2709095b94a4e3c7b6499b6b829763e8
BLAKE2b-256 8b6e2991259ef422ddeec71fee2c8e7e9404222f1f8a13cdd60433a9da14c977

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd7eb8a7a39a10685d558ef6b31cff112669254ca7afbd36ca23edb921c1bc72
MD5 c6cf6315ce61f4bf6f56a5e4d3b463c2
BLAKE2b-256 fb386ca0c6d123335274a15ab98865f93e9334e2b88347e84b39a45950479f72

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 993.4 kB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58810a8dc466238f3bed429a72f6a9591b6932ef7f77e14fb20ddd68d4e9779f
MD5 c611a5d4adfde87642f036ddae17b4c0
BLAKE2b-256 b42518b3d66e7666f3195bc48293fc8e93494d74348464c798fc26d0c173ce52

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 991.3 kB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 99d5bb33905890a3d69ebbfd3c518fa35a9329b24d771b8b00c7617a59ebc251
MD5 f25dc932152525ec9345437f031797f0
BLAKE2b-256 1ba534e51e2c3a7fb9b92489469066e3ea25c2ad6eeea604e13bf774e2be55a6

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f3e430eb900a6495cc244a93516a2aec4c88f103d0c365632525ef2eb7522bd7
MD5 77941e56f43ddaf49ea4656fe84fc064
BLAKE2b-256 9c0c4047e08d4a4840fbf61d986f05e15144b8e2bdc73c8e7e55a8a455afe4f9

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 926.8 kB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc2fa70828c4fd99d173b8f49ed32a858f8025aae5c70d1eab7221ce310f37a4
MD5 837810c837f98ece0e8bbb62a50c2404
BLAKE2b-256 6df91194512ed33a2b9324ebe06a1b9804b20d02b2ba4ea24415d428b945fc73

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 922.5 kB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28dc71d9bfdbd8c5a916e3de448fa845baddfbd692692029dead443d261951b7
MD5 8b5bc5e070bd98f27b382d004fc01c77
BLAKE2b-256 e394dd58c5ac1cb681aabf5b8805a3eef9c1643502ca4399c95bf243190671e2

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b11845cd6c8aec4cc268c6bd03441decf4955c21b20bae51bf53365263f9a1bf
MD5 71e80d790ce51056ce8f336c20264d8e
BLAKE2b-256 4a43c8c17082c8f37b35e0381fd4052668c52359a19d090ceed066dfe9fb00b0

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 807.8 kB
  • Tags: CPython 3.10+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f24dfefd34d6882369417435358ecf67e3994b5af2354556e7953b4e0a0a5bd
MD5 fbb8ff0ea5dfa36d6852357414f788a3
BLAKE2b-256 bbea4f1a3097a6f88b0264f8bf0e6a7d77224994927093d1e933f6eca91cd16d

See more details on using hashes here.

File details

Details for the file tibs-1.1.0-cp310-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: tibs-1.1.0-cp310-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 894.9 kB
  • Tags: CPython 3.10+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 tibs-1.1.0-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef1273c59ee3a8cf3f68f074211b91fa35ecfb7a30e1e5763889fcbe1cbccc22
MD5 4f973bd1ea9ffdf11e2ffbf86e02dff6
BLAKE2b-256 b78c45a58fe9691a7da721072409eb219c5fba51d9f72940234c94c3a7fd3ed5

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 Sentry Error logging StatusPage Status page