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

Uploaded CPython 3.14Windows x86-64

boon_deadlock-0.4.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.4.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.4.0-cp314-cp314-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

boon_deadlock-0.4.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.4.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.4.0-cp313-cp313-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

boon_deadlock-0.4.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.4.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.4.0-cp312-cp312-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

boon_deadlock-0.4.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.4.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.4.0-cp311-cp311-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

boon_deadlock-0.4.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.4.0.tar.gz.

File metadata

  • Download URL: boon_deadlock-0.4.0.tar.gz
  • Upload date:
  • Size: 427.7 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.4.0.tar.gz
Algorithm Hash digest
SHA256 1905e63b1d8eb1a1e402f812a56c5db245061bc97753c5f7999327ac03a81e0e
MD5 5fab5a26999d6c1e4c3869ab3515b029
BLAKE2b-256 088cb9af0cc893a13634454fe93bed9f3225f2f47959952ab8b8b125ce513014

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 24eba1b039e8b32527d5d3abe644600a13bbbc4707d351497c238d66e9633ef5
MD5 811de755c261573b2c6381ab0059a126
BLAKE2b-256 2660f76ec64a8b7e869887765169cc835112bf04383a735d32b90aa15f2a9e67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04c33186d61853e0bd75cc5473517e2f129c154cc54860aab4082a2c420d5bd5
MD5 aa815d71f099c0c847c1cfc81ecbe0ff
BLAKE2b-256 f8836efd6bd60c54eae84041f0233b10612747ce9ec97538078ecc2cff978336

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34bcf7a15084aa81635c5c69ce7dfee1ae43ee152bbde60299b40a4f18bd9215
MD5 2b35469e25d74bc583443084033d75f9
BLAKE2b-256 3b1d676f86c169868d008ca486f611cca9ace7a598e40f8de833fe6d431d7414

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 666f764ecb2fff80360cdd04a4487c4abe4d23b3257960743f4e3ae2e6969b02
MD5 bf30caea23ffa32a063333df0772e465
BLAKE2b-256 d781ed6fe0f5b5d0d11bad3b273d944741acaef307e2fffccdce3980d28f5ebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 19e39ee9d59c6b12dc93948148c4cbceb44d031bd2c6558fb0901875a247a6d1
MD5 93ae2bfb6da0202b56a8120d63ddbd56
BLAKE2b-256 031b02f23d69c5ffbe7253bd9235a13a90e22f9ae82b4faef52d11c43119ae48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a260cd9801c902344e73d83e2c30d9351be2e7c649d017885d9a63636842881f
MD5 99f29117f752cf764b74efe066e37543
BLAKE2b-256 0d833793aaf74ddd2ab0069e47b9e7da6fdbb36360a850f36d9574981e8bc8cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0282d46287e7376a5ffaaaa2c32a70b8c936b3592ccea2400aabb79c03f53ae
MD5 dc5bcf1fa979e86725764ed4f9aed095
BLAKE2b-256 33e6814e501ee5a439f7fab010adb8d0846d8c55e907e0d5c0b8cae08ab9fa1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65669f9803a5418934ffb0cc976538a586088aad8c0e3c4bde138d177b1d5d06
MD5 11e40cafabfe50ffbc2d51d8e337f813
BLAKE2b-256 df61b1589ad047a1ad5e2da54c536b11b2613a45be31328c74d61fe08ebdfa21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cc743fd823e63c6c394f35bea701b41feb9459eda616705656c86d320443213
MD5 9d1584df21ea955e7ddc4da2074fb1d9
BLAKE2b-256 368ff29953109718815ce54fba5e5434807c218a01870a6c062dd19a0e4472f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33e24f8f2908ca0cf723ec76de62fffa418a770beac8f121dfe91397991b57c2
MD5 2c8623581d31a0f8848af139d0633c3e
BLAKE2b-256 2739a9aa9e795f1c74156b973e69bc825b4745e0dda8d69978c18673d0e6baad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 990f5926f83165552e287468772b67bbbfb9d2b02a6828ce85a9bedc88c2ee7a
MD5 cd330e52ac087aa82512242e4a61e924
BLAKE2b-256 a4d0dc09060308759ef7e3a23714e7123c8d15b615d3ea0c0594e479327f284e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce408fa3ffc74b20fddef95959cb022d81c360ca53fd6ff630db321fb8c50f96
MD5 d5437e793ae9f59890ef7cd5b26a60c0
BLAKE2b-256 ef84cf112ce8bcbfc49ca3f4d48f29ac360478e62ec44783669a6cf1a011f2f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c0dea8a665c94ac7c9066f5bb7ffee0ea011901645a91723c0a256846a7e699
MD5 bb0b80ffb8c2f97b65c5accce5fc3ddd
BLAKE2b-256 ff394e9555664a7e7c0fe72b4f93dcf3eddace3e0694b9ea66eb4e82f8aa9a4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34ee316ab6c2e12d35ef3f973dc31f33b91b9dfb44d318dd8c5fb1fb58bce749
MD5 29074e85ccfd8056c2cec8e8b1214ade
BLAKE2b-256 191a923e79224b63cffb481313651fd3d3310a49c758631fe2f39dbb641d14a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 beae35b98dcf2cde43ed8f653e4d6a4870be446ec8bf7e4b3c179ea9682e1e4f
MD5 d48f164fb7f3c0dcaa800047a009605b
BLAKE2b-256 4d8edbf84721bd6777093ea368fbe8b44b3c71283fc00b9dee524978a70ec3f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 04b12e67c7eb7c6b5a24f017f067bba5ab9d662d3a77ccace7ba3f678dcc4813
MD5 013bd608b617c5ba6f24e09ce5575585
BLAKE2b-256 7683dcb5082a767980c4e7eb6cb7eafbec951d8b816b48055a77fda12da4b0b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a24ee13ee823f4df728530fdeb104349589f460fec1a8d2ca1a4c2e7df7d719f
MD5 1de4af6ccd8dab070ed797b52cc522dc
BLAKE2b-256 beff6833f8b6232c237c28c6b777d7982ccb45300d442eafba1fd5d3c36a31c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b38ce60fb2f638f67f9222ddbd825de0ec241b9e04ed422586ce214b12df2ba8
MD5 73c24f4b15b3ce6d06252ee1cfe950bd
BLAKE2b-256 a2ebad20aec8eabaa176c3eee9b8af48ef8392cfc95bc75a5a6777308dd7bdb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 563c01520d95ae7a5c7d04c3f99949e13bfac83029b7b3c42597951999474e32
MD5 75b5303766aeac3122a6fdbfddee1fa2
BLAKE2b-256 ba71e005fabad9125feedd8899e659e4fc1146de0fe0d0a8f7ef4e19521314f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e0d17d3de6624c289a203376ad0b0e52779a315f821854ce1bd21c29571df86
MD5 3338f3c8f03ba65cf206618d5c6b5bb6
BLAKE2b-256 7f24f722ea6f290eb6645dc9208bfa7db9d49355882eec4aa2a51cbeb3c0bffc

See more details on using hashes here.

Provenance

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