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.3.tar.gz (22.3 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.3-cp314-cp314-win_amd64.whl (231.6 kB view details)

Uploaded CPython 3.14Windows x86-64

libibt-0.0.3-cp314-cp314-musllinux_1_2_x86_64.whl (386.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

libibt-0.0.3-cp314-cp314-musllinux_1_2_aarch64.whl (355.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

libibt-0.0.3-cp314-cp314-manylinux_2_28_x86_64.whl (305.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

libibt-0.0.3-cp314-cp314-manylinux_2_28_aarch64.whl (290.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

libibt-0.0.3-cp314-cp314-macosx_11_0_arm64.whl (276.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

libibt-0.0.3-cp314-cp314-macosx_10_15_x86_64.whl (293.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

libibt-0.0.3-cp313-cp313-win_amd64.whl (231.8 kB view details)

Uploaded CPython 3.13Windows x86-64

libibt-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl (386.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

libibt-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl (356.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

libibt-0.0.3-cp313-cp313-manylinux_2_28_x86_64.whl (305.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

libibt-0.0.3-cp313-cp313-manylinux_2_28_aarch64.whl (290.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

libibt-0.0.3-cp313-cp313-macosx_11_0_arm64.whl (277.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

libibt-0.0.3-cp313-cp313-macosx_10_13_x86_64.whl (293.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

libibt-0.0.3-cp312-cp312-win_amd64.whl (232.0 kB view details)

Uploaded CPython 3.12Windows x86-64

libibt-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl (386.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

libibt-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl (356.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

libibt-0.0.3-cp312-cp312-manylinux_2_28_x86_64.whl (306.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

libibt-0.0.3-cp312-cp312-manylinux_2_28_aarch64.whl (290.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

libibt-0.0.3-cp312-cp312-macosx_11_0_arm64.whl (277.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

libibt-0.0.3-cp312-cp312-macosx_10_13_x86_64.whl (293.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

libibt-0.0.3-cp311-cp311-win_amd64.whl (230.9 kB view details)

Uploaded CPython 3.11Windows x86-64

libibt-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl (387.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

libibt-0.0.3-cp311-cp311-musllinux_1_2_aarch64.whl (357.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

libibt-0.0.3-cp311-cp311-manylinux_2_28_x86_64.whl (307.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

libibt-0.0.3-cp311-cp311-manylinux_2_28_aarch64.whl (291.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

libibt-0.0.3-cp311-cp311-macosx_11_0_arm64.whl (277.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

libibt-0.0.3-cp311-cp311-macosx_10_13_x86_64.whl (293.2 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

libibt-0.0.3-cp310-cp310-win_amd64.whl (231.4 kB view details)

Uploaded CPython 3.10Windows x86-64

libibt-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl (388.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

libibt-0.0.3-cp310-cp310-musllinux_1_2_aarch64.whl (358.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

libibt-0.0.3-cp310-cp310-manylinux_2_28_x86_64.whl (307.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

libibt-0.0.3-cp310-cp310-manylinux_2_28_aarch64.whl (292.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

libibt-0.0.3-cp310-cp310-macosx_11_0_arm64.whl (278.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

libibt-0.0.3-cp310-cp310-macosx_10_13_x86_64.whl (293.7 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: libibt-0.0.3.tar.gz
  • Upload date:
  • Size: 22.3 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.3.tar.gz
Algorithm Hash digest
SHA256 a086fdb2585f5350f3c189a38b9f1aec5db531a31ee09b1e27547c0e05b84b9d
MD5 d2d4e9ccbc7cabfc7ef3b3f3a9fc1f7d
BLAKE2b-256 670b0f1a8caf61ca6c6a6b834011cb577917f05f0c3eeab228e3a76385937f94

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libibt-0.0.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 231.6 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 66624f1642192424cfcb154bd77ac5cc31d98a71e40b32e3b4a51dfc09aa4d02
MD5 be5b30dc9c3bb8da98dec134947282ba
BLAKE2b-256 f1430919c8396317a50a54283612603df30e00b5839214262c4080dfdc51f721

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed12e317fd2f538d9853c3752b3254e3d840f974b13637bf32a39742c863f706
MD5 6fd47b0edb701e0bab7276f64a30da2c
BLAKE2b-256 834a71403e0512d3c64f54fbda5554ddb1cf0efb449098e385c74665527b49c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66603460a070ec0a0d43f5f56f86a4159b2b6755ac5f457f76d3f5bd2bc78f36
MD5 6846631571b82c338563e987ba9f5534
BLAKE2b-256 5006b11ce373d6a9ec8c6f0480adebec606d0d0ed490644893e8587459996910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ab0110637fdd263e0409114dbade9ba1f6d88310efc9771e78775d18f75ba07
MD5 b8ade2684e85f0771ed7de229b83dbcd
BLAKE2b-256 309f7ea962738d040607e3e9fd46ff03fe0a08da9c851b6f7c534ae4ec99ed4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0d447babfe90ca6c322b0d745f7cb48e8abf60670763c75120fe087ef273965
MD5 4af1c203bd056737feddef1a71ef0392
BLAKE2b-256 ceea4835db79f50e6135401f1d5d60d357c85d77643ad55c7a19c2ffa87aa11c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb2a72d9351518d00fbf94cc024260ca7e3df2907807b2f8ac269047dcce8dee
MD5 d35b4df3e3f7bd8d885ae305aa47b3dd
BLAKE2b-256 2325abe3b109660529cc48140049e90a68db1a925ea6dcbc41c87d669aa870a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7ce58eb69aadd652222af47da48666d5c697aa4e464bc377940a8b1520c7419e
MD5 3ac793e94600dc37864a774b0f445161
BLAKE2b-256 2fb7954c7b66960905537ae2f80e57349fdf11ebf0526f5e3a43652f7e986f76

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libibt-0.0.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 231.8 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 663711384448ca7cd3563db5342e1db48acec2df79a0afc6476f63d5d737e8c4
MD5 3f649a57b0c36dfe0ff6dc255e39fce8
BLAKE2b-256 8bd1fc8846d5db538b6902174eaef6371066e9a9338bcfff1af123a82f1b3c3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7078dce6e51cd60bdd0428c253811974d4d94b8f2a1f220bd374c47062961f7e
MD5 18ce096f1c8c01354b60998103a23ed6
BLAKE2b-256 4323c4baccbba6e5c2e0d85ba30ae672af5511cb54ebdbd9762c6cfd1c1e0985

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efc4e07807599f9936bc8f493c150a45864a6d61b6fc3ce6d0f9ede78784a323
MD5 530dafb9dccb38d56718d1a0b4ad38e0
BLAKE2b-256 9b1c6c0cbf1229deac7c4605bbaf55c76c1a6079b6031a5143fb7b9b93a653d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a241eb8d7d6c2c7a227c971e2504d2c1b0b54371f1847fb626b7fd1d2412d3f
MD5 786a06c64960003d0924dad9d9c4efa5
BLAKE2b-256 5f395b17da8c2abfbd12cb1d3027332983d5e46d9211cde8f14a3c0996be4fe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78593f25c13186062aa290306b9044d90aa2d7ffbed770c5cef6c864cdd8f992
MD5 71497812984e865b3124b47f96f381d1
BLAKE2b-256 339e06e2d09662036109ba5f1033019967611cd6916bc9b6ea55ed56bfd0fce4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09ae7101691c3a23face5bdb32d70c4492909f782248a7823b97a4eb9e6d0fc0
MD5 7864155f19a7d71c22e79699d5236b41
BLAKE2b-256 9b2c1baf2fc9e115ff73e968e50146dd96a81540391eb0aa17568c0b3a197389

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b3ee2de23a5f344fb0e0b50640d5afd70ee3fc2f77d824d70ffd03229e5cd7bf
MD5 ecaa334c3135b2043a8cdbffecb70cc6
BLAKE2b-256 e2fbdadcce4b23ccb64a43af14030de931f40f3d460c7626a27d180ada6077f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libibt-0.0.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 232.0 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8d424cf3641f291052853ac6b3f59241058346b64bfba8986e743a47879a3232
MD5 67bdeecbe860656ad17e86d2b7ac55d0
BLAKE2b-256 0c456804e4eff6528fc20bcd1b94877b8ea899be193ef652ce1fa8a6f0212d42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d2288cda38453c3b3cffa50a3be023cb6fa58d2959bc236f84293419f8cb13b
MD5 860c7baea781b6c156c2a13625b59479
BLAKE2b-256 4dcf923f6865481fe465519317dc3414ff33ea924217358a945a8added1c8345

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 078ae635d4e9862f7da68a2ad0afb013062f7a30950f9886948c34afb073e504
MD5 6d868dc7931ecc08dbfcec91c5b26700
BLAKE2b-256 ad25a828c7675ad79fc43a39bf2749d3462f525fb5070a3d4da22951f5b06f6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ecd5c86324ad4dccd060a044340e5d36011545b1debc9e3ba885382d644a854
MD5 f33f413b7c0d77ea8bc874579b839e72
BLAKE2b-256 278e9cb2587f3f2ee649c6c4cfccce748d4d1aa5eb9050fd32dfa4f194a18079

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0434c2f19b14259bb97b692b014082bf2437690f15bfaa24d0cfae36dca41481
MD5 0424fd805dbb75bef5187a3df8571795
BLAKE2b-256 e645bde3ec22227b02c8c5687c6a0453db391ae7a5e3d5e3d01f32a351079b8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e3d5d67ef8b5e18f643ea9e00643ce83c40997d6bc1ec158857482330ec1cf2
MD5 08ae700592ebdc68751ec98c78c70070
BLAKE2b-256 d3e7fec6e8d6a99a2168c418f508e32ab1a291c6a857237d1cd8e71421274558

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e5b0261dcc0fe0c4532bb9fe1a7177e49d218592903433be95028e4c2d5c6a73
MD5 000519d2b78b6d73a163f18afb1c2da6
BLAKE2b-256 5074721b1b59b7f3711d2bf39150e4817eb7e3a0715c89871d1cfe40aaf97732

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libibt-0.0.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 230.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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3fe55d93b32683cfecb6c5e132db2e760f06aba4ee58ad7db23d7a921ab7b313
MD5 6b3b8f5a8138552533d35f278619da58
BLAKE2b-256 27bd965e481ac0dce817d7fd4ba80b1ef86327a8480499869638df69c4a09f18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 453f37f9df60c3a6892e2967f131e6532709ae47aae151be65ffc581af3c2e81
MD5 aac95d4c431f682e3db3039e22f6d130
BLAKE2b-256 5f46197271602022e03ca3aac3e9348326a06e962bc0e872c4d97456bccc43b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a315ebd46123dc742e923048f7474b47bab4db42835ba6cec3ff47078a56723c
MD5 6f1c61b046e416503743bd5de455fa9e
BLAKE2b-256 4edd128d9c582f01c458bbaf50bf9cb1721bc0a3c3bb8a8687cadf2e5f8896b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 362213f206c6be62b1dc36cbaa72e2d8c2af4c31345c3c8d07aefb2abe82811b
MD5 a7a12aab093a35c7bd794697f962c9ea
BLAKE2b-256 dc019b8b8ae98c4cb9565993ae24bffb16ad6c2b34daf7c716301aa9d3ed2e1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 38485438ddacb8990035fa4e7d4014b71630d093a363794b2db9734d3740880a
MD5 1933117c5c2531b8d097f97c2bad0091
BLAKE2b-256 5d4ea147d37a47b298307910f9d64e6bcd3761e98b5d9d85812fc3ad7d38ea8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f01e08cb15c363887e30df76c29182945ac56b1c228399b771278472f1765ed0
MD5 664c4bed5db2423e1c7ad7b442efb61d
BLAKE2b-256 ac3c8b6619ca259400d730cd15910df1a86b7e5c965b3318783c902d2c9be211

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e211ba690bfeeb8bb4789b1474c9cc6eb26082367109b19abdb60266ce074ef9
MD5 6d6eb8bc709aeaf0c59b40f6edd5ad7b
BLAKE2b-256 5578f3e829971bf314f3e9a31a13a79c61661df083c7efa734fc2b6269f25191

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: libibt-0.0.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 231.4 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7d070297b6203c659ce575ad9314a20ed52700bb9bbf33afe75d927fa87e9f81
MD5 ce078549231cf24e2216dd40d2f296a1
BLAKE2b-256 28b54625a3e2e91996a84f6890e5b340c1b63b15a2487f6ba3460c1a9bd8376e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc6a6e907d14da33ebfe1f27283d5886ab202648ffb5038f7c8da9e9c52dfa4b
MD5 6290228a19177d486b03c59aec9da5d0
BLAKE2b-256 a973a94df3e5234678204c2e67edb04c411bf6de244463aedcdf2e2369ebcac5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 036bf9cb952cc2ec373a15c0820c79b1dc2da456535df4e472b5447efb3495f3
MD5 0c9f91d17a4996fc6b0a0e75581002ac
BLAKE2b-256 c663444ed48a1409126fb55e403e2cb5804e68fcd17bb32ecaba2c2b0e5e5779

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eee5f0dbab5880dcb78582f44844e7b031d675b75d1ffb37dfc0dc92a723957f
MD5 931c5878fb043b79fb166e685ea31178
BLAKE2b-256 bb6a0844bf6a1df43124742a30b64e23f5884b8880d539abdb2be30bf39bcc78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 194b87e01b3b9a0aaf08887f9c5d3fa704b2f25a7920cb5f04685441a89924d2
MD5 4e4324050c34254b01538d8d532a8b2f
BLAKE2b-256 cb9778cf627d03cdad65c929d9cbafeed88ad13c8940faa1824029e72b033620

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24b83a244a553d7fa163246695877944b8cb284d55c54c4414ee7c985d44528b
MD5 7746ce2867fc2d73dcb3c3a1075569cb
BLAKE2b-256 f80cbe4278e0452d36cb256c8ff7fcc151bb98d0df28166ac987151ba3ed7cbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for libibt-0.0.3-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2df9e56bdd1d014eae1f99d6e0194fabc627d34cbeb567fffa55b34e7a92e575
MD5 315dee8de65ca1c910503eb6052cc738
BLAKE2b-256 dcca3775e96969da9ef6b51dfb588ef75de1d3e86d54ee3891d1dbc270491963

See more details on using hashes here.

Provenance

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