Skip to main content

Boon

Discord Docs License: MIT

Python   PyPI PyPI Downloads Python 3.11+

Rust   crates.io crates.io Downloads

Boon is a fast Deadlock demo / replay parser written in Rust with native Python bindings. It returns Polars DataFrames for easy analysis.

Installation

We recommend using uv:

uv add boon-deadlock

You can also use pip:

pip install boon-deadlock

Requires Python 3.11–3.14.

Quick Start

from boon import Demo

demo = Demo("match.dem")

# Match metadata
print(demo.match_id)         # 28309863
print(demo.map_name)         # "dl_midtown"
print(demo.total_ticks)      # 54000
print(demo.total_clock_time) # "30:00"
print(demo.winning_team_num) # 2

# Name lookups (module-level — no demo required)
from boon import hero_names, team_names, ability_names, modifier_names

print(hero_names())      # {0: "Base", 1: "Infernus", ...}
print(team_names())      # {1: "Spectator", 2: "Hidden King", 3: "Archmother"}
print(ability_names())   # {46922526: "inherent_base", ...}
print(modifier_names())  # {2059539911: "timer", ...}

# Player info
print(demo.players)
# shape: (12, 5)
# ┌─────────────┬──────────────┬─────────┬──────────┬────────────┐
# │ player_name ┆ steam_id     ┆ hero_id ┆ team_num ┆ start_lane │
# ...

# Datasets (Polars DataFrames — all lazy-loaded on first access)
player_ticks     = demo.player_ticks      # per-player state every tick
world_ticks      = demo.world_ticks       # world state every tick
kills            = demo.kills             # kill events
damage           = demo.damage            # damage events
item_purchases   = demo.item_purchases    # item shop transactions
ability_upgrades = demo.ability_upgrades  # skill point spending
abilities        = demo.abilities         # ability usage events
flex_slots       = demo.flex_slots        # flex slot unlocks
chat             = demo.chat              # chat messages
objectives       = demo.objectives        # objective health per tick
mid_boss         = demo.mid_boss          # mid boss lifecycle events
troopers         = demo.troopers          # lane trooper state per tick
neutrals         = demo.neutrals          # neutral creep state changes
stat_modifier_events = demo.stat_modifier_events  # permanent stat bonus change events
active_modifiers = demo.active_modifiers  # buff/debuff modifier events
urn              = demo.urn               # urn lifecycle and delivery events

CLI

Installing the package also puts a boon command on your PATH for inspecting a demo straight from the terminal — no code required:

boon info match.dem                    # match metadata
boon players match.dem                 # roster, with hero names resolved
boon show match.dem kills --limit 20   # any dataset as a table (or --json)
boon summary match.dem                 # post-match summary
boon stats match.dem -m kill-participation

Run boon --help for the full list. See the CLI docs for details.

Features

  • Parse Deadlock .dem demo files at native speed via Rust
  • 17 built-in datasets covering players, combat, economy, objectives, and map state
  • Access to match metadata, player info, entity state, game events, and post-match summaries
  • All data returned as Polars DataFrames
  • Bundled boon command-line tool for quick demo inspection

Documentation

Full documentation is available at boon.readthedocs.io.

License

MIT — see LICENSE for details.

Download files

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

Source Distribution

boon_deadlock-0.6.0.tar.gz (463.7 kB view details)

Uploaded Source

Built Distributions

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

boon_deadlock-0.6.0-cp314-cp314-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.14Windows x86-64

boon_deadlock-0.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

boon_deadlock-0.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

boon_deadlock-0.6.0-cp314-cp314-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

boon_deadlock-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

boon_deadlock-0.6.0-cp313-cp313-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.13Windows x86-64

boon_deadlock-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

boon_deadlock-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

boon_deadlock-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

boon_deadlock-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

boon_deadlock-0.6.0-cp312-cp312-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.12Windows x86-64

boon_deadlock-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

boon_deadlock-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

boon_deadlock-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

boon_deadlock-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

boon_deadlock-0.6.0-cp311-cp311-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.11Windows x86-64

boon_deadlock-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

boon_deadlock-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

boon_deadlock-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

boon_deadlock-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file boon_deadlock-0.6.0.tar.gz.

File metadata

  • Download URL: boon_deadlock-0.6.0.tar.gz
  • Upload date:
  • Size: 463.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for boon_deadlock-0.6.0.tar.gz
