Skip to main content

Library for reading iRacing IBT telemetry files

Project description

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

Project details


Download files

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

Source Distribution

libibt-0.0.4.tar.gz (24.6 kB view details)

Uploaded Source

Built Distributions

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

libibt-0.0.4-cp314-cp314-win_amd64.whl (239.0 kB view details)

Uploaded CPython 3.14Windows x86-64

libibt-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl (394.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

libibt-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl (363.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

libibt-0.0.4-cp314-cp314-manylinux_2_28_x86_64.whl (313.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

libibt-0.0.4-cp314-cp314-manylinux_2_28_aarch64.whl (297.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

libibt-0.0.4-cp314-cp314-macosx_11_0_arm64.whl (285.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

libibt-0.0.4-cp314-cp314-macosx_10_15_x86_64.whl (301.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

libibt-0.0.4-cp313-cp313-win_amd64.whl (239.1 kB view details)

Uploaded CPython 3.13Windows x86-64

libibt-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (394.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

libibt-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl (363.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

libibt-0.0.4-cp313-cp313-manylinux_2_28_x86_64.whl (313.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

libibt-0.0.4-cp313-cp313-manylinux_2_28_aarch64.whl (297.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

libibt-0.0.4-cp313-cp313-macosx_11_0_arm64.whl (285.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

libibt-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl (301.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

libibt-0.0.4-cp312-cp312-win_amd64.whl (239.3 kB view details)

Uploaded CPython 3.12Windows x86-64

libibt-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (394.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

libibt-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl (363.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

libibt-0.0.4-cp312-cp312-manylinux_2_28_x86_64.whl (314.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

libibt-0.0.4-cp312-cp312-manylinux_2_28_aarch64.whl (298.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

libibt-0.0.4-cp312-cp312-macosx_11_0_arm64.whl (285.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

libibt-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl (301.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

libibt-0.0.4-cp311-cp311-win_amd64.whl (238.4 kB view details)

Uploaded CPython 3.11Windows x86-64

libibt-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (395.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

libibt-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl (365.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

libibt-0.0.4-cp311-cp311-manylinux_2_28_x86_64.whl (315.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

libibt-0.0.4-cp311-cp311-manylinux_2_28_aarch64.whl (299.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

libibt-0.0.4-cp311-cp311-macosx_11_0_arm64.whl (286.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

libibt-0.0.4-cp311-cp311-macosx_10_13_x86_64.whl (301.3 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

libibt-0.0.4-cp310-cp310-win_amd64.whl (238.9 kB view details)

Uploaded CPython 3.10Windows x86-64

libibt-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (396.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

libibt-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl (365.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

libibt-0.0.4-cp310-cp310-manylinux_2_28_x86_64.whl (316.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

libibt-0.0.4-cp310-cp310-manylinux_2_28_aarch64.whl (300.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

libibt-0.0.4-cp310-cp310-macosx_11_0_arm64.whl (286.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

libibt-0.0.4-cp310-cp310-macosx_10_13_x86_64.whl (301.8 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

File details

Details for the file libibt-0.0.4.tar.gz.

File metadata

  • Download URL: libibt-0.0.4.tar.gz
  • Upload date:
  • Size: 24.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for libibt-0.0.4.tar.gz
Algorithm Hash digest
SHA256 7ef0dc6f9acd8fd3985ae3f08fd93dfe9f54adbe9d4cdf292edebf1915c932d0
MD5 6d0f34a7ba9126d2d5e9ce5bbad7b13b
BLAKE2b-256 f17892f1c2fcafd5c36177f512f325d13b0ad19cef44ce5fc1d66daa72f15553

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4.tar.gz:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: libibt-0.0.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 239.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for libibt-0.0.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ebff9f5dd72699c5a06ac0c6d0ce8faf6385ff69da0adb8ddfdef22fcef54f6d
MD5 8a1841de1ab7fe300e8862f60b1db127
BLAKE2b-256 845e4033a6121cf66f7785313873c82a124fba251d45ea5bbb2d88c789320cfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7aaa1c16ff9587e19a176a12382f524cca0e85c892da5922e94e94cefb2fada4
MD5 dc1a88ca87832b84cfc8e949d24c6eb9
BLAKE2b-256 0807743bc319b483f5b62ab04b70237ca2385e69b77125b1b8e611c2cee101ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 955fc65f5ba9a51e47b892566ac4773bfdd0a8544927148111b4e01a967325c8
MD5 c2ceb2346528909755119dce1eb069e8
BLAKE2b-256 88e4ac0f74000c3e9e9620cf3cb29f35af21fc8352e1bd273c632858431ed7de

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c6e4be78d170c21d42399ff527526c6d01d85874a52e2d8846dabe19b68c1a1
MD5 db8377172338e9c8e6b3a10efda23790
BLAKE2b-256 5d4518d21e998e0cb9d3772a21fd7f59f2038f785e27e47b2664b30d69c712f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ed8144339064c3016d7009717fe1716718e4e328b343d0fdbf6385e752302b5
MD5 12334cc34f5b1e660a28a5d72c7bdbb7
BLAKE2b-256 778b0ce9b76dc09665eb93b02195876deb4898d56b92cdf4b9787e28e1a766f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec361d976511a5ad1263336d33ca31c91b82f7a01e7ec3cb944ea0817fcf18a7
MD5 96f9ac7e8261f06dfe49f541c0c04c86
BLAKE2b-256 631853c558cdeec72368b015b7dcb8f3c0c247b75865f74e455fc9f4e42687f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 916c2479543016ef318ac66e9513db619b16887dfc8dd46861816c2522e8ee31
MD5 dba16d530966f477fd7bcd4ced795a86
BLAKE2b-256 fd86e02216402e1e5d911ac052e95dcb8e962a98ee9afc616dd46a3d9363824a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: libibt-0.0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 239.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for libibt-0.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fa9148a2713376e9729441a6cf758a6ff71d32f740397b0a99524065097e8e2e
MD5 4af37b609c2f11895cee33d2f85a425e
BLAKE2b-256 b523e8cc773ae47667144a0f0bb0b36de5bea5eebd0fddee14f03e02ce6e6909

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54f5536ceb5dff66b6429d2408ac75e7a783d622cf7cc5e0ede01845f7c19e89
MD5 75d5a5b90b413b1cc12b6a6c2301a1ff
BLAKE2b-256 8205cf5fc982413bcb430efd613ed2801873dfc2b28ebd904ab82bcf69288119

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd7758a2f170cd7ea3c48b935db791057aedd938ea21e1ae79f7e1209cc83e8a
MD5 9d06138393fa2650ab7a4bafb8984d5c
BLAKE2b-256 1e08f3e53d376717b53d5c054725ea9602efa6a8de4619f84777f5a15e131b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 47116efef605561218c7a412ae1bb9177dfc122270c3b3687f777f6762074ac4
MD5 7ccd85ddcb9d59d3da1c7a7e3a58b55b
BLAKE2b-256 d27a69de0e648b8079fcc2f312033c532132439c4e086da5d71903528b3c4132

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e57686b393a117df3e07cb6efd2344b901b134585a2a6c5c3cf7e149ab877e6
MD5 5547995e83fd30c3273ae324278b4b7e
BLAKE2b-256 11417615116115228a24e9961e96c502cc15222818bbc7ebfab17ce613af8785

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 886a48fa53a651e2677b2e7d0c6794e631c61ce8a6b129b7359bd454f8838bd9
MD5 3bf6d593c2cc5cfea42adf17cf450cf0
BLAKE2b-256 fef2921c4f5d353e671501ed07dc69c59ec119b0b072c87648f1fd6f9d1e10d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 02d7c6435e4aeb9fe07fb96a1a85ffbb05715a61be4aa43cb0cd950be909313c
MD5 4264389978aa693f04747d37bbe42148
BLAKE2b-256 d15f7fc55b1dd7ee64a54cb2d791aaa59453d496c20b8ffe9a1cd6e15b584bfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: libibt-0.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 239.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for libibt-0.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 21d44f7d5a98f5c7a4f31e05f97f4aafa25603f3f53f1b0da474e71279ba41c6
MD5 19813af25a8103a514b3d1d8f7574cc4
BLAKE2b-256 0166efa8d39cfda45c9a6e0fb98cfbabf4784aeb69793e9681bf1d711bec4ad9

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d857fe53f86f0fdc74ea1c8a5ea752149ed33b378c2043ebd7b9db5656211dc2
MD5 7e1a0ec139204034416b7750c782bb1f
BLAKE2b-256 141af5907740552e5b86835a6af77f6ec5074a092469b0481239e27948f45527

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 850fca3b5a36a8454267443da77828960fdb9f2e177d3610d4d0149b3d7ef9e1
MD5 d8ac6fe6955fe2f253897608401ceb1e
BLAKE2b-256 b59428a3ae2b519d48f3788f1b2d3422a38e4be42148169d95c2d39f4f27aa86

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9030c1d4400ae0b4c01588f32c1853b0de53c89cc33dc24edf50d27d0b395156
MD5 957bba6f209712a99becadefe7169777
BLAKE2b-256 2b5c542083aace79832654401ab93f22d23f43893a842533537ff557277d4edf

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d33d239838b1c674da08352177a5b2fb21b05f6532e93da5c7c35c7d4293dedd
MD5 f34f3dee12ff6ca467fa6a1ed321efd4
BLAKE2b-256 b2b75a1e8ec970cb9fa1bed783a16667d5aadd8fcb0d635f28dc25e6fe27034a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa527f441b8da5a137fb0ad88baeaa33235e63566a3097dfbd8d2af998a55013
MD5 9cb5a03adf5b7ab080a5f71df329f975
BLAKE2b-256 bdd08953b9a4e42863be15713f03c58ed7c8160b24b5c33362c5f77fc684cfc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7aea369cb936454683378d3a5d7f7bab5fff0962518ea03031189de203aa1291
MD5 631631d523808fe2d5e46332b5390363
BLAKE2b-256 df35947b114a0ec251933af9f28ed698af40ad181c3b20c58eb69d5b6cca83f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: libibt-0.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 238.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for libibt-0.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b1ced739d41946e716dcf8b322ccbdd966dac58d031622c57a201f5981518689
MD5 a84912ca8c637a66dcdc3288a1a6f882
BLAKE2b-256 c535fec2ac7019f1f68e88a61fff05655f5ceed32a9b7639c6454061e2476f5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b29ded6dbe1c96efca9053cf3ad74c747753540efdbf6c641143ed9762158246
MD5 b81d2fdb9f7a031c31803fc673f0c3cc
BLAKE2b-256 cce057035368a59caf2517e769a4c7b6f347eb66b75938a3b8da64270d807e6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce4da81b53e718470bec5339ce5621ae144ca91c2746f31f9bf705b4b372f49d
MD5 bedf5238eecac8a13df7986db2079f0f
BLAKE2b-256 307fb06559b1cffa54632b53700be96f4b982d88f2c28d462885d554dcb4fd1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba4ca96964a5926f2b48774a088f0aa1010d2a5ce0fdaf53b7a3ed733742340a
MD5 71791b7db06f83421bb413a951fa6d0e
BLAKE2b-256 bbaa78ccbb537fbeaa7386548303f51f9832344b84e5a5173f0d26a593d90f63

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b90d79d2bda68a93fc59adbd7b9c7e2dcf3644136556b6613a548be2381a6020
MD5 fe61ff8fb5c23c7c8b00b442bf366aa2
BLAKE2b-256 9f092585c1e3765e811cdefd299723609bc5ee4dbede4ac899b55376fad2daab

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bd1a5dd3689d0c6eda80de89d15f15c5b341ae015d1ff9b56cbd2e4fa135f1a
MD5 70141939da223a3301cfc1bdbcb3a96c
BLAKE2b-256 82dea849168eb5adb88d90722b3de82eeb8a80f9dc69f2af48195115c6121d9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1cc1ec5f7f6777c9b6a6f09ea73b7bfbe2b07c21870c59ed94bb00a64cc6d8ce
MD5 0ce5ba6d4561bf5228a796329c07682f
BLAKE2b-256 5ae647ce9a73eba0241a4be04f397da923ac7944d420228d43b29695a4373619

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp311-cp311-macosx_10_13_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: libibt-0.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 238.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for libibt-0.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 081a5072cb5a293448f052f909652c5013e7d631ab1b47290143f828aa7349ad
MD5 12190bf988e06f35cd5cd6043e280225
BLAKE2b-256 927ca10ed4e86c4b2ab5603fc8fbc08092e52abc4d16e2aa49b3743699f56f52

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ab1fe3b38f4df34c1899116b16d2ebf13a7e934f9b0117b30d745795f840969
MD5 707365e93380d5e071f04ab5067385fa
BLAKE2b-256 8e80a74dd3dce4ce973710ccedaff514a1d4691b62be1322c9e70b33b160b46e

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2bba5f31787a6b9a475bb57a98ce62145e38ec00390510f092f162825303b1e
MD5 26540549fc9a32912cb106a12f84826e
BLAKE2b-256 483e201b5186ed0669d014796cf89ad0697937a6e62fa0f3ba9cd2d5978738b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f64962b9f2517fd975685277d21cf830bb86c285a06e4e7badcd4ee76b3a17ca
MD5 2501d195bdbf92fa73f15bc80d642599
BLAKE2b-256 ba9457d663afc162663d60579ecd2630eed66f43d47262599802be47d62d7764

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f95cf712b4cf5187ed1abb799bf0640031654faa06ff44103fec04b59629953b
MD5 d4c068fea449362d1e65f49b7b828d49
BLAKE2b-256 fd3c3ca75b86dfe5caf11a7c2d9d4335c87f2bdd7da5d923f746c72eb4e5ad1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2acc5bda6fd4b21b3d52f8ad9aac48695818433d27ee7445c6604a58431b42e7
MD5 a6e40dc6b5c37050724fb0ac79b05541
BLAKE2b-256 f51ceaa624fdb2ce97a63b63e4f7bc9c67040d2064fbcf0f5feb311a3331f966

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libibt-0.0.4-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.4-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8166c4c5f6516078e217726b98e455ddaf7dce75a1c7ddbb61c16046d06231b6
MD5 2f7aa490ddf9bf97c630c52b556eb131
BLAKE2b-256 0e7095b4361794f614f0dd05e3d47f8471e45ae6881d6e29225834ca20d3e39c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.4-cp310-cp310-macosx_10_13_x86_64.whl:

Publisher: publish.yml on m3rlin45/libibt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page