Skip to main content

libibt

PyPI Python

A Python library for reading iRacing IBT telemetry files. Rust core with PyO3 bindings for fast parsing; returns data as PyArrow tables.

Installation

pip install libibt

or with uv:

uv add libibt

From source

uv sync
just build

Requires a Rust toolchain (for maturin) and uv.

Usage

from libibt import ibt

# Load from file path, bytes, PathLike, or file-like object
log = ibt('session.ibt')

print(log)
# LogFile(file_name='session.ibt', channels=142, laps=12)

# Access a single channel (PyArrow table with 'timecodes' + value columns)
speed = log.channels['Speed']
print(speed.column_names)  # ['timecodes', 'Speed']

# Merge all channels into one table
table = log.get_channels_as_table()
df = table.to_pandas()

# Access laps (PyArrow table: num, start_time, end_time — all in ms)
for i in range(log.laps.num_rows):
    lap = log.laps.column("num")[i].as_py()
    start = log.laps.column("start_time")[i].as_py()
    end = log.laps.column("end_time")[i].as_py()
    print(f"Lap {lap}: {start} - {end}")

# Session metadata
print(log.metadata['track_name'])
print(log.metadata['session_info_yaml'])  # Full iRacing session YAML

Filtering and resampling

from libibt import ibt

log = ibt('session.ibt')

# Select specific channels
subset = log.select_channels(['Speed', 'Throttle', 'Brake'])

# Filter to a time range (ms, inclusive start, exclusive end)
segment = log.filter_by_time_range(60000, 120000)

# Filter to a specific lap
lap5 = log.filter_by_lap(5)

# Combine filtering and channel selection
lap5_speed = log.filter_by_lap(5, channel_names=['Speed', 'Throttle'])

# Resample all channels to match a reference channel's timebase
aligned = log.resample_to_channel('Speed')

# Resample to a custom timebase
import pyarrow as pa
target = pa.array(range(0, 100000, 100), type=pa.int64())  # 10 Hz
resampled = log.resample_to_timecodes(target)

# Chain operations
df = (log
    .filter_by_lap(5)
    .select_channels(['Speed', 'RPM', 'Gear'])
    .get_channels_as_table()
    .to_pandas())

All methods return new LogFile instances (immutable pattern).

Progress callback

def on_progress(current, total):
    print(f"Channel {current}/{total}")

log = ibt('session.ibt', progress=on_progress)

Channel metadata

Each channel carries typed metadata via the ChannelMetadata dataclass:

from libibt import ibt, ChannelMetadata

log = ibt('session.ibt')

# Extract from a channel table
meta = ChannelMetadata.from_channel_table(log.channels['Speed'])
print(meta.units)        # 'm/s'
print(meta.desc)         # 'GPS based speed'
print(meta.interpolate)  # True

# Or from a PyArrow field directly
field = log.channels['Speed'].schema.field('Speed')
meta = ChannelMetadata.from_field(field)

# Serialize back to PyArrow field metadata
raw = meta.to_field_metadata()  # dict[bytes, bytes]

ChannelMetadata is a frozen (immutable) dataclass with fields:

Field Type Description
units str Unit string (e.g., "m/s", "revs/min")
desc str Channel description
interpolate bool Whether to use linear interpolation when resampling

Metadata is preserved through all LogFile operations (filtering, resampling, merging).

Metadata fields

log.metadata contains fields from both the binary header and parsed session YAML:

Key Description
session_info_yaml Full iRacing session info YAML
session_info Parsed YAML as a dict
track_name Track internal name
track_display_name Track display name
track_city Track city
track_country Track country
track_length Track length
track_id Track ID
track_type Track type
series_id, season_id, session_id, sub_session_id iRacing IDs
tick_rate Sample rate (typically 60 Hz)
record_count Total number of records
lap_count Number of laps
session_start_date Session start date
start_time, end_time Session time bounds
event_type Event type (e.g., "Race")
session_type, session_name Current session type and name
driver_name Recording driver's username
driver_user_id, driver_irating, driver_license Driver details
car_name, car_id Car screen name and ID
car_gear_count, car_redline_rpm, car_shift_rpm, car_idle_rpm Car specs
num_drivers Number of drivers (excluding pace car)
weather_temp, weather_surface_temp, weather_humidity Weather conditions
weather_skies, weather_wind_speed, weather_wind_dir Weather conditions
car_setup Full car setup dict
sectors Sector split definitions