Algorithm Hash digest
SHA256 cfb151f3587597758b8f26b0003e8be9a9938e84499952c1f70fd66c11535f15
MD5 e3c4d996945bef411094254f1e9493fe
BLAKE2b-256 9a9ae3de27c81a5814a0d234dfe11e384e0ece56e8a46b916db722fc1599d9bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0.tar.gz:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 53f8652d789b2ba3bc0a91c3ab5752d7f684936b9f57571379f996567176b46e
MD5 f99043b4674920c251a69dcd3c3b15a7
BLAKE2b-256 941f711f7a6de47761791c868e69e28413c50dcf39a3fcc4002c2fee01e46f21

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp314-cp314-win_amd64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49cb5b5c7d2da670d5dc5a9e3f0122c7982e9050ae41c18b407cee2e5d5c8e3e
MD5 d9d1bea16a11605f0d1bc85da1209dce
BLAKE2b-256 9495fddeb6b04f9cca2698a65967a8b9429f4510281d21598f6df2ccc71537f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef46cba53d85e7f444c7531107b6be03d5410d34b59dcef8c822fcf57f673a25
MD5 61fffa99cd9931251a30d46163b1cd7f
BLAKE2b-256 bbedc1d506e72c0a483a27a8fcd9d18547f5017e61c31fb869703f8acaaa22c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05025b3e6b7d3e6dc8d9a4969966eb07fabbf22905c0c63f8a0a7468787bb03c
MD5 f4480e174d7034f4b71276cebda768dc
BLAKE2b-256 97f8c5d6d26aaf308c14af0253e3fb54b8bc963f7666b5aa1b22a1bf4b91ff28

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca12298d5f37334ce86f16cd5f011a1c108243d70d81156b53c500a3ca51630c
MD5 30a0103a56cfd37c8ed4642ee8d3c955
BLAKE2b-256 de9bd6205cfc0127a2274f9642e53e033b3e157ca9c327ca3a8e10ff0620ec2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 265d59575a14341fe6aace6dcd60783b537390e3056d6e1903569797e7d84065
MD5 4197a6d7191eaea639150f06c130685c
BLAKE2b-256 a927616f5e92372acfd3fac25d77a3018217056f5f3346ba644ccd05bbdce850

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp313-cp313-win_amd64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4755c07345c480867007f62bca55940426f24b5577f98e1c4e524c15c161cf4c
MD5 bd17899017ce7443e68457f31d8f9e4e
BLAKE2b-256 84f68d18997fa90d7d2e9aa7f1288ddac386d0e47d5771794f1e1639be17294c

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf4fdf1bbbe28c093cc8ce9ae4fc08ba861739fe540f085d6d0dcd595cb2f00d
MD5 40b01f7233171c68ff221495b908b729
BLAKE2b-256 c0e6915cfc293e07e84f47124d399f0c2032113bbb880b57932556ef79c06200

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa4896c50ec1bafdc7b3be2e4c4a356475fe8419d06507f95d9c3577cca854fc
MD5 8842402ff1e7de022dfd8f364804d667
BLAKE2b-256 897f8ea879e13019b160f994866cc55b29fc032de5bdc2dbb64bd1df22d37d0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c227888826f667752fce841a349949f0d3054eac1821231c886e4732db6da7f1
MD5 2751e8071f29579af9035c338d57c175
BLAKE2b-256 fa470e44919258fafc9ab18c725f65e066df0db8bc31e9a6cbc04c14c6f40b32

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0d793eed36fdf17b588bb1a4297225b1284eb519c30cd1a064007d2bfe915469
MD5 61a1ea611bcb89fb3148034f251597f0
BLAKE2b-256 b9a42fd25505136bf4a44f8162c9756bf28318713a0e24a4a666931fcc7ccb1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp312-cp312-win_amd64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 055c3099069389f733e0c61355805568c5c670a9a987d66e0fdb5c35d60e0cd0
MD5 b9a806e6753b1c3cee1f09a3b3d7dda7
BLAKE2b-256 64e54818fb00d2802e9541edeae30a925c853b3b9cfdbd984c90c349912ea182

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72698b8cc4e321f01b74edbd007d0dbc97f83539fc4796ce62f47b87431756e1
MD5 7c7f2263833f73facbd4f79ed713b45d
BLAKE2b-256 8f78d4c2c0617176431292b8bb97ea7746d67c442ed16e3ec64b602685552d3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a180a69df8060dfbe1ec34ebd7a651eac7ff9fd760292a4d14ee6198456f71d
MD5 5eb27f313c3d15f90c350413e6033d61
BLAKE2b-256 5c287caa74ebc486cee0c578c54126575fa23f68d296d53c483b1230828a6ae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4343b8d2a56bf800d42eda0f3952ac77cc9f33616e07322191dd601e8e0c7c57
MD5 23e5c0ac1b6244b02ad384099123b714
BLAKE2b-256 da2252c7650f83566dfe4e19f372edf445d5a1270234803e0917234a9f6747b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e8e838aad7def0bb9dd1d62793bc2c3e38480b6fcd34baa09cb35732e50b23c4
MD5 5a08b05230dfdff52ad798584b7df845
BLAKE2b-256 46800bb79898f61dbb009dc7f29dd5435f795716d19bae62c4fd213e7ff011c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp311-cp311-win_amd64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74d06fa87d1a8ce83eb325d892a59a8d68c837883183d57c07cf17e1b2be9ed5
MD5 20197ef4841ca1e0b4b4217337a8b3fa
BLAKE2b-256 9b1367a0ce4faa4b8b4f5870f742bb51b5977b3f6b5d8c5204b39f9f220ad041

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4120842fa70a33ac1b3f8010599d48532ba7241c1e825a906ea9dbbbd027ff3
MD5 c9279b397fa00d768625a0a9e37b6ee0
BLAKE2b-256 3d68183d2bf3f8aff75f4e775fa9b74657ca78724e61c7c70b4909ea93f01308

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68c5a539b4e0a871e6e65dbc1dd61345f5e3fd7494c0aceaba1fee24b9296cfd
MD5 2c64573f773fecc275a7896139d72b88
BLAKE2b-256 e0552513fde8a1ac77806e1f932f47003350f4ecca7582a5c952bc77c72fb3e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

File details

Details for the file boon_deadlock-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9354bb544ba9352aa67f9605480adafa9460799f22fd496aece6226155d7e6c
MD5 3d2af2a2fb9c20062bf03ee2ab30541c
BLAKE2b-256 47942a508c5285bc5bbadef09c031c79506b5b03d8624c0a70b9efd07ebef854

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release-python.yml on pnxenopoulos/boon

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

Release history Release notifications | RSS feed

0.7.0

21 files

0.6.2

21 files

0.6.1

21 files

This release

0.6.0 This release

21 files

0.5.0

21 files

0.4.0

21 files

0.3.0

21 files

0.2.0

21 files

0.1.0

21 files

Supported by

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