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

Uploaded CPython 3.14Windows x86-64

boon_deadlock-0.5.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.5.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.5.0-cp314-cp314-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

boon_deadlock-0.5.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.5.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.5.0-cp313-cp313-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

boon_deadlock-0.5.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.5.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.5.0-cp312-cp312-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

boon_deadlock-0.5.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.5.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.5.0-cp311-cp311-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

boon_deadlock-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: boon_deadlock-0.5.0.tar.gz
  • Upload date:
  • Size: 436.2 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.5.0.tar.gz
Algorithm Hash digest
SHA256 4f154c8e7268f4c286d7a68ec76063ac628c068264fd1ca9af3a6e0b253c95d4
MD5 f0718c9a552774fbdd3607e5894b4a79
BLAKE2b-256 12f1c036106c766cc85b5719dbe34913aa7eb25f183932c255937e9802dc4ad2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3cfb43d9cbc0a5fa3eac514237d80f8e399ae4d3af9b8724a37c51413ca7a520
MD5 7b8ebf610d08dd61ff906973ef11c58d
BLAKE2b-256 e49937f2bfb8d7827886b903448eee369aabb92c4b37de1f4defec9959f278a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1037b5b5a1adacc6d46d91302a0d79c0eaef95551cef03cb19f1495648a37df9
MD5 617390985bf2d476627bd011cd8cedf2
BLAKE2b-256 6f1ed45750acfc445807dae6b4a852b0d793f27b76d89b171ca21a1b945f9cc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ab83485c35411ecd481f8ea6bcc1b378c80a7aa6c1cc9fe77cb3b815fdf2be4
MD5 1fcd64428bed200ef05fa5273d17f61f
BLAKE2b-256 4fe2ebc55237485e0fd7bbc57d1cdb4f6839ff334b31c843e8e82e4841dc2548

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4edab92384fa3c87a4d73768e6ad25b287f6e11c443b891939d812ecdb707e0d
MD5 81863b70978d59dc86c7d45844211bf3
BLAKE2b-256 c2c50949a1d8849c7cf02d43ee7d896f7f3256b0dde446611a6a0cbd92126765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b16a15887e9938783d86539cf4c28793af2ef4fe10ac80bcc6a0dcec71e6b96
MD5 6a877a410ddbcddc965347a12dff5eb8
BLAKE2b-256 10d733ad5f501c1c2473b83e7a61bc4c0ed820873dd081a94404660ab96f33a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0c97d7aa27145849c25fbe87ebebd911ef0cbeb417e67a72c41509d7e86d37da
MD5 0ab095bd21e1434681b4c9357a2e970b
BLAKE2b-256 26aa4c8f61fb2e063e76586675fa3524993aa1ec4a6e20c4d97fc74045e66bb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 230faaa5033201a23a7d63884a16f68dff8f5709b7d75b7277b5b7a703e670f5
MD5 7ee993ad297867be4fdbb1fcc7e761c8
BLAKE2b-256 7801ff54fb19d32ec3bc54471c98c2361969c1a619a52926d4040f3e7679769b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92304995118fb1b6428eb4ad79024b938dc320639fd8bdee01e5de9d96a8074d
MD5 6fa0e2ebaf3bbce12919e53a0a4a8d56
BLAKE2b-256 9eb42de13625d9ee72d899a0e50e3f59e5723182373a798412821d2ceaba362f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ca213355ddca3d5030efcbd7f742a0b7447c7ce34bfd892276170a0ed751ee6
MD5 7ac24ee4ff2aca304ec5967c0750cace
BLAKE2b-256 dfa3d5e1285488e7d0f35ca4508f1f61f29b99e29e251afd892c26d7509a8493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f2b97255a99df3a0c10f92c3516e13c38126e1c281b1f20c394a988cbbbf484
MD5 b19e48548e87921b3e558d7e763f78fc
BLAKE2b-256 ea1b2a049a6b899e39c0a4077a6c07b6952f1dd062ef348bcd3dd6f0609e64d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 85e83fe8e176fea4c335e79d22fc8433303895f038d0d83e157dfbea46bbe1a5
MD5 7b4d877c222ad3617e372b0f5d417bc1
BLAKE2b-256 efbf5b2290cff7758ad83653ce29d9e6094527714db3a74072d59a0be6df0776

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2514ad9ec18687a77689f20f0bba874f277e3df3c9ac1be43c42e781418e5cf4
MD5 f6bceb4927103df6baa128337f2c0f17
BLAKE2b-256 1fd7b571e091beb47104002d739cb333420da03bb22af14d0da5abb47c064a44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f249bc77aed6476be8bbbd96d7d8c7f2709d52df3e65d9afe5c7b970b155275
MD5 f41673c55e8b4d43fa7023c3202149cc
BLAKE2b-256 6bee14d10d43e0d93ead9fc6a12f2c4430c9d3d3ef6f0d956db33e6fb9337a6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9a87b25c9d15c58dc565d15c8063152b0c864fde3f6bee5a4bbefb1ac86758f
MD5 13914e20166285e683cab0c67c4f5e59
BLAKE2b-256 07d9c6015fbf100d6103addc5bcf469a6dcb3c23404367bc83f920eb09db0b48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 768b68bc909a185171f71e15bc7bf3953fb99b0a95bc11574f94bd643e91ac9a
MD5 c7aa0f31b384f558f535a976d546e525
BLAKE2b-256 3155e6f306f187b1d28ebfce54da6a986cfb6488164018bd3998e17f0d31a61f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 332e7873de137bafa35c197376f7090c5c2c65ab292ac3aaf4b263b733437f25
MD5 9ab53f39034811908caed6a615b68b2e
BLAKE2b-256 829103306ed3bf805d1735ca89d99e951a206bdb1675ee3a33ebb78b8362b801

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6aab7eb8d12a87cc339082422b6680ec827e7a5caeee5fc54082ca6d0f0e0ee9
MD5 b692b2ed8bb4c3f5d792f52ab7c33ca1
BLAKE2b-256 4d03ec27f926acf1e1a662c14872c41c398ebe6893eb051a36a7c4cf56956aa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84f8c11081077edbba4171aac8fe05f807cca1e175deff1fc4587c68a5f381b6
MD5 fc78b9cb4a75b5ddfe74674f1d18b6a2
BLAKE2b-256 4bc635d04a13c6c96c5e8d2eb551ca52eaa27f76046fd253207c0274d231cad5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 946c5d3fd9a0287b65349b61eb2663aac30e2d968d12f5a7ed781fd50bb3ae27
MD5 68254fa733386d99610b02c8ff6f0f66
BLAKE2b-256 75f8a6b2d1ee5b6c6fecf86ebd14004f11bfd55c3b3e6f286b8676798bdc2398

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ee5f9f96c91138a79b3fa2c5f43e76a79b39ef65ddd11366d4ced7bfdd7f475
MD5 55fd5714dd02211333837febd6ee8c94
BLAKE2b-256 d368c5fe9f9905eb5c6b6b8e6c727a15ab55f95da48c349def8a6657e2f5c143

See more details on using hashes here.

Provenance

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