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, 6)
# ┌─────────────┬──────────────┬─────────┬──────────┬────────────┬──────┐
# │ player_name ┆ steam_id     ┆ hero_id ┆ team_num ┆ start_lane ┆ rank │
# ...

# 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
rift             = demo.rift              # rift (koth) lifecycle, one row per rift

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

boon_deadlock-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

boon_deadlock-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

boon_deadlock-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

boon_deadlock-0.7.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.7.0.tar.gz.

File metadata

  • Download URL: boon_deadlock-0.7.0.tar.gz
  • Upload date:
  • Size: 438.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for boon_deadlock-0.7.0.tar.gz
Algorithm Hash digest
SHA256 cee32965aaa4df6709c1164a06aebb830a0169d846c04704eadc854dc086e066
MD5 3d62b1da8f064b4d801805ecb8998cd2
BLAKE2b-256 4ee5d510024a9854e2199adb543f02c022a81a73b68214be415aced41b953743

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0.tar.gz:

Publisher: release.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.7.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 18559b96d6beb0efcd460dcd6e5a82f6fcadbfdfe7fe1a1b90cbb8d90d9688a9
MD5 7f6124be2dd9b19e62d3ae29cc67f71d
BLAKE2b-256 a00a1e353be14ab72cfdbf6b52942037632a9f2c5a79c0e9b162d376b31b170b

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp314-cp314-win_amd64.whl:

Publisher: release.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.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e48385236c25310007a5a01f9a3371abf9d2e27521c9e5904cafe39091b6bfa7
MD5 52183a528ba5d570d8eb64683741bc5a
BLAKE2b-256 27fe2c094ef5e7b9f34cde21b3f5b8d0c44e69f53564c0c3e65b340567bac76d

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.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.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9084b26538d6803dc7250cfaac2888aac73234b9ea57ef013f7ae20a932a19f
MD5 05fc4a63c1ffc8474c6cf48eb57358f2
BLAKE2b-256 51be547b3a482336c980448df2b8d0849da8d695672e4e721eb3d4aed2d29352

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.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.7.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64a62490bfcf0ca159fcef3d5a8a44ad5a2ce118381f4a69f5158fb745af113c
MD5 b99d6358735ac2d6b6a6b711a0c7f849
BLAKE2b-256 28a33f4acfe0813cfc579dd7d7b61a08e600438fcfb190f67028bebb6a5f8b7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.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.7.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c52fe20919f36b9ab70b464ee6283a6cb0b881f38f7c1bd94a7487e806ec2705
MD5 a11269bad0c07e1f9c7cc6991d0de5fe
BLAKE2b-256 f7ebd5f769a1903d104550852560cc5d3841d331edabec1411b001abfddd65f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.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.7.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6b302123d2d6f19421b221e5e186d47a00b7a1c4f7e04b6f6a285361001b77e0
MD5 dafbbfb935c031f8d21636eb788014f4
BLAKE2b-256 df1f53193590982ff986c5fae889e19857f842aa6e1ce847c5fe785da5ca69ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp313-cp313-win_amd64.whl:

Publisher: release.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.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6047bf65064d8292592418eb51930273798729778807153314a2692a1e255de9
MD5 7c7c88fa2c51182b38b97965a7d5cadc
BLAKE2b-256 1bd5afb6633f9dbf93b210f0b8fb319519568fcf316b278e538bf9370026e1c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.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.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32065429034e3aa205571439e532a07a11d29574e500c999b296fb14c4b37709
MD5 e5298a024502d01ed12d47de73cd2e2f
BLAKE2b-256 af7dd977d480b362e25a84ae55415a76b22bf79caf51181616bb60e0f541774d

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.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.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bfadb0b99a7deb967146e90d9ab7cc7f70272ecafdfde091fda695db343cffa
MD5 4c39a942c4659d60472b442c35a9a86f
BLAKE2b-256 67e17097119c5ecd873e0a16d548aa94078d76121ccb2bc60feab046ce4e1cf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.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.7.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bcdd940f4a7a5a609bf5ad0a29d64c50feb88778e65013c438a2391bab496555
MD5 16772e6c0d52044d9838e02408fc1e24
BLAKE2b-256 b5daa0890a1fb789a6bf739ddcf3d6436a6e222520d0ef94fa2d656569108079

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.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.7.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ae6c620ca9394b8a2048eaac2f2907d69e05ad27e7d5228ba8a56412b2f90ad2
MD5 dd437c8d926b28da190607b22b6f72cc
BLAKE2b-256 b9e5191cfae9b6ba637caffc84edff71b38fb7f72361601c36128aae6d20b2c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp312-cp312-win_amd64.whl:

Publisher: release.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.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99a5d1615b640439d5e2de4b64837c1dc863a295dd00fe8969673794d2c28567
MD5 c35b475303f22784195451a00dd36945
BLAKE2b-256 0073a1e37ac54be227ecd79a194140bcccd6557e1b03016223db755c49b72157

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.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.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06b7953f419d5b928271dc214f4ad070c051dfb37598f64e82bcc0016468dddb
MD5 3774e85d9cc946452fbc195934389e27
BLAKE2b-256 39bdbe4582a36b1e6dffe01075b69431150a6e8693717ede38759bc5058099dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.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.7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44fa6dd67765aee9b56ceef35e58065b0f6cb71c87cd47d85f7cc7c636d4bab3
MD5 961145a07528f5b1833b1aee673ea90d
BLAKE2b-256 569925826d8b1c22ac55983aff017c70896e8abb489a36a6896f74b8e7eba430

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.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.7.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd20ee4eee06003a0a06b83cd2f9c1af25448c62749f772e4fced841e2e04ef5
MD5 7f68b7c9573cfc39733dcdcef442ec19
BLAKE2b-256 52f2d422ffb94126e485a747863ecc013b2e137a64c54c023170c520e3d75350

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.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.7.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f03895db5771dab1107f8aa79911f66c18971cf2131d458d199590ea6124b46d
MD5 bb3c28ec7808d02f24df9d5c9c852a3b
BLAKE2b-256 d9bb49ca70f7b3a478fa9bbcc33037cd5f2faec62383db84c3c4eec8c700b3af

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp311-cp311-win_amd64.whl:

Publisher: release.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.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ab34b92452e63e9d97bc92ebe7a24a97ff3b8dd3c4a7da371aef9aa3a494ee4
MD5 0e519d64d18cfb0d2cc1267fc9f9bb75
BLAKE2b-256 28b186e72ab5c575952da2ca94f717208c649c67f65f25eaf461747aa8a3f18f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.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.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60f273ed59d73d5803267a37570f65aa926b55bafcd3470017dd28e2745f56e0
MD5 ba30a25792566d9c317671c1e5aa3fbb
BLAKE2b-256 ab7338803e87089071973eec2d2aaf443cfed2cb8709890743be84d0f936c343

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.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.7.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e11ff2a2971ddf7ea8bf67ba1b7d473c767489bb3687ecf78fee50c087feb2b
MD5 e6ec6f8a20ffc49ddb94ae7559690e4b
BLAKE2b-256 1d960942b98bec397706504fcd894ae40af087c11128a4f1c0e1c608a72da2fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.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.7.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for boon_deadlock-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eefdcde17791e4a0ddb5b04af20a917f12511f7378a2682be378b2f4b777eead
MD5 1b71c1283d022eb048568f69be810fd8
BLAKE2b-256 6f8e27b4b6bcb68810c1051bfc6708a9b51f9ef7ab0ef29aafe1af4a75ccf73f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boon_deadlock-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.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

This release

0.7.0 This release

21 files

0.6.2

21 files

0.6.1

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