Limitations

Array variables (count > 1, e.g. tire temperature arrays) are not yet supported. Only scalar variables are returned as channels.

Development

# Build Rust extension (release)
just build

# Build (debug, faster compile)
just build-debug

# Run tests
just test

# Run all checks (format, clippy, typecheck, tests)
just check

# Format code
just format

License

MIT

Release files for libibt 0.0.5

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for libibt 0.0.5
File Size Uploaded
libibt-0.0.5.tar.gz 24.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for libibt 0.0.5
File
libibt-0.0.5-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
libibt-0.0.5-cp314-cp314-pyemscripten_2026_0_wasm32.whl CPython 3.14 CPython 3.14 PyEmscripten 2026.0+ WebAssembly Details
libibt-0.0.5-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
libibt-0.0.5-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
libibt-0.0.5-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
libibt-0.0.5-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
libibt-0.0.5-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
libibt-0.0.5-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
libibt-0.0.5-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
libibt-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
libibt-0.0.5-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
libibt-0.0.5-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
libibt-0.0.5-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
libibt-0.0.5-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
libibt-0.0.5-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
libibt-0.0.5-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
libibt-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
libibt-0.0.5-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
libibt-0.0.5-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
libibt-0.0.5-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
libibt-0.0.5-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
libibt-0.0.5-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
libibt-0.0.5-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
libibt-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
libibt-0.0.5-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
libibt-0.0.5-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
libibt-0.0.5-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
libibt-0.0.5-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
libibt-0.0.5-cp311-cp311-macosx_10_13_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.13+ x86-64 Details
libibt-0.0.5-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
libibt-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
libibt-0.0.5-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
libibt-0.0.5-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
libibt-0.0.5-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
libibt-0.0.5-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
libibt-0.0.5-cp310-cp310-macosx_10_13_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.13+ x86-64 Details

Total release size: 11.1 MB

Release files / libibt-0.0.5.tar.gz

Download URL libibt-0.0.5.tar.gz
Size 24.9 kB
Tags Source
SHA-256 checksum
How to use checksums
73485c365132e8b5dd29d4f42d391b8b8bedeee9862c4dc88f371763d2735e8e
BLAKE2b-256 checksum
How to use checksums
d83d906e00f46c2efa20715f64b8563a02b0e9a6470044d8df96becfe6faca2d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp314-cp314-win_amd64.whl

Download URL libibt-0.0.5-cp314-cp314-win_amd64.whl
Size 238.0 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
94a57d8c48853444d5e2946e82b8e53151c21ac24b89efa2492ee178f501a04e
BLAKE2b-256 checksum
How to use checksums
d0f1807719c6e38e70abe6e100b7f3a9a1452524d543b86ad39e4951ea0752a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp314-cp314-pyemscripten_2026_0_wasm32.whl

Download URL libibt-0.0.5-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Size 145.8 kB
Tags CPython 3.14 PyEmscripten 2026.0+ WebAssembly
SHA-256 checksum
How to use checksums
dfc4da40f5798d2d16b1bd463d52d839f05e7ba91e45cf6f73a0f6c20a68233f
BLAKE2b-256 checksum
How to use checksums
0ab67a5e603fc8fef3eba4cad48c7e169dcb52a0e0ceb333c372977d6877ad30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL libibt-0.0.5-cp314-cp314-musllinux_1_2_x86_64.whl
Size 392.5 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e60b4cf1a09c41d330377ba51c66071bbb5c89a6a21b9ed757bcd97f8827c3e7
BLAKE2b-256 checksum
How to use checksums
17c043c09cc11a247973428adfdc5b609faff94e6c2d193ce136b0661245fb45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL libibt-0.0.5-cp314-cp314-musllinux_1_2_aarch64.whl
Size 363.0 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
39928d75c6a291e27fad4f72b31aa047e00e357cf7b1db652634aa6409c60283
BLAKE2b-256 checksum
How to use checksums
d73ee940069b90fc207add62ed27aea0f790cb6a664a3b87f5c4e74120717f7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL libibt-0.0.5-cp314-cp314-manylinux_2_28_x86_64.whl
Size 312.7 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f344a39a46008c5c9a4e43daf52c6d6bfedd304426060f2599c28bc621095cc5
BLAKE2b-256 checksum
How to use checksums
72a42c99d017b318bf1a9f7318eacc837d58ad408183c73cc49a44136411e783
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL libibt-0.0.5-cp314-cp314-manylinux_2_28_aarch64.whl
Size 297.7 kB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5f8ccda95488306e399be05f7dc0173dbb55fff81b4f3c6c24f369b2f5dde435
BLAKE2b-256 checksum
How to use checksums
0f70c30c0b40fd6d68971aae79821234576c7d2f7c49e74715f2d6f555eb4d17
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp314-cp314-macosx_11_0_arm64.whl

