Skip to main content

Library for reading iRacing IBT telemetry files

Project description

libibt

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

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 table carries metadata on the value field:

field = log.channels['Speed'].schema.field('Speed')
print(field.metadata[b'units'])        # e.g. b'm/s'
print(field.metadata[b'desc'])         # e.g. b'GPS based speed'
print(field.metadata[b'interpolate'])  # b'True' or b'False'

Metadata fields

log.metadata contains:

Key Description
session_info_yaml Full iRacing session info YAML
track_name Track internal name
track_display_name Track display name
track_city Track city
track_country Track country
track_length Track length
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

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.1.tar.gz (24.6 MB 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.1-cp314-cp314-win_amd64.whl (228.0 kB view details)

Uploaded CPython 3.14Windows x86-64

libibt-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (381.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

libibt-0.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (350.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

libibt-0.0.1-cp314-cp314-manylinux_2_28_x86_64.whl (301.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

libibt-0.0.1-cp314-cp314-manylinux_2_28_aarch64.whl (285.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

libibt-0.0.1-cp314-cp314-macosx_11_0_arm64.whl (272.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

libibt-0.0.1-cp314-cp314-macosx_10_15_x86_64.whl (288.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

libibt-0.0.1-cp313-cp313-win_amd64.whl (228.1 kB view details)

Uploaded CPython 3.13Windows x86-64

libibt-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (382.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

libibt-0.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (351.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

libibt-0.0.1-cp313-cp313-manylinux_2_28_x86_64.whl (301.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

libibt-0.0.1-cp313-cp313-manylinux_2_28_aarch64.whl (285.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

libibt-0.0.1-cp313-cp313-macosx_11_0_arm64.whl (272.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

libibt-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl (288.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

libibt-0.0.1-cp312-cp312-win_amd64.whl (228.2 kB view details)

Uploaded CPython 3.12Windows x86-64

libibt-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (382.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

libibt-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (351.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

libibt-0.0.1-cp312-cp312-manylinux_2_28_x86_64.whl (301.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

libibt-0.0.1-cp312-cp312-manylinux_2_28_aarch64.whl (285.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

libibt-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (272.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

libibt-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl (288.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

libibt-0.0.1-cp311-cp311-win_amd64.whl (226.9 kB view details)

Uploaded CPython 3.11Windows x86-64

libibt-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (383.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

libibt-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (352.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

libibt-0.0.1-cp311-cp311-manylinux_2_28_x86_64.whl (302.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

libibt-0.0.1-cp311-cp311-manylinux_2_28_aarch64.whl (286.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

libibt-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (273.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

libibt-0.0.1-cp311-cp311-macosx_10_13_x86_64.whl (288.4 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

libibt-0.0.1-cp310-cp310-win_amd64.whl (227.7 kB view details)

Uploaded CPython 3.10Windows x86-64

libibt-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (383.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

libibt-0.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (352.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

libibt-0.0.1-cp310-cp310-manylinux_2_28_x86_64.whl (303.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

libibt-0.0.1-cp310-cp310-manylinux_2_28_aarch64.whl (287.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

libibt-0.0.1-cp310-cp310-macosx_11_0_arm64.whl (273.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

libibt-0.0.1-cp310-cp310-macosx_10_13_x86_64.whl (288.9 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

File details

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

File metadata

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

File hashes

Hashes for libibt-0.0.1.tar.gz
Algorithm Hash digest
SHA256 3ccca33a778896fecdb37a3737555f5d743933b96c52500718b96dc4e36e2235
MD5 c616916806296c21dc29e96221d83b63
BLAKE2b-256 b4d9e26fe9205982d3a46aea5b7a2d2474d58b2767cb7342a2984e84d8bdfbd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1.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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: libibt-0.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 228.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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 70fa5e4caa676466d1bd3613356eb0f8af12312292996f74bf93486a8c2dacc4
MD5 af3b3001f19d478ff2c91c7c4e44d8bf
BLAKE2b-256 8813834cee9273ab8e38f5982c66028743cb975e9c733cff487ffed90120d9ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e89491df718ddc6594262bef08bfaa05be0aa543834c1fe1365b61a72f61b742
MD5 ee31c740f3033df38dac19b35a2a6203
BLAKE2b-256 b3c16167943ee7739b64eb4fbfce7d0b7701c9052652d47059482d1e31f062a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd810ca09cfb6e0ad538bc28aa9f3dd533ad29df5599c8198e7ff56413c07265
MD5 ea446fb7692855814335ddb9759bb6c1
BLAKE2b-256 4f48cf302936540969bcc27953501646eeba90524172fc5ed32dc177fce707fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6730a64e5f5f33f5730c0fe6133ca3ce16f2131fa5ca0aa425aa76dde3ceba9
MD5 f3e250671b7f4e12f47b1b9e76ef1fe5
BLAKE2b-256 ccf7d4fad6edc05f5c3c43d284fbbea092af0b9db2d6d77f1a4db580b944e8da

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6479341fdc8bceeed15ba29016f6be14667f941879574f96e5c914e8949de6f6
MD5 caf39950f78ce6cf5c887823e10fa8fd
BLAKE2b-256 d9eabcb5ca70e6988cb581949e6c75d9e9a29beb1b3f97d33abf396913b5a063

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad3d9fb56c1589a7744ad2ddc9965e5ec7222999a8ca97f0e6bcfa4e2fe465bd
MD5 88ea75955f57da7b420a65a29de30520
BLAKE2b-256 fcd0909782a795d94b64e17089bc6e6067517c6f4eb684f04d0eff8b5ba56567

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 011a6276bd3f40a4eaee59cca87f5d8e4585b9c8f8efacc0d544434d7d8f6570
MD5 f352604d2cc6a210c85ee64a9fd3a9d8
BLAKE2b-256 b368aa8d623a940302140a80373c706edea6fe066fd75d8ad4b0fcbd0fd0383a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: libibt-0.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 228.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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6efca85bbad7be452693e3528ce94945cec75a75a2b4f9de23296a299c705a2e
MD5 5edd5dbe09180d9006d2bc2339d77248
BLAKE2b-256 92d33af6dbe3a979520bd38ac542a5586db2dfd18e066825d068120a663dfef3

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6fdfea50d6cd4cf2c2968e7fbd28e7b2f12a3b2495c44913d999af37c301e44
MD5 37ce3ae28a9148e1abfd70d8c2549f88
BLAKE2b-256 4cea9482193081180869673e5d5a80aeefd620eec92bba32d6bcc7dc3110bb0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 affa79814855460532179d618c956af909b7ffb9015c8c491bdc0567ca42ea16
MD5 63e51fe634114ed7f23d4599016d9d87
BLAKE2b-256 5d98f654eaaad6bb37f5ae3138ea4fb5911ac2b4dbea7a25b5b292cea3862496

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1ae9236db5dfb279c23379ec8ad9b7ec4d653165b4f5d7e20d8236ed6105251
MD5 7ba580c16a0ae2d71faccb609f0bd7fd
BLAKE2b-256 26aae148c4bbac6d0e20248cca7906611074f8e6cc76a3a69ee69f2628b090fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0436eab6f26003bc89674a44f4b800b15240c1dcd0c1a0c3aaeb1aea68823e74
MD5 99b9bc1c2a2a4047a449773690355d18
BLAKE2b-256 5025c15c34b381d034c1b25450e326cfbbb76fe4c866c8c2a2a619240f32adb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41d8c3d1b54bf897c9f07e7226758c29715015972de88cab27d6d03f8ad1736a
MD5 c1c6adfe018c9a100d47f3aade04f522
BLAKE2b-256 99668cc4700346dc7fae123f7851286bdc409ac07e26c57fe690939c263018bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5120ff182e64b960f2df336b1c9d78759770f2723a52528b9b7e42b3133d93a4
MD5 bb123e893cef6c818bcbcfca2ed3c8b9
BLAKE2b-256 a4d7e1fdd8c795fddcba5b1fcab50a2c529d61dd6ced2047c23890686acfe14e

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: libibt-0.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 228.2 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 24df830e0b2e808d8aa8878f86b9506ccc4acd7b8d07da5066383a5da7fb9aa4
MD5 17c0a2b0abf2a98bf7ba2f22cafde9e8
BLAKE2b-256 fc951d8b9d4c85f9a3e4f1dbce8a158f578f6392052442a377d588da15a803dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ffc939b98be79acfeb65d927a12c583ae91c2bd310fe8e420f6c86db26f848b
MD5 b4a95b92c3272d3311eee489cbf104b8
BLAKE2b-256 14033d3de84f8d6f3f580f008812f8a89b4042b2fcc829efd039fcd671d7ce05

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d06b677e840541e92886273e9fc04b02468824c7a5da9d244ebb69388235c0a6
MD5 76198f7e588eaa58584e337be9b1c183
BLAKE2b-256 9be93d06d1359714db922e33b66c54b767c7e34bb31e15771dd974ca10faa290

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5b4eb73cfae279592c232e5522f46d1c15e082347889904a9eac4870708d10f
MD5 e8c5b57121bbea290d46aabde13e2601
BLAKE2b-256 a217d11732c3206bd005cecc916336b239e1597392703185c4335f8c1bebd558

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 692a8dc592942bb17e06b536829310704ed52bf0228dd8df2ccad08896f87ce4
MD5 f3a7f2c517cee15a8d46dce3784c3040
BLAKE2b-256 442fe6a10d2e56b86ee5f8587e87bdcdfbb3673e339c0f64de6ace2899aaf009

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 483cb1191f23a057c8f5c40c25f78f237ce2412bcc63320405b062979fbda339
MD5 b844b16f87290e49b67d570f91c3f39c
BLAKE2b-256 075a18c8fe822451c8c1f499afb7a8ed733217a27966a68435676731ef513825

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 becc65d7ed073a4af2876640b08aa27b3867259a2b54f224b2f24744bac0f1d3
MD5 696ec01e90674cd031479fc5ef464d60
BLAKE2b-256 a9caf4f06f2cd28ff8c25b01fb29e07b1524ca041c9501756d366134c3c91462

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: libibt-0.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 226.9 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9460ebc4824df48481ddd3dac7ef6e2a26e9cc30cf2f8e244a3d65cea630548c
MD5 eb045e1ce7f9c42c3ddf4d4497eb579c
BLAKE2b-256 165985f3ec9dc298521f681a2a5ed084112835b3fe044d99d92302ce9920f30d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e13dd3ea1abcffac8b1a38a0d1926762d7ddde5adabe2520a3bb2c64c43c442
MD5 aa488756a8884b5cdd177f50b6c3c2d0
BLAKE2b-256 e9441b88fe99636f06b5fcddbd5dc164608964dc50103c037fa86fa75e6db3b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b26c6d370e15762c30a4952158be9db397f0d8127eaa7a259244c64869176bd8
MD5 af57e29c3312f3d646919261174a52fd
BLAKE2b-256 aaefb8231f76388ecec61f13e4075c4f9bdead2aeb9c6335dcdbeea425fca402

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1074414482d90d581421163eacc96111402674d712ee8404937825e01b949848
MD5 1c8c48e6a47bdc6228d6afad302dce26
BLAKE2b-256 6b92cee4d39932b859593e99f179a11a6d619dec7fd7b954484e3a1257d3994e

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 29a748a92d46828ac32086e3815edd758adb728571745c1d3ae1e010beef5b47
MD5 60ee877807f459097eb686401f312f2b
BLAKE2b-256 2818d36809bbba3e8d9f99a200fb36b65441c97e1a8eaba06c86149831c02241

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 516d38d0e1d271431b5532b2935b69d022d06010cab1690e4fabaa30bbaa93c3
MD5 ff19855d819e210739e77af59a5878f8
BLAKE2b-256 b6d9168664c945b3b8802df78adfb464714cf2ac23857c7a8669caac5aa0c1eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 08030f03a3eafb5918f9e078740ad2ae348a622c713e4152b938203b3504bb75
MD5 1e8f5a7a29834656fc4513a69504bea6
BLAKE2b-256 8bff7242612e8c76fb0526b6b306a336ed7d1edad3515f9c7cddd51b4d2f115c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: libibt-0.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 227.7 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9758572434b13f91e69d071f7a2e294c37422bc9b0e2e66c12c7464a25a0eaf8
MD5 31d6694309d7e9838fcb738ccdb4b200
BLAKE2b-256 d5e8cf838b59f629843b1f40aa2db8c2b00b89c46e83bab9019496cb0fdf8ef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7442d3defb20e5708b1cbf0fad15cef851c5d8a41d0391b026351fc0630a91ca
MD5 3ce211317c3082f3e158cd4298da54f3
BLAKE2b-256 7b2805a941d466997121160bb7abe5f1ffdb8970335aa28e4f08ff1108df9c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ae994e13a0617f2b5a16ff11361997f64c81777d432cdf938f70d6bf1385f8a
MD5 54179c0ec983841aae8db5e09ad2492e
BLAKE2b-256 fb3e2bb45ffc4f13f300aaabf20e03526eae8ca528b2bc66d0d0f742423a9847

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95c63487406d64d4b8e7a426abf301481433fecb2a842b6cd7ae460aeec9192d
MD5 00da2fe0314c7c59f5772395cd24e9fa
BLAKE2b-256 840aaef8cfefab0071795907d415dd096a581acad776dc0129f1d4a1ff915bce

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30a06c1aed916bb98492cf6bd1feeb40807f047f0b6da50337f3582d8fd6020a
MD5 5fe043cc138530c7195a3a39c3f216da
BLAKE2b-256 2334fc91f56f55c20ed8cc37d907cd8f2965aabe51391670ef0b9ea66a8690fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccf124d818a81b11f2ab0db5ce40f3500d99b68986f40a3ccfab10c307e97711
MD5 27539d534bf9c2decf1d131fbd9bf0ba
BLAKE2b-256 ded26827ea1e96231fb965f6ab027ceaf9ab53bcba467b564e1ba03705ea027f

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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.1-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for libibt-0.0.1-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f37897c4121f826f828e8558713dfd22438b81eb871b2d99c750dde97e0d3a6e
MD5 ed8b437d44c28ff11379ea08d2011bf2
BLAKE2b-256 1519a12a9c0932d3f150c4abae036ac44cf4732babd17103f1dcbd8a4d181acd

See more details on using hashes here.

Provenance

The following attestation bundles were made for libibt-0.0.1-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