Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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 Python library for binary data. It's 100% written in Rust and has excellent performance.

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 used to power the popular bitstring library, which is by the same author. The full documentation is available on Read the Docs.

Install

pip install tibs

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

Overview

The tibs library provides two main classes: Tibs, which is an immutable sequence of bits (similar to how bytes works in Python as a sequence of bytes) and Mutibs, which is a mutable version (similar to bytearray in Python).

They can be used in a few ways, depending on what you need:

1. As a container of bits

Tibs provides an interface very similar to bytes and other Python containers - you can slice it, concatenate, search it etc. in a familiar way, with Mutibs adding on mutating methods.

find · rfind · find_all · replace · count · starts_with · split_at · chunks · + · in

This 'container of bits' mental model might be all that you need, but the library also gives you two broad views of the binary data.

2. As Typed fields

Pull integers, floats, bytes, hex or binary of any bit length straight out of the bits, without hand-rolling shifts and masks. Little-endian ordering and LSB0 field labels are handled elegantly so you don't reshuffle data yourself, and extracted / deposit reach fields that are scattered across a word.

When parsing streams, a Reader can wrap the Tibs to hold a bit position for you, so a parsing loop never has to work out where the next one starts.

from_u · to_f · bin / hex · Dtype · pack / unpack · .le · .lsb0 · field() · extracted / deposit · Reader · f-string formatting

3. As a set of bits

For bitwise algebra, cardinalities and set predicates, with no intermediate object built along the way. Mutibs can also be used as a large mutable bitset.

& | ^ ~ · count_and · count_xor · intersects · is_subset_of · set / unset · all / any

And it's fast — usually significantly faster than similar libraries.

A Taster

Some real code to illustrate.

As a container of bits. Tibs works like bytes, except that the unit is the bit. Mutibs is its mutable counterpart, for patching in place.

>>> from tibs import Tibs
>>> # A 5-bit header, a message, then 3 bits of padding: nothing is byte aligned.
>>> frame = Tibs('0b10110') + b'the cat rarely blinked' + [0, 0, 0]
>>> bytes(frame).find(b'cat')      # using bytes, the message can't be found
-1
>>> pos = frame.find(b'cat')       # but the tibs still knows where it is
>>> pos, frame[pos:pos + 24].bytes
(37, b'cat')

>>> patched = frame.to_mutibs()
>>> patched[pos:pos + 24] = b'squirrel'
>>> patched[5:-3].bytes
b'the squirrel rarely blinked'
>>> len(frame), len(patched)       # 40 bits longer, spliced in at bit 37
(184, 224)

As typed fields. Read and write integers, floats and strings of any bit length, with a view taking care of byte order and bit numbering — the sort of job that gets awkward quickly with plain bytes and masks.

>>> # What's inside a float? A sign bit, an 8-bit exponent and a 23-bit fraction.
>>> x = Tibs.from_f(-118.625, 32)
>>> f"{x:_.8b}"                    # grouped into bytes to make it readable
'11000010_11101101_01000000_00000000'
>>> sign, exponent, fraction = x.split_at([1, 9])
>>> (-1) ** sign.u * 2 ** (exponent.u - 127) * (1 + fraction.u / 2 ** 23)
-118.625

>>> Tibs(b'\x00\x40\xed\xc2').le.f     # the same value, from a little-endian file
-118.625
>>> Tibs.from_u(x.u + 1, 32).f         # the adjacent float32, one bit away
-118.62500762939453

As a set of bits. Bitwise algebra and cardinalities over millions of bits, without building an intermediate object just to count it.

>>> from math import isqrt
>>> from tibs import Mutibs
>>> # A sieve of Eratosthenes over ten million numbers, one bit each.
>>> limit = 10_000_000
>>> sieve = Mutibs.from_ones(limit)
>>> sieve.unset([0, 1])
>>> for p in range(2, isqrt(limit) + 1):
...     if sieve[p]:
...         sieve.unset(range(p * p, limit, p))
...
>>> sieve.count(1)                     # primes below ten million
664579

>>> # Counting twin, cousin and sexy primes: pairs 2, 4 and 6 apart:
>>> [sieve.count_and(sieve >> d) for d in (2, 4, 6)]
[58980, 58622, 117207]

The full documentation covers construction, interpretation, endianness, searching and replacing, indexing, serialization, views, dtypes and much more.

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.

For local comparisons, tests/performance_comparison.py checks common operations against the bitarray library and the standard Python library. With bitarray installed, run:

