Skip to main content

Boon is a powerful Deadlock demo / replay file parser.

Project description

Boon

Discord Docs License: MIT

Python   PyPI PyPI Downloads Python 3.11+

Rust   crates.io crates.io Downloads

CLI   GitHub Release CLI 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+.

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

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

Documentation

Full documentation is available at boon.readthedocs.io.

License

MIT — see LICENSE for details.

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

boon_deadlock-0.2.0.tar.gz (390.8 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.2.0-cp314-cp314-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.14Windows x86-64

boon_deadlock-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

boon_deadlock-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

boon_deadlock-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

boon_deadlock-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

boon_deadlock-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

boon_deadlock-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

boon_deadlock-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

boon_deadlock-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

boon_deadlock-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

boon_deadlock-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

boon_deadlock-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

boon_deadlock-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

boon_deadlock-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

boon_deadlock-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

boon_deadlock-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

boon_deadlock-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for boon_deadlock-0.2.0.tar.gz
Algorithm Hash digest
SHA256 d8ce200e686c61f8b37c4e213e10b737b672f9040c2a87f890fe449b7cc67e39
MD5 2dd6a647c6d09f266ec8a7705e09f144
BLAKE2b-256 fc61ecdf0293dab6a207519bfb94fc3c53f0a769ed7eb61badac9f65cb795598

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 86a85c7ad438d175f39fa015e483ad8dc7f0b43d97a99cdcd345417c822ec4ef
MD5 0795a6c0b3c40389ad3de87f3f04c193
BLAKE2b-256 81cbd28fd5f4b6bb678acbe9df0869fe972115695733601b10bf96aafbf6b347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b1b04a4f443b8d5a1874a381acdd617ea988f8280f6c8abc829820ae4c028ce
MD5 c347799ce313ab39861746db5ddf166e
BLAKE2b-256 8f9dac14abda68db72cb8f40fd447d27744f4ba9152064858d37a53091cd18e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8306e1ed363515551a0c1ebf6eb737cb0ee4de60f771d60c37a7311750458b0c
MD5 4120becd6f9dc46272d7a71fd9df056d
BLAKE2b-256 84655820362b97ed8bac020cd9a3b2a86d876d81703ae50564008ba8fae3dde5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b3bc9fa25c65c64e6e7b95f0b719dffb5f03b7f72e010fdc235b5a324ab5834
MD5 291c8176d98183eb9c10515e3e01bca6
BLAKE2b-256 fbb10e474453853d1134bbe89bb7b45164288531ef8094a6a1ae1f93fa0bd27f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b63489f24337ff579a6b67da059b62642a9053b3a77b2beecdca27af4562351
MD5 73471012818d823f2c1d9b53f03e5c12
BLAKE2b-256 73455aeb97546d8a277f98cd79465fbd0fdab3ea1ae9dcc7e46951725578f1b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8071a630b4125958e7d8cf8befd69ea3a6817caa38718d7c5599cda4ba37591b
MD5 188b74bc70146bfd0591781f9039148a
BLAKE2b-256 13d80b9ecabc7e865cec09f7e36bd9e973931d58f5887502f9c82d250ace04a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14bbe4985b9e3dea34385d6981339eb411651ddf4c255f621a94ce745b777a41
MD5 5e947b673a6fa66d602f9c64f29b08c0
BLAKE2b-256 1ed7079e7638822a8c32db8266e0506ed8930a5682b6a027323ebcdbf7d57cb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4777f0077c88ffdf403ae85e4ff2c41ef8a21534ce2632b28d1ec9bb60c5c0d7
MD5 8571608c93af7162e5df6ba0dd57fd4f
BLAKE2b-256 207285c144bb0522e8036540ec38ae2526882a08cbfe372bb5fd2b239c1872d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 368c4894d8ee0eacccd4815e874abe8fd365c843a683b2e338e59643ffe8e17e
MD5 77d74d4da88c1b083778ffb5b131c885
BLAKE2b-256 d8b6b77d2447997c203ee51f90523df1da2e38dc4c7ec5ced1ce67ba5656e1b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 28c4d96b292d7170e9830dacc2489e587994b7d0a129ebca0bf6d2b8cc084db7
MD5 20e7d49de99fc728a4adc94b64a9d940
BLAKE2b-256 53693640d18ef61c8c82ea806654d32b75b78819137d0aec07fd0ff944f68dce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 954659f316e9e281d29897439c77769bbc5940d7327afd58c0dfe12381dd0742
MD5 860571c503c07a8fd81010c9112f3ed0
BLAKE2b-256 594ff90b07308e62ae58593d17828c5667c227f1e6ced35642d3ac4d4fe15e67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2693cfff797e7725eef61f83a8162a7bf935667e3448f88e8f1f07d088b37f26
MD5 6d037a4905815ff35ce06148a920edaf
BLAKE2b-256 ed0ff0e84a4e5aabfd5b37d5f2eb8419abc11cb5de367ed3463e23dada8df8ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 508a4a708562b6de25e5e83e465343ae1ec9b5645ee2ba7070d6dc23a6a07dee
MD5 53c233b8b2b1732549cae1c8d6cbe78d
BLAKE2b-256 4a767cf000d7e3f9c43116cdd56e477209f5aa1ef69bdc3da8babd0d6df46018

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d980bc3ddf9bd5417a13692d00b0fc350e67b2a3ac2e9adb6dbed6874a221f30
MD5 748548245365f6cd55fd902c088160a5
BLAKE2b-256 e46564d39e7a961ba7bddb11d0b69a6d2fa6f629a42dccecd76e5d7827dbcb84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69f8b57a81c49acdfcd93b71ec67e210858201887c171e616f9e9a499e3b39ce
MD5 40f726aa1a686583e711df116180890e
BLAKE2b-256 8a4cc42125a661e7ad6c052f7924823a61c82bc12947e63eae9f802ef63cfc78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 76eae8d7274d88e698e3ee24cab791649ac0b1d9eab849cb462a88ddb00f320c
MD5 52a321bf6985177a73d202244b6f7f2a
BLAKE2b-256 c5d13c104cc02892685a63a6ebf044229df30b0af9fda44a5b508c868ff5149a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a45c0643fad627520abdd6d828255c9c4f067800462a256350843670e1ba40c
MD5 18e979d2c643abd185ef6b4696219bb7
BLAKE2b-256 dacbe203cadcea6d9c705a66b84c02346ba20b4a53ba9bd4960b8e5d5374d1c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3be2cd2b9c80731b5c0a0c19ad0300498990b51b794fc40c3dc456efeeb50c4d
MD5 82a399c3f67d8b349a051b35d694aa91
BLAKE2b-256 05ed7c62a389133f1ba578648fc93fc1ed1e98c65d223853fd7d9b6209b2a3a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71fc5f1c749c835e4acbddb5b9a2084a333e907a29549095edb0ca21a376ebb4
MD5 72246f9da54906457a7e74c7080b23b4
BLAKE2b-256 74987df5dea19dd9951dac46eab74f6e64711328d61eded32fd5c0fa6d8b78d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b0d178c1392ad1785e8035781020204aec4bf25eeeae2ea3dd5286e8917b449
MD5 69d2a6b7b838d06c8ad70ad7454b039a
BLAKE2b-256 3111d06d28fecfcb2957b172522efa72ee814c5fbd27f71e028764bd8d45a1e8

See more details on using hashes here.

Provenance

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

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