Download URL libibt-0.0.5-cp314-cp314-macosx_11_0_arm64.whl
Size 284.5 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
89f142e38d3ce08dacfa3ce762c2b3d8726a1007b920348271d2147039ab4df0
BLAKE2b-256 checksum
How to use checksums
155bd908eddc94f7844dd17e5331de92e9a515b962a2ded8d5f4e8db8290b061
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp314-cp314-macosx_10_15_x86_64.whl

Download URL libibt-0.0.5-cp314-cp314-macosx_10_15_x86_64.whl
Size 301.1 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
99ff4026bc042b9867aba86af3681ec071bbcd978b375ddb5e359554e2baa520
BLAKE2b-256 checksum
How to use checksums
ae57ffef4b57baf111422402bc1dde3b7921ad3aa056b40999fd43ccb627807f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp313-cp313-win_amd64.whl

Download URL libibt-0.0.5-cp313-cp313-win_amd64.whl
Size 238.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
6a9cdb358960f1f7c13f5271a89c96cc0ffb5ce50ca6baaa922f8e70d374e750
BLAKE2b-256 checksum
How to use checksums
437367e80b81ab0d2960bf81f29ce9bc903efa959ec86cdf788dc6c886b1f638
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL libibt-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Size 392.6 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
71c929c4ac6d97c08979d0134269e2479a964058e18250ef52d5b6c51b5929bb
BLAKE2b-256 checksum
How to use checksums
6dbc0d9de40d13a610807d3fea8450f823763a36401b12f22994806986e6b2dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL libibt-0.0.5-cp313-cp313-musllinux_1_2_aarch64.whl
Size 363.1 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1f7179b698ff9aed33c879bfac9a9d69b223ff273be508c989caba6808d7e609
BLAKE2b-256 checksum
How to use checksums
1f5f046e2a54a60d23e1b05097e8012dcd2b9c7a258a748358e3eb4143ce3164
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL libibt-0.0.5-cp313-cp313-manylinux_2_28_x86_64.whl
Size 312.9 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
36a504353d05d5f34c30ae1a548e82c9a0926fe4308d82611b786e68687da218
BLAKE2b-256 checksum
How to use checksums
64d8fc1bd2cc42e2354f06f45fd03472cf504b4bce622d03899773cb833b8d2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL libibt-0.0.5-cp313-cp313-manylinux_2_28_aarch64.whl
Size 297.7 kB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9f8ca8a369e7c7de8d13bbbc75e45f72f7e79157a7b51247ce89d5fa6d678f04
BLAKE2b-256 checksum
How to use checksums
e77f2a5e5bea3c2b6600a52aa80ea2aa55529aebaf2fdd67bb0ab098b63fc1ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp313-cp313-macosx_11_0_arm64.whl

Download URL libibt-0.0.5-cp313-cp313-macosx_11_0_arm64.whl
Size 284.7 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
165e3c11456aca67cdadbc7bd82456c8e80fe19f646fc5356e4eadd7594d262a
BLAKE2b-256 checksum
How to use checksums
3bcbc445e551fa96d8a7cf90b96d13671b8137cf609b7568eb44dddceb5ca43d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp313-cp313-macosx_10_13_x86_64.whl

Download URL libibt-0.0.5-cp313-cp313-macosx_10_13_x86_64.whl
Size 301.1 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
b2ee8bec0397c3faaf02162efda795c52a3e427fc92a7d50d89ffa4629ab86f2
BLAKE2b-256 checksum
How to use checksums
c9e5ef35636d19c790fb579cdc1a3ffd83be7f0c78963b5138bf9407daf89891
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp312-cp312-win_amd64.whl

