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

Uploaded CPython 3.14Windows x86-64

boon_deadlock-0.3.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.3.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.3.0-cp314-cp314-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

boon_deadlock-0.3.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.3.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.3.0-cp313-cp313-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

boon_deadlock-0.3.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.3.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.3.0-cp312-cp312-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

boon_deadlock-0.3.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.3.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.3.0-cp311-cp311-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

boon_deadlock-0.3.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.3.0.tar.gz.

File metadata

  • Download URL: boon_deadlock-0.3.0.tar.gz
  • Upload date:
  • Size: 419.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.3.0.tar.gz
Algorithm Hash digest
SHA256 7edd3b73df099ddbcabaf1f3b6c6b2d8933431538dd99eb36fd65f97e8530ce9
MD5 6b54a5d58f532a24fa89fc078e98f2d5
BLAKE2b-256 03cb1a3dc11d04fffd95ef0428c5e949f887faae1108c33a5ac9ea59fe114dcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f5c0b333a39fbd42ea5f529aa32207e3a2693eb89a918190dc21e71ff82ec84b
MD5 89dfd1cce8ef1ce390995431700d4a2f
BLAKE2b-256 5c26a028142541f72312765db88488bfc3d400a0c43bac2926f0191a0b2eb735

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ab53afb48a155e4c2a967515a2412be4117edca320e0887bc0beb3d39b2007a
MD5 e0962bc0f697145f8fe51b775b136497
BLAKE2b-256 3f1488643d1742fd4f77e217646db668f3012c14852afd52c52302e0ccefed2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b78b0acc4b8ed2735706c9ebf3b525e60a5f7a0fb6a526b2db3f62a04a80f756
MD5 e14df2772201d363566b21b9c12983de
BLAKE2b-256 6675ef562f0d387d44fc17c4052e114955e41aea237da78eba6856c664746dc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b15b37fe26620a680ab8fe418f324c812880ed60da9ef21e6aa8086091156f8
MD5 ef4765e68ea5928bf3b37f30ddc8cd64
BLAKE2b-256 b894461d5e7381a017ab2caeb13c21d3fdafcc5160a0dfa4342ca81bed60bd15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b80ce6900c3514b216f7057547026ae84a9ac2921805341f1e3792544027a225
MD5 eff4650344ec7d28ff01195fba702d06
BLAKE2b-256 fbf5ece365faf5b560b3cb763e90c8c90005c789713a9a9ac119c62937cf489c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3f55e3097bf28a6342402b5129fe3564d37d036e3cf82917325f36440fe35420
MD5 315f1c93bdfe4a9c38e91bb7f621f355
BLAKE2b-256 43609ad02b7d66937c85d1b13d25ed2b7cd2d72ddd5f121b7044be10ce863586

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cbf0a201522daf4e2aec80c9a334045228db904af9bb15ae469f536cd40cad1
MD5 d76ce6cf26d7b8ca31f40d1c5bbd65fb
BLAKE2b-256 feb175025957cbcf32681629dc9d2e55b31858c88c6fd724fd871ea98772c13e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 436acebbe5cf1b1dd6eccbfff44d141d88952542b39e5acdd7d04019a158bf2b
MD5 a0a21b92a0ee6606ad126e147d326b9d
BLAKE2b-256 1044d9bfbfad2386738c1e4d1d4733a6dd16c5fed5f985635b8cb75d272b5910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb2b0cd015b5ccc1894b57889d6458d86ba8bdf5955fcf69a2dbf5aa49b14f47
MD5 ec487530ab98a6675a619a987f63969a
BLAKE2b-256 dd4db99b112f3d336b41e9308ed6c3adce7e42c7102f969f64e8581744bfa8a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c28d40a253f7a054afb3f2988986ed2083384f5a0af77743fbc47b8f51d3eee4
MD5 fad90815b4d0674551fb817796c726c3
BLAKE2b-256 f73865bd7c26f6389c6cec889a1515d8720c514f3b6c44902b611f5f735d398c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b2c867aa672e77fe7c29e1c7b4d6fe77e64495c2ea0653a6cf0b58e468d4aebf
MD5 581d08f03d53ee3fa6fabef8367bb899
BLAKE2b-256 cdc0274e839dc992bb0896864899087edc2daa6f7b705e9bd70a9122cd37b00b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ad2f43a8fbb33b530ba330f0e41d6ef9fd3b8775420e927d4a8c55147486fc9
MD5 2ed5e52c94085b47ed7e69f4f7711465
BLAKE2b-256 566159dbae854e2d8478fb2887d7f4d4e9ce757ccae501cd51dee7adf6eced26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b27facc164b341b652896fe5a748988d814489b6e7c8256d328963f19ca30e81
MD5 c8cbede291bf9c0c5277277db13ed541
BLAKE2b-256 eba4f827b4d1dd85418ecb0e0ccf9829d20856803b37da4d57a5ef21b6ef3bf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c709cf840688b82a87224383373a56988220b47d2308217f2026f24e22534e20
MD5 be9c26ded4f95e902d22083f717954cc
BLAKE2b-256 e0d1d6fce55a2e3a3b273dde783ff9682097392ae4d9e020fb27154c822e3459

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab90e04e021903010f0a4ac85fa41f6d106fd782fdadd01e96793af4d92dae5a
MD5 5f88a2baecaafa59fbd53cb37c196185
BLAKE2b-256 b543df724291400530f44b5cfa3ec63f001f0bebb1a27173f531e5fc4c64032f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d1d7ff2279afaf2d169f75880efd79d38cafb01f983e3ee7607487f0d6a7b06b
MD5 d6d39f3647e855422e22809b8a4a689f
BLAKE2b-256 941baa7e82876871a267532332e854cff62aec69d6796603f316e78b96e1a10a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5cce3c3bc09f4d8900d8e5c87df6094e7d1cf0e0965ee77175d9d63d2606fdc
MD5 7a606852ff5df13c6dc72d47c7556acc
BLAKE2b-256 32555f6d1e8ae7184aa0da20207056e0eb828d168035ec818147f7785472836c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2985c996c37d14c2b3fa70043b57975a29fd56f7ceab8edc15a07e9197eca374
MD5 5a49763a8eedb306543ebc7bad5d5e17
BLAKE2b-256 2dde966fba73fdd5eebc5526857ce42564372c2ba9eebba52a78d8a8504046f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7f19b6b8b672589e1e6c8434a608f5a5487b99596a1376710a4dcbcf136c937
MD5 7ca5e7fdd4646eb1b8b6af928a2954c0
BLAKE2b-256 21539da01e5f13a18e23e772f430004266c1eeba9997028d5b4a1889584b35cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boon_deadlock-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 781ea5044c74418daec676d5a88b7689eddc948c0fb0892ea17273f5f2252110
MD5 d2155dfcbc89296edc05dbb012680dc2
BLAKE2b-256 687edceab25747dfcd1c78f7c79632f83354594eb08f27e0341f981381331ef3

See more details on using hashes here.

Provenance

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