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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

boon_deadlock-0.6.1-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.1.tar.gz.

File metadata

  • Download URL: boon_deadlock-0.6.1.tar.gz
  • Upload date:
  • Size: 464.6 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.1.tar.gz
Algorithm Hash digest
SHA256 9fc86ff8a77e59545b299bbd04a0acc231db4d37fbe00756a76418a16c8c8c15
MD5 7dde107e362e461cf72c2c630fe82d36
BLAKE2b-256 19e4d6ed785e5a7759b5fe948c95a072342a530b61ab4de7c4b28572fcd89631

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 df79a494a57deb9db1b472d45d6a7cb68b577f69eb7f10741066a31af0f2865a
MD5 9a68f30faa0ff0225d899f9c30093fcf
BLAKE2b-256 cfa225ba01c87399ea4d36faa157cc1e52ed5e3bb4ed2e780c086e292b176756

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50e4c50843ec2df459d189121c940e7af090fbe9e7fef9ccfb81ba043fbab756
MD5 e5dbabafc851a8f786179102c1013181
BLAKE2b-256 0a4df4d0dfef374e849a5fb6b91d0bdfed4589ab7f33ae48866fbc6eee685e56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8aa8db5bb3412b07586f048308129c3f6bcdc88df2452ce0b1087feaceb9c9e
MD5 576d7e54da614e3a88d5dcd0f753c13e
BLAKE2b-256 399ef3016ac5efdf0dfb8d88bf7cfc309dcfa74bfaa64afc6a18877e35bd293c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d1c21be50d5a7639e7e5c6f7314d97cb9a36d5399a90be9e73b6d07b9f2f9a5
MD5 2a58cc6b62f29cc9bb5af5a4d52ddc85
BLAKE2b-256 c183cf4558416aa3eb153f81fca3d533a98aed3b469010da64863fdc70c3b6aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 50657d0d548c5903598e9b64cb73f57253b132c8d8a350a19265a1c4d3cbccf6
MD5 5b5ef28c7e746768264a4cc080c1204f
BLAKE2b-256 e8cd5b957b5b935ceb98568ceb7faf62a36381425af4bdd70c807fc3e5822725

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b150863f211be5a3c476a4360788be5ded0708e6b4fe627ffd5c7c728ef86200
MD5 8aacb53eb438511f17be81ae2456e357
BLAKE2b-256 9ca5ca7c4f663697c27e29bb69791e8617a5b670bb3bf78cc54a0fbcde892f12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da404564f9095320ca2824d527d42e4989a201174f5466ae053c133f117c964a
MD5 17a02861a7f31997167e2e8c56633221
BLAKE2b-256 3ffd3a5266446ca586c855e11ac13ec1d27316b2f07ddcb6cc85251d9cdcbc35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc8b16190784be79d2700436f572c8135b175b8a10c0a3e6f017e32e7f936fb1
MD5 5ace9862388cc61aa3768e0f81bbc602
BLAKE2b-256 1427fd8d4815a9131e69f7c1be56eb69da8044a3c23d1026dc525625bb8023e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d65752b77dea10ebd75450fa83c6ccfaa68e3a70ef2e934c13c7e021dac6fa3
MD5 95a2b51339633d931da48983bfc954fb
BLAKE2b-256 0559fba2f999d9a62d0ef81f7fee2f712d3f2a203800d1ddc753ac02860860f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76230ae5a93c99aaef9b49cc90fe592c61f080f1d85898ff8008d5ffefad5b47
MD5 1c4dc023b60029822328604bd3cdfb8b
BLAKE2b-256 a7d8447e6aab4a83ee887e9bacf0cbc6c73a201970be0443a7d1779cb4dde16c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 41cd247b1d05ae84dff14068c58dca7f7c7d91ec0b43b9603f802c535e40a3fb
MD5 8b78289048b79f12613d5f98c3325e2d
BLAKE2b-256 90127561ec831f651a594d97c9da6287896ae95fcdeb7aa8ec7b7d01e7ce6353

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0db3e44e7d2da4cb094a7a64e1311ace9d92b286a2f42ebebecf259696807306
MD5 bf484bdf7c9228fa538b525b971d44e8
BLAKE2b-256 0585f04eee7594617015c9e7a8da66061de3d17b2114eec8fc5aa693178ec0ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a83b01bd89bc9e5d52a26242e920c9a6fa6168a2309f4d48561fb3db2aac072e
MD5 dd25f5c7e8ddf456d49d1e7badb319a7
BLAKE2b-256 219194b7b1d181a674d301f867284230373fb9fe6e456fa7afe55b3888c63565

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6523e4f68035e21d3002ddd0e2f7e078cd363317df84746673443de62c4dd31
MD5 7481d93e3ca730382d988526ef1bb8bd
BLAKE2b-256 f8409a68e884b8bb2b435a09c4bdd1f4f4c7d5e289905eb2d9b0b82928c62753

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26cd0106ffb7c2adf3f18df10ceadd94e773d96355e8281270d8895def22e689
MD5 7d7d6cdd644de5ed94f4bab674c020d6
BLAKE2b-256 4a97dc5ddef13f59027d295e60f77df029e0e80d8ca595a53fa36ca9df3a50f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 21b0a778c9b193b77c3aecdbc6742dc5d9e177803693541149424c3beaabb84a
MD5 e1aac958ed3fdbf9ade832b82d8782cd
BLAKE2b-256 b0f4d06335fc564436f59731a902a11436b4d578dbe4f41ac45b2f566cf31f42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5ff276ecfaec08ae593b501fb7f746ba6540279443eeddc02535b6ead04c959
MD5 d03092fc9a5acd55a2d8a26680996507
BLAKE2b-256 2006eca517848cce92cbaab33fd83c31a84c0c5aa04836622f8ec81184fb76ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5664f0bbe7dd4112722ba9113b27a979a8d981e218a83f98ac2bd2854ecd03dc
MD5 8061acf74fceecb3c75433ed0cccef63
BLAKE2b-256 f4c9b7510805f6670d7f67022d50b6da0b7d4ecd99a590df87f3a7a8debe360e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c57eace980559a8e60f3a2981805e13757b5b3ab947b69e811b88e8bff271d97
MD5 90ad4994c16d140ad0815f5dd6726a4c
BLAKE2b-256 1484dd25cd2fbb23e2d112887e4e51a575db9b524c09a22651cc83c11633cda9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de6591661009d178703b638b2ecdf1777c842cb4410a473d74f2745a58ede540
MD5 71ff5e7507fcf7b9d739f4dda6934649
BLAKE2b-256 e151b17681971097d927be690a035214d30d766006f00fe661310bef3cdd3c94

See more details on using hashes here.

Provenance

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

This release

0.6.1 This release

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