Download URL libibt-0.0.5-cp312-cp312-win_amd64.whl
Size 238.2 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
398a62a08c19b389c9445f7683588eca89465954f36b029d2a33a9494b94d377
BLAKE2b-256 checksum
How to use checksums
0e24f837d5f38bc2b4be185dd9d8924e1d99d785041524b193d2d6144108bac5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL libibt-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Size 393.0 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c99b9b7bfacb1a724eb15944e93246648149e0b1e00b01d53c124e54ea32100e
BLAKE2b-256 checksum
How to use checksums
32822b0269f6aa456ca8a19a41f14f0d0a31d4bcec273528e6c92accd940ea2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL libibt-0.0.5-cp312-cp312-musllinux_1_2_aarch64.whl
Size 363.3 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
126a5502f5fc2bf1ebdeed4bc1d83cb7ad53b321f79630d77923f21278a645e5
BLAKE2b-256 checksum
How to use checksums
6f2d416e2a5feb02fe348470c31e46853e334b677a929334f871efbd31fb59f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL libibt-0.0.5-cp312-cp312-manylinux_2_28_x86_64.whl
Size 313.2 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8f4593a32088c83be82807f5a9bccf7e3fc56c2a48b7c35a6a11bf3b46192e8a
BLAKE2b-256 checksum
How to use checksums
0aa8da2643f8c5213ea1ed48c7f742b51868d083b17caff4dd0c6f6a17f98dc3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL libibt-0.0.5-cp312-cp312-manylinux_2_28_aarch64.whl
Size 297.8 kB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d36f68b09ff1c139096ef2e2eda30b86fce51aefd978b7019fb6a6e504318b12
BLAKE2b-256 checksum
How to use checksums
a02cf278c87bed1833d89c332fbcda07d888bb86f402ff1dff361794324b7f4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp312-cp312-macosx_11_0_arm64.whl

Download URL libibt-0.0.5-cp312-cp312-macosx_11_0_arm64.whl
Size 284.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f1216ef03560028db558bba605dc8d8aea7200eed6c8cb4fc223e5c1cb46c6be
BLAKE2b-256 checksum
How to use checksums
aa08ea93944767ecf16d4667a985ac8c2d70d95e42cd093dc2361166a1a8079e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp312-cp312-macosx_10_13_x86_64.whl

Download URL libibt-0.0.5-cp312-cp312-macosx_10_13_x86_64.whl
Size 301.3 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
3cc50a67c4f995eb78905e024d35546ace8c756dbe713138249dafd3e0bb2fa6
BLAKE2b-256 checksum
How to use checksums
1aa442031f7fcf329d3906d58eba9acb4264e63c9af6af03df9e9f35fd6410ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp311-cp311-win_amd64.whl

Download URL libibt-0.0.5-cp311-cp311-win_amd64.whl
Size 237.4 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
006a3253f9eb5723bb1f1d91407ae372515d991df30f14f5501b41b001d6c1c4
BLAKE2b-256 checksum
How to use checksums
70c7a342f632b13bbe0e7d78b57b1ad6953dd738cdbbddfaffdab97490bb3bce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL libibt-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Size 394.4 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
988742032f6f997c2178ade7aa1583615db58e18df36449bf71a54b05b85ffd9
BLAKE2b-256 checksum
How to use checksums
7cd53d056cdd6a0d288c5a38b662ab8083216cc02d21bc2336eaf9f903e23695
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL libibt-0.0.5-cp311-cp311-musllinux_1_2_aarch64.whl
Size 364.6 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
5175a48769fc838689a218944b3745f386f3c4965cb04ce0234f9d65b403de20
BLAKE2b-256 checksum
How to use checksums
8eeeda0d38c3e71997e818f3b7e233df75b5e6596040ef8d3620ac2b820d7a6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL libibt-0.0.5-cp311-cp311-manylinux_2_28_x86_64.whl
Size 314.6 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
03fff6ecbdad13f612c6521c2d5c6275610f30be31079c7ca1ac522978b6a05d
BLAKE2b-256 checksum
How to use checksums
a08b8099812932e4bd8120a742d957af31280a068df3131ff35d87282e3369c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL libibt-0.0.5-cp311-cp311-manylinux_2_28_aarch64.whl
Size 299.4 kB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
65b3fa38390a292e893ce3d4280071e20e7745c2033fff61b84392c62b7bbe29
BLAKE2b-256 checksum
How to use checksums
a9cb9f97c9fe2ae4d0841f83225fe538779cf56cf5068c84b3a42c0fa917146f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp311-cp311-macosx_11_0_arm64.whl

