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.2.tar.gz (466.3 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.2-cp314-cp314-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.14Windows x86-64

boon_deadlock-0.6.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

boon_deadlock-0.6.2-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.2-cp313-cp313-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.13Windows x86-64

boon_deadlock-0.6.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

boon_deadlock-0.6.2-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.2-cp312-cp312-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.12Windows x86-64

boon_deadlock-0.6.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

boon_deadlock-0.6.2-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.2-cp311-cp311-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.11Windows x86-64

boon_deadlock-0.6.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

boon_deadlock-0.6.2-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.2.tar.gz.

File metadata

  • Download URL: boon_deadlock-0.6.2.tar.gz
  • Upload date:
  • Size: 466.3 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.2.tar.gz
Algorithm Hash digest
SHA256 a937328d7d79f29f3b74ccaca5ae360134bcf1904e7cc308dae8dd1ec600f9b2
MD5 f70cc96148458fceabc78ecf9f467ee4
BLAKE2b-256 c5ef5f8ee39a525675e0d4416e56f7b203f4e40eb2b416871d8a1568b0b00b0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2.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.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bdab6e6c28bf15cfba89a54e4ecbdedbf8a75a9cdc29f27328828e283f55d9d9
MD5 3b4c702e76e2d09cf1acf9e2ad8dcb4f
BLAKE2b-256 852dc74d8916aa450ca846d81de7c0cfed929fc0125956619073fa8660e85e69

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5de47051f0a0bba533bfa5a88f181477a12b6a0b2ac68731655263f9738960e7
MD5 46d292f2ccd2f621a1c7abd2bbe86d2d
BLAKE2b-256 c12bbf87e05d9409fc108a8b208a89ca1999ba5ec1575f4d46506519e2ee952f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be1508aa0cf09741700c521d4b5f5a5ae683033eea20d40414e6b2143b034a28
MD5 d53b195ef2d5418f657d1bcf2712c6f5
BLAKE2b-256 da7ca627a2764d048a7c464b20f2e1621d194a0e506daa8612fa411b97e68f74

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d4a70c7ca4650ba728d5d691c3806956417756bc089ecbcd70a1f111d17c572
MD5 ebc8937d8d4d387d4c5eac60e5bc3165
BLAKE2b-256 4d27b625435e8e00a7e3ed2d66537e4fdcf355ef688f09383274c24db25c70b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 35d374e4e33558fd4feab5ea59443755d07c0080f13c0fd2677ac40e578aa097
MD5 13eff085b62c01441b85ada931c236bc
BLAKE2b-256 3bbc1237c38d6f2e9c7e47af82b6a18b8012eb27b67220780ad687bf72795614

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d5b1df4544f3fceb4f20258fb660f35f390299d8c0fc34229852fbc666124e62
MD5 f941a36127b4e7292babfc6c9d6d45e0
BLAKE2b-256 de117911b3645e8e22adaaa057a5e49ea57372f072f90cc4073548f632134f7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6f45cb1038046142293dd36a1ea306b17892add253168aebd327cecbee9e394
MD5 8a72e803a235478ab58ee9040c2c198a
BLAKE2b-256 85e923a81a00368215fea35475fefc6de03bdbfd0be0f1cfc7dd6f8dca20d935

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 149cab2c48ef15271f3eb66a0db861fb5db1ad941bbed4507b31dbca23e80104
MD5 1dd0db17260478b2f74258ce6dfc9d78
BLAKE2b-256 1c6a9fb25699df0d612629182203aa4620d318412d18dcaa22e9b9fe3049e745

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f6a024441cf36234f6310eaa1bc31c8b2bd83f4ced6fb44a7190089324c391f
MD5 58a47e0562f65916c4ebfe5dfc6339be
BLAKE2b-256 6ca8b4f4c18ab40a616c44f30dcdf89d5db02536ed4dc33682880511d0095373

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb1ecc644dc85929542ea935c0eb35efe0f162953c2077451ec5f206046afca2
MD5 672faf1bce845c14aae1137d09102375
BLAKE2b-256 71d1769bdb8e476c6f51555d121a7d0756897a9100cf61c164073fb30665815e

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 026329e8ef9c3092b7c251ef8382906b68c88cc1906af40c69d63da1f92f7675
MD5 155e43739b7f133ba9797ce9d52ad938
BLAKE2b-256 3054d8a826bd528b33a0023a9d6bad31b81406ca8d171796baf60b598d1ca036

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1aff2926a1ba28d4569e9c0ff9b178d04090cc5795dc04a8e44db1a677774bf
MD5 7d98706092bf84ac59e10ef00d4de1d3
BLAKE2b-256 8b8178a1fd469aa7a550bcb8b64fbcadfd377dedf18048c6b8744889efcd57fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3eba2c730be944b2de3ab600027d52f7040c20f79eb2cdca74aa8928dd1c0c68
MD5 d900044e9dc4be596fb9febb734a7457
BLAKE2b-256 978e38385290c888b82f8b42b531d3ff973e46f172093f96630bc802628b00a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a3ad717b9d329a326b14a8771a10663e665c5f847b0ac5a16538f64a39484fc
MD5 9004ed7ab748c120b72957f25100137f
BLAKE2b-256 75793c45ea2e81ffbf755074891d0f11c5c1bd2c051f6161c2a9712082e92d7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f986707bbd0bf92866b6e2eb6ae124175eb3b6ad1ae60623548c5956e4b9708
MD5 3175773956b55dbba53507f59887cc0c
BLAKE2b-256 1a7635e34226f6a0b456aa6cd8254a482065eea97b17d6e05d38bd16cd84ed96

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c13019175f242d0c69d8c03de8976c0d60eee55762d07068b8881f7937b4b18d
MD5 2badff3c91991e01ef7a7bd45db2570a
BLAKE2b-256 b3fc58dd50016a300702719ead0017eb36458ba0bae07104f985c0d70790f082

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca3d0845b62e257d42d845a376213919a5916cccc69f79cddb81fb1509145496
MD5 4b1994e11817685068716b4b89063a71
BLAKE2b-256 de55cf9002a0a8dd1d1827bd61a9c377ae5665b8a80cc90dfc33b4f98ead5c06

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f654c92f668dadef9c5da95405964e2ed8112a4a8a24d60ab5bd106b17fb7da
MD5 da9d16530ef3c45521c915003588ea9c
BLAKE2b-256 79e6ad6d44d9144ab2fef840238cc934b006362ec411fad599bfa13884f4dcf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bccfe833cb6a3219816eb1f771be9d992cd5b5666c5ef604847fe5b9660b652b
MD5 de995af048971112ac56c15f49d5bd7f
BLAKE2b-256 ed532c7f3ed543a77c34a169db242cf82f6f81c74c7b652cde1a7fb03c905ca7

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d287aed0fa295930dff735da5eb7ee8e850ecdc57ad4696812059391a3264eff
MD5 3f9b26352189308cad3ec6bb69fc9862
BLAKE2b-256 9513b019ae659995eff844fb83fe559e940de343e3230dbe7d1c5e341f07d619

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.6.2-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

This release

0.6.2 This release

21 files

0.6.1

21 files

0.6.0

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