python tests/performance_comparison.py

Benchmarks are machine-dependent, but tibs is often almost unreasonably fast.

Examples

The examples are small, but they are meant to look like real binary-data tasks. Each is walked through in the documentation, with the runnable code in examples/. Some examples of the examples:

Example
Record stream Read tagged, variable-length records with a Reader.
eBPF instruction Decode a real eBPF instruction by chaining LSB0 and little-endian views.
Fingerprints Compare items as sets of bits with count_and, count_xor and is_subset_of.
Parallel decode Decode millions of samples across threads on a free-threaded build, with no copying and no locks.

The rest of the examples cover stream scanning, in-place patching, structured headers, bulk sample packing and scattered register fields.

Project status

Tibs is considered 'stable' and has reached version 2. Documented public behavior will remain compatible across future 2.x releases. It is already used to power the bitstring library and gets several million downloads per month.

There are thousands of 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-2.0.0rc2.tar.gz (2.4 MB view details)

Uploaded Source

Built Distributions

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

tibs-2.0.0rc2-cp314-cp314t-win_arm64.whl (807.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

tibs-2.0.0rc2-cp314-cp314t-win_amd64.whl (868.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

tibs-2.0.0rc2-cp314-cp314t-win32.whl (802.4 kB view details)

Uploaded CPython 3.14tWindows x86

tibs-2.0.0rc2-cp314-cp314t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

tibs-2.0.0rc2-cp314-cp314t-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

tibs-2.0.0rc2-cp314-cp314t-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

tibs-2.0.0rc2-cp314-cp314t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

tibs-2.0.0rc2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

tibs-2.0.0rc2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

tibs-2.0.0rc2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

tibs-2.0.0rc2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

tibs-2.0.0rc2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

tibs-2.0.0rc2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

tibs-2.0.0rc2-cp314-cp314t-macosx_11_0_arm64.whl (967.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

tibs-2.0.0rc2-cp314-cp314t-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

tibs-2.0.0rc2-cp311-abi3-win_arm64.whl (812.4 kB view details)

Uploaded CPython 3.11+Windows ARM64

tibs-2.0.0rc2-cp311-abi3-win_amd64.whl (874.7 kB view details)

Uploaded CPython 3.11+Windows x86-64

tibs-2.0.0rc2-cp311-abi3-win32.whl (811.2 kB view details)

Uploaded CPython 3.11+Windows x86

tibs-2.0.0rc2-cp311-abi3-musllinux_1_2_x86_64.whl (1.4 MB view details)

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

tibs-2.0.0rc2-cp311-abi3-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ i686

tibs-2.0.0rc2-cp311-abi3-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ ARMv7l

tibs-2.0.0rc2-cp311-abi3-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ ARM64

tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

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

tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ s390x

tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ppc64le

tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARMv7l

tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARM64

tibs-2.0.0rc2-cp311-abi3-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.5+ i686

tibs-2.0.0rc2-cp311-abi3-macosx_11_0_arm64.whl (975.7 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

tibs-2.0.0rc2-cp311-abi3-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11+macOS 10.12+ x86-64

File details

Details for the file tibs-2.0.0rc2.tar.gz.

File metadata

  • Download URL: tibs-2.0.0rc2.tar.gz
  • Upload date:
  • Size: 2.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2.tar.gz
Algorithm Hash digest
SHA256 18ec7853366b510706ea2915859ec0c12665c6d0e749fd99dc6dbd53563fa3b8
MD5 ffd0af559f1f07101b7c423a40af4301
BLAKE2b-256 7093831f6cdbaafe48185a6c8b14b7aa48b4acac34399baa8ff76813b8c150fe

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 807.9 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 cefe2756bc005e7fd08c300352e68d3c982f19d3e8edbd83856caa3f628f50b7
MD5 63a3c893f4eec67e42cfaa09b39e3d29
BLAKE2b-256 e17f280b40b65924ca4407c7efc639862a3de9c205f06df613b207ac60a78356

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 868.6 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fa6425e103416f8fa1280922e4eb4ce2f57e30089f20ebf90ae2db5b6678e4ad
MD5 84f4289f2f550dabe5d73cf68d566146
BLAKE2b-256 c3a0f07ad2a4ba1f4c0ca848b69c85d1b706e019419399933936753bfb10a79f

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 802.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e1da8ece4af44fadeb7e88b447a49030da75278739274bbd2ba6a24702d8b272
MD5 935917b89056d1c3be6856b64e7ca634
BLAKE2b-256 e0465b0eaabb55da3618bc10d7621f9e499b709f756be3a62d735ba479090a47

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

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

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3f3dc1d5b7113883a9c995d020156470e386e95cfea6949ebca410392a564c9
MD5 258d825944ac34faa4346b98652e54f0
BLAKE2b-256 4a9020033a9c78685de78212584e635fb63e3609d28de9e65ccffc06bd4b1426

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a19a1cc96faa61977278123cd19defdc731cca8970fc56543a3ce4ad3a2bde0
MD5 6948733a458caf653bdb61dbf9332e01
BLAKE2b-256 45776318a2949f6378f3e7088438949af497b1f17c93211892c7ffdea3a8543f

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0b05026beeedf2c4dde6a40dcc9ade4a9adbd2420c1a53704d574e72c38a5a5
MD5 4b491cc4eb4ce2720986501861caef73
BLAKE2b-256 0712b0c27d108c81bf20eb8450eb1bdbbf08d053b24ff02bdcbab7c2f153a217

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tibs-2.0.0rc2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4aeb77ea028fc680d083e44e7becf6f239f4e16a336c441c3635eef4fb39ffe8
MD5 df49e852bb2f1487f104e51b8f04515c
BLAKE2b-256 167e7164f6f663981fb62acbbe2ea0a1a36ffdc3c598dc196afef3917db420f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tibs-2.0.0rc2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e237290fca367a31ecb34f7c3ef8e390b3508800f3ec3b41a0830f96ece4352f
MD5 dd297ce3e57235d17e528868bab6ef8f
BLAKE2b-256 a2d9e3a0f50bd1afcd78619b215b74934bc090b7b6f3225618b49a0b54901890

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tibs-2.0.0rc2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8a40348a7d5190d56a622862a5b6ee6fa691fc343f5b6a4451e001a92b335ad
MD5 5b65b5bbd3f7d0c52c3d0af8b733a4c9
BLAKE2b-256 d44bed8edb1828bb44bbd831381f6955c8f5d2c7be2cf126acf7e926e99380ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tibs-2.0.0rc2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a7459694c75112b789acc9bcd93b1e7b0e286e62dc811958399d305f5948568f
MD5 409d67887f2043fc846d46455614ed0e
BLAKE2b-256 6fed89257aecc876f3dde20a85a85ce0aeaef9ae4569f9a3b64107b550f961a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tibs-2.0.0rc2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abe6d594a2f318fb501c7be200470de999eb7532b9de25662da9abe1c5bcf7f5
MD5 d5c125239e4f5514ce792ea824a297ef
BLAKE2b-256 a31f16b861c0fa1b3a612eee054f1463a51452884898fe72ca5d68704ff2a529

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tibs-2.0.0rc2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd30a51552f199878369c848a630ed5c20a4a8a2d67cabcfaacf76d7c61f6554
MD5 a04c8308811520873c58bc658dc061f3
BLAKE2b-256 3e5a3815003746a9f31df17844420414e58d4e20eb4a1f2ffc042b180d784da1

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 967.0 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ea7754458bc30efbe0b090a14842ecc18b56ab02a85c02612167d8024a7c7f5
MD5 602b6b782ba5be354aeb98dda07e07ee
BLAKE2b-256 e84601e94977650c8bc980bd3c13b16c4fa42db8007eaf4ecc6c58a9e5f2d497

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd52e7b13eb1cac6270609a92fcf6baf7a855d176b3bb3747489876610404cd4
MD5 3e2c9662c28be2bdc8d9b3bd1921f8e7
BLAKE2b-256 5607b1753288cc5a87425a52f6ca345408620aa92ed75167b2ea18a3ab2177ab

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-win_arm64.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-win_arm64.whl
  • Upload date:
  • Size: 812.4 kB
  • Tags: CPython 3.11+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 8566a0f24ce939a2b3f3ed7a52e5636bc3d1e03f88b5bcf263758b3516f4bf46
MD5 d9d06e7af71ba5e8f2cf5d176c54e4be
BLAKE2b-256 b9726812c3414b375ba5936f73a6a058f48ba63a745e0dfc47199162dabbf426

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 874.7 kB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 38ebb30cf8fc3b61b7a20c2ed73dc242f6f37b487485e38ee02a62e221cb43f9
MD5 920c2b7d5bc003ddcf8da1c8d258b533
BLAKE2b-256 feff81ed6db388c69ba55ca8c8c619d4b614eeb1158f3d61c7d9bb0644d3bdc4

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-win32.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-win32.whl
  • Upload date:
  • Size: 811.2 kB
  • Tags: CPython 3.11+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 cdda8619866842bdb3f897e08469f5a29dc91ab67aa045d171e011b3843e174d
MD5 e23f159d935316017d28a772004248e8
BLAKE2b-256 66ba918dc534c9bb8a7f8690f2afc3fdf762b53c35d631df16b1f11ccbeb7647

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4459c1d1cddebb84663d705e8748713ce5795f7d17386cf53c29aff59477fbb5
MD5 bbf006aceabb11249456e114b3909329
BLAKE2b-256 b1535908023f980e59dd4c73d0262fe674ba85b5adb06974caa0d0c2c1683857

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e278da8e293c4e9c67ef1c335adc31f6b778341ac3fa49b66efb847d990d884
MD5 a4e8ba0aa1562b45093c89ac0eb26654
BLAKE2b-256 344d6bd743b613071a6d482e52a2a5d873105fa841a4021967641e6ca6fa8a08

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7a5ca4182d4e257617f502d154fb7d2bb2c86013db51b1356b939c05ceda39b7
MD5 bd69ba0253a831b3b1077290c25df8f7
BLAKE2b-256 9d19acdb51b482579e0386fba50118e6ab2fe0644cdbdc3cb299c9704ececc26

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcd35cacbb918b378010abad9d43687aedb8c3f4a901d749dd5259e5a5aa6c25
MD5 394b2cd89992fa5c50c64c7349a442e4
BLAKE2b-256 400166be6d6b6cb3cc88b37047d4d2b885122d48b699f9a95b2d06a9e920daea

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f22b1af013cbe0c92ae9317df0c16ec08a02768a5e7e885a62c49bdc027d9786
MD5 e4bd78336e4165d293c22a6d281230fb
BLAKE2b-256 0e0310cad84937e14980ed291a530d6053ae4f91781df8e1c081f82287c463e4

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 baf5b318ecf7cfd8c0fc98310ba16490a42d0e26286ca13479a3b8ad37ad0ca9
MD5 cbbe32649298eaa85e7af3d467241787
BLAKE2b-256 cf3dd37baf090751d04d2baf77cc6326107eaf65dc6e8c9556a0df9fa66d96f2

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb2026cf4e824c8e1f3608f39f7cffc3a2dfbb8aa6bf353abfa89c8d3541adb3
MD5 6fc0d1f3bc07e9e789b4b3c26b6d7b7b
BLAKE2b-256 85c6867b35f24997ff59b6ecefffa029613e3489fc712a17cb1c2bbda9f733a1

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40c03a0c8cac7fcbaf3f985ebcdb6b76a98018888065fd618beb0ac24ca27590
MD5 27b57fcce6febdfb1d385dee2fd40e8f
BLAKE2b-256 10662f7a35caf1d1f65b511c9e740384b5743aea76af19f1316aeeaeee22936f

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9e7b30882a021021f7b246fee0834f19065262daac97fa183d9f7acea306e5f
MD5 dc601c94605e08169a1efdebaadefa96
BLAKE2b-256 1e1eb362a8f298e79bf1aba31d1c55bedee5ed5deab83d34e459640c97ab2b21

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e1a6d57ab5621231cd720724a204b0eae6cb79c3eb64b2d20530bde0c5d5daf
MD5 732e653918cc10bae84aa2e2e3876844
BLAKE2b-256 e5378c014d17e7468cee8a13b7c4a3856c4224f1b8f22ce00a512c0092822449

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 975.7 kB
  • Tags: CPython 3.11+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9dee0f73b3a87df567e7680a0412abaaabfd3235054b7bb89d4f1a837a80c349
MD5 714ce5202f293f5c74ccbe8afe494e28
BLAKE2b-256 401fb90377160e273adce09597c0ea07a86bffb60da89b146d736ea75d6e5171

See more details on using hashes here.

File details

Details for the file tibs-2.0.0rc2-cp311-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: tibs-2.0.0rc2-cp311-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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-2.0.0rc2-cp311-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a04ae647499f55b3f2f939f65a1a5aabf0bb1da1a3ff297f05ac8ed05b761b05
MD5 5f5fe0eb970762cc8838a0ce79834a8f
BLAKE2b-256 7b2c21dd8f4832a2573c4ca56326bf0354d3466e6f6be252a7cb180bbdc2cd3a

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