Download URL libibt-0.0.5-cp311-cp311-macosx_11_0_arm64.whl
Size 285.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
81e7529f8b799632fe69de050f601836565857a777783531ff9587369de068b3
BLAKE2b-256 checksum
How to use checksums
00ce6796de4b734b722b223e5ede677a006a8714d09bd4fa8f0191c37886e028
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp311-cp311-macosx_10_13_x86_64.whl

Download URL libibt-0.0.5-cp311-cp311-macosx_10_13_x86_64.whl
Size 301.2 kB
Tags CPython 3.11 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
c589e3c6782133af051cfcd2a8f6676df6f03d6ccbffb705b24862fd115e2d65
BLAKE2b-256 checksum
How to use checksums
9e04034e7d4acd9e8173503bb2087b9547bb36ffa0df4e00473b79e6a26053ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp310-cp310-win_amd64.whl

Download URL libibt-0.0.5-cp310-cp310-win_amd64.whl
Size 237.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
313b8f51f02eea949c4ee01862d68527ab8fdfbbe447140f16da69cb82da1804
BLAKE2b-256 checksum
How to use checksums
ea085266c3b2df58ed9a29687ce92fd45837fe5bcc2e0a5b55d70a4587a0a5fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL libibt-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Size 394.8 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4500b8924a7d48fe11e3c1c658785a3858bcded74bde75b9845b84834184eafd
BLAKE2b-256 checksum
How to use checksums
666b30fb2795add87840611360a982539f1795a040f0dc26ad81a521048fa531
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL libibt-0.0.5-cp310-cp310-musllinux_1_2_aarch64.whl
Size 365.3 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
cff0d8aa52360158cb72e1918a230783fd47eebcd76d0a954e4a4536fffddd98
BLAKE2b-256 checksum
How to use checksums
53a70847c0317f9a0349cc5c7c0827546d7af8c6fb934afc14a4fd31f9a119c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL libibt-0.0.5-cp310-cp310-manylinux_2_28_x86_64.whl
Size 314.9 kB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
11dd1754fd20cf9778feec1e16be139f0d71e6de5d62ade69c6e9931e5934eb9
BLAKE2b-256 checksum
How to use checksums
c4702c2dff5841e7893ae49994aa970c4f61f98dd9a8e3cd7587c16a4ef04be8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL libibt-0.0.5-cp310-cp310-manylinux_2_28_aarch64.whl
Size 300.3 kB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d9a219dd5bc87bb408b0e0190a4a8930a30a5ce570e05b26ab66bb9832001988
BLAKE2b-256 checksum
How to use checksums
6cf6304c74607593df1e53a88b6ad426269ea0386685462777da925f22c577fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp310-cp310-macosx_11_0_arm64.whl

Download URL libibt-0.0.5-cp310-cp310-macosx_11_0_arm64.whl
Size 286.0 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4ab79ab8e1a32e460586f55bf1d4aa57b666861bd0e79890a2a8b035075a5055
BLAKE2b-256 checksum
How to use checksums
da38fe43b4096f62dff42948ce1f20739adacf7602ad95e75a16633cc9702385
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release files / libibt-0.0.5-cp310-cp310-macosx_10_13_x86_64.whl

Download URL libibt-0.0.5-cp310-cp310-macosx_10_13_x86_64.whl
Size 301.7 kB
Tags CPython 3.10 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
2cb013ec4058404df79f21dc1836a92403df72373920f1518b225d1105a8bb2a
BLAKE2b-256 checksum
How to use checksums
cf487fdfeab651939a7af4787d6794ca24d95da2958f1bc3916fe67a3e2b398e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 17, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.0.5 This release

37 release files

0.0.1

36 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page