Skip to main content

Serialize and deserialize data to ordinary python source notation (hbn)

Reason this release was yanked:

All entrypoints are broken

Project description

Hiss Byte Notation

Library to make it easy to use python literal syntax as a data format. No JavaScript and fast.

Have you seen people try to print a dict and then use the JSON library to parse the output? This library is some helper function for that scenario. It has an API similar to other serialization libraries with dumps, loads and so on.

It is a small wrapper all the ways that python has to convert python literals to live python

  • ast.literal_eval
  • import
  • etc.

However, I don't recommend using any of those except Pickle because performance is so bad. Instead use hsbn with the rust speed ups which are now the default.

Safety

ast.literal_eval is safer than eval but the python docs still imply that there are malicious payloads. I'm not sure if they are the same problems that could affect json or other formats.

The Rust parser (by_rust=True) is safe — it only parses literal syntax and never executes arbitrary code.

Installation

Install the base package with:

pip install hissbytenotation

To install every optional Python integration in one shot, use:

pip install "hissbytenotation[all]"

If you use uv, the equivalent command is:

uv sync --extra all

Install just one optional feature with one of these extras:

  • fmt for hbn fmt / Black integration: pip install "hissbytenotation[fmt]" or uv sync --extra fmt
  • glom for query and mutation commands: pip install "hissbytenotation[glom]" or uv sync --extra glom
  • validate for Cerberus-backed schema validation: pip install "hissbytenotation[validate]" or uv sync --extra validate

The optional Rust speedups are bundled in supported platform wheels for hissbytenotation; if your platform does not have a wheel yet, install the package normally and fall back to the pure-Python path, or build the extension locally:

cd rust && maturin develop --release

Usage

Learn how to use it with the GUI which demos all the features

hissbytenotation gui

Normal usage is as a library.

import hissbytenotation as hbn

data = {
    "mammal": "cat",
    "reptile": ["snake", "lizard"],
    "version": 1
}
data_as_string = hbn.dumps(data)

rehydrated = hbn.loads(data_as_string)
print(rehydrated)
# {'mammal': 'cat', 'reptile': ['snake', 'lizard'], 'version': 1}

CLI

It now has a Bash-first CLI with the hbn command:

uv run hbn dump --arg "{'mammal': 'cat', 'version': 1}"
uv run hbn convert --from json --to hbn --arg '{"mammal": "cat", "version": 1}'
uv run hbn keys --arg "{'mammal': 'cat', 'version': 1}" --lines
uv run hbn dump --arg "['cat', 'snake']" --bash-array animals
uv run hbn dump --arg "{'host': 'db', 'port': '5432'}" --bash-assoc cfg
uv run hbn get users.0.email users.hbn --raw
uv run hbn q --glom "{'emails': ('users', ['email'])}" users.hbn
uv run hbn set users.0.role --value "'admin'" users.hbn
uv run hbn merge left.hbn right.hbn
uv run hbn merge --strategy append-lists left.hbn right.hbn
uv run hbn diff left.hbn right.hbn
uv run hbn doctor --to json --pretty
uv run hbn repl users.hbn

Supported core formats:

  • HBN input and output
  • JSON input and output
  • TOML input
  • XML input and output via a simple @attrs / #text mapping
  • Bash Map Notation (bmn) for flat dicts and scalar arrays

Useful shell-oriented output flags:

  • --raw
  • --lines
  • --nul
  • --shell-quote
  • --shell-assign NAME
  • --shell-export NAME
  • --bash-array NAME
  • --bash-assoc NAME
  • --default VALUE

For nested traversal and mutation, install hissbytenotation[all] or just the glom extra:

uv sync --extra glom
uv run hbn q users.0.email users.hbn --raw
uv run hbn q --glom "{'emails': ('users', ['email'])}" users.hbn
uv run hbn append users --value "{'email': 'new@example.com'}" users.hbn

It now has glom commands, which is a query language for python dicts and types:

  • q / query
  • get
  • set
  • del
  • append
  • insert

Glom query mode supports:

  • simple dot-path lookups such as users.0.email
  • --glom SPEC for explicit glom specs written in HBN / Python literal syntax
  • --spec-file PATH for reusable glom specs

It supports merge and mutation workflows:

  • merge
  • merge strategies: replace, shallow, deep, append-lists, set-union-lists
  • conflict policies: error, left-wins, right-wins
  • file mutation flags: --in-place, --backup SUFFIX, --atomic, --check

Examples:

uv run hbn merge --conflict right-wins --left-arg "{'a': 1}" --right-arg "{'a': 2}"
uv run hbn set config.port --value 6432 --in-place settings.hbn
uv run hbn append users --value "{'email': 'new@example.com'}" --backup .bak users.hbn

It supports some discoverability and interactive workflows:

  • repl
  • doctor
  • friendly aliases such as show, format, delete, and count
  • richer help and examples topics via hbn help TOPIC and hbn examples TOPIC
  • shell completion scripts for Bash, Zsh, Fish, and PowerShell

Examples:

uv run hbn show --arg "{'a': 1}"
uv run hbn delete users.0.role users.hbn
uv run hbn count --arg "[1, 2, 3]"
uv run hbn doctor --compact
uv run hbn completion powershell
uv run hbn repl users.hbn

Inside the REPL:

load {'users': [{'email': 'a@example.com'}]}
get users.0.email --raw
set users.0.role --value "'admin'"
merge --value "{'users': [{'email': 'b@example.com'}]}" --strategy append-lists
write session.json --to json --pretty

The doctor command reports optional capabilities and install hints for:

  • formatter support via black
  • diff helper support, preferring git diff --no-index when available
  • optional glom integration
  • optional hbn_rust acceleration
  • uv and git availability on PATH

Install shell completions by evaluating or sourcing the generated script for your shell:

uv run hbn completion bash
uv run hbn completion zsh
uv run hbn completion fish
uv run hbn completion powershell

For formatter support, install hissbytenotation[all] or just the fmt extra and use hbn fmt:

uv sync --extra fmt
uv run hbn fmt --arg "{'b':2,'a':1}"

hbn fmt prefers shelling out to the black executable when it is available and falls back to the Python package API when it is installed without the command on PATH.

It supports optional extras and helpers:

  • fmt for formatter integration
  • diff for canonicalized text diffs

Examples:

uv run hbn diff left.hbn right.hbn
uv run hbn diff --to json left.hbn right.hbn
uv run hbn diff --tool builtin --left-arg "{'a': 1}" --right-arg "{'a': 2}"
uv run hbn fmt --arg "{'b':2,'a':1}"

The diff command:

  • canonicalizes both inputs as HBN or JSON
  • prefers git diff --no-index when git is available
  • falls back to a builtin unified diff renderer otherwise
  • returns 0 for no diff and 1 when differences are found

Rust-accelerated parsing

Install hissbytenotation normally, or pip install "hissbytenotation[all]" if you also want all Python extras. Platform wheels can include the optional Rust parser for a ~14x speedup over ast.literal_eval; source installs fall back to the pure-Python implementation:

pip install hissbytenotation
# or build the optional extension from source:
cd rust && maturin develop --release
fast = hbn.loads(data_as_string, by_rust=True)

How it works

Serialization is done by calling repr, checking if ast.literal_eval can read it. Repr can be called on more data structures than ast.literal_eval can handle.

Because ast.literal_eval is so slow, there are other options for deserialization:

  • Rust parser (by_rust=True): ~14x faster than ast.literal_eval. Safe — no code execution. Available when the optional Rust extension is present.
  • default: ast.literal_eval with validation enabled. Very slow, very safe.
  • eval (by_eval=True): Slow, only for trusted data.
  • exec (by_exec=True): Slow, only for trusted data.
  • import (by_import=True): Two times faster than exec, only for trusted data.

Deserialization benchmark — 1,000 iterations

Method Time Notes
Pickle 0.084s
JSON 0.252s
HBN (Rust parser) 0.510s safe
HBN (eval) 4.968s unsafe
HBN (ast.literal_eval) 6.984s safe
HBN (exec) 5.357s unsafe
HBN (import) 10.790s unsafe
repr() only 0.339s serialize

Rust parser is ~14x faster than ast.literal_eval and the fastest safe option.

Run the benchmark yourself:

python -m benchmark
python -m benchmark -n 5000  # more iterations

Prior art

Possibly astor which serializes to a string representation of the AST, which looks nothing like the source code, nor json.

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

hissbytenotation-0.3.0.tar.gz (139.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

hissbytenotation-0.3.0-cp314-cp314-win_amd64.whl (133.3 kB view details)

Uploaded CPython 3.14Windows x86-64

hissbytenotation-0.3.0-cp314-cp314-win32.whl (130.1 kB view details)

Uploaded CPython 3.14Windows x86

hissbytenotation-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (339.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

hissbytenotation-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (325.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

hissbytenotation-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl (268.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

hissbytenotation-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl (261.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

hissbytenotation-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (234.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hissbytenotation-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl (241.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

hissbytenotation-0.3.0-cp313-cp313-win_amd64.whl (133.3 kB view details)

Uploaded CPython 3.13Windows x86-64

hissbytenotation-0.3.0-cp313-cp313-win32.whl (130.1 kB view details)

Uploaded CPython 3.13Windows x86

hissbytenotation-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (340.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hissbytenotation-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (325.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hissbytenotation-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl (268.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

hissbytenotation-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl (261.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

hissbytenotation-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (234.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hissbytenotation-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl (241.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

hissbytenotation-0.3.0-cp312-cp312-win_amd64.whl (133.4 kB view details)

Uploaded CPython 3.12Windows x86-64

hissbytenotation-0.3.0-cp312-cp312-win32.whl (130.2 kB view details)

Uploaded CPython 3.12Windows x86

hissbytenotation-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (340.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hissbytenotation-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (325.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hissbytenotation-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl (269.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

hissbytenotation-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl (261.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

hissbytenotation-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (234.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hissbytenotation-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl (241.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

hissbytenotation-0.3.0-cp311-cp311-win_amd64.whl (135.1 kB view details)

Uploaded CPython 3.11Windows x86-64

hissbytenotation-0.3.0-cp311-cp311-win32.whl (131.2 kB view details)

Uploaded CPython 3.11Windows x86

hissbytenotation-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (343.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hissbytenotation-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (326.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hissbytenotation-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (271.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

hissbytenotation-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl (262.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

hissbytenotation-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (235.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hissbytenotation-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (242.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

hissbytenotation-0.3.0-cp310-cp310-win_amd64.whl (135.1 kB view details)

Uploaded CPython 3.10Windows x86-64

hissbytenotation-0.3.0-cp310-cp310-win32.whl (131.1 kB view details)

Uploaded CPython 3.10Windows x86

hissbytenotation-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (343.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hissbytenotation-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (326.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hissbytenotation-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl (271.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

hissbytenotation-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl (262.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

hissbytenotation-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (235.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hissbytenotation-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (242.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file hissbytenotation-0.3.0.tar.gz.

File metadata

  • Download URL: hissbytenotation-0.3.0.tar.gz
  • Upload date:
  • Size: 139.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hissbytenotation-0.3.0.tar.gz
Algorithm Hash digest
SHA256 59fb3f3be4b114f64d9c097a224520919923db4d58bce8730ef3feca365475ee
MD5 e74dd6de5243b72495b63a03cb195089
BLAKE2b-256 64b139e161cf1716a1b34c736cb3135282b5a41a21b9c43f42cf480515b62b69

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0.tar.gz:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f38e0399484e9e36f387e5931c0983e14a64065ee3e9cc9fcfca3179cfd72950
MD5 bad4120456cfab93ce3cb75dc4ade008
BLAKE2b-256 30067d8c7bd2028c38d84ef8dc99cdfacd4c670a1e2743a74b17266b277d298f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp314-cp314-win_amd64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0184189e31af2fe82b15acbc620f455420642ea3dc2b1c906b902d0d1dc0c0a5
MD5 4685ea147efecba46b13d2b2664cc982
BLAKE2b-256 67ab667c6108c37ac94b99fb372cdc92b6de5e8cfde49e40b98953ad9c351e86

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp314-cp314-win32.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86466631db5c09763075bad10c1fee0472a81e72b4af166a81701820551ffa2e
MD5 fc92ff5858d93e44c6b17d71e4fc5c67
BLAKE2b-256 c0063c654ffb119cfef173b2827d4858a8dc438bc6602bbb68723749ad153d51

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b7d1ab81316990d685d07ce8573c40cca3a709d9d8bb28ada3a84fcb680be09
MD5 3b4d3731905d7b768c55b1c0b9bb8480
BLAKE2b-256 a9d9cb2d3f0fd05143582a7b9d1613ed4b78b169397859a311fd81172daa07c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e75de6e7d0ca8408698aabb29d4e0dad743dcf1bdee7e26fe92037a7e191402b
MD5 fc01ee71af18c321341afe48b519014b
BLAKE2b-256 5d074c13c3f8fe2ad30a8be1290da7b0a30b5f735f93ae85420e722ce0feed58

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46fc05bd10caa04472aac3e82cb308376ea93a72969650a501ef75e12f8da2ca
MD5 f03a0ea7915de33fc31036bf84aa9b14
BLAKE2b-256 920b0bd0af22293f4a7bb275fb3f29500096aefdee2c5b81ae036de516cd541b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c90b4871270c837998ace0c25091c3845588777d2dec6caf0dfb2daec11fc2b
MD5 3d615f0cc204be5c34f21639c56e7018
BLAKE2b-256 bea7417d9679e829e8b05ca4a345582953809b7e37de73de6035835f7a33329b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 046cd7001c72bf05439b450aa5afaa935a736a04d0a09d04566a6fc6267898f9
MD5 fea8bd20a128f7457459ce859eb22648
BLAKE2b-256 345bdde5d318db3ecde65435515c83ce0bc0386d65b9734778bf1ab255c3eccb

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 08d2fb2d9ece763ddd62fe8578759ac8fc63eac2e8a39fa6ffead70cca5c8dd0
MD5 b6e286aad77babc14a96a93dd774e06a
BLAKE2b-256 6cfeaff5daa0ec02cd94dc92fc50309669919ac335043cdae74084b728236368

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp313-cp313-win_amd64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5c6474b584a21da92caf85698cd82afa45c11ef6f95abe941c8421118d0008be
MD5 d90b5dd34da4387b7b99901abfe9bd7d
BLAKE2b-256 db788131e5f1dc48c9b2bb76d8c6570374bb5f1ffb09e585721bb957a74db35b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp313-cp313-win32.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3dd9f5dc8ed2bf6812e417dc5cf1d473a52e779ab1265e24f951313bd4ca435
MD5 bcb4b465bdf7837ee15218f557a2c8f9
BLAKE2b-256 fef9d4a17024d2aedd0a3e5d01a2a6eddd6cea07352c2af0870402fd33044c48

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9efb63e6e6064c00530ae5d4c9d41ac11a0d5c01b630208913173f7af19b3314
MD5 28a8db70bc0d05981894ad98af16f6ad
BLAKE2b-256 356f0aee8a4753bc7c48d735b49e4cd78d769aa3ad41f81f05ba4a4bd4821944

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9820ec93abfa2da4ae0c45bc40611d21d04a31e8b60dad2665cfd0a24c2b2240
MD5 1e4dda6c63ef9f909bcce80d181a98b2
BLAKE2b-256 4de7a8f7da55c6a87a474469a48951d1ae95b6d531c978ac7a96df27f21ea949

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06ca8c2b322fb6bd19f11d52aa674d12a32d742a228698bada64a6c36f561e7c
MD5 6d0d08c3c656d13bb4f3e99f5fdb7cc4
BLAKE2b-256 c3b39b47c3eea152af928e6e4ca21faa3ffca6b231c53b569efeadd82a43852d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20c72da3319422af4ff0332f31fec6a3c1fe2cda48167d19d6a7f4f3bfeb6634
MD5 6cf4b0ea631b30e7154105653ebed108
BLAKE2b-256 7b688286b8fe6c986d2a70d5a4b775d2ace4c18bb8bef61aa838349158f53cac

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 23cd6141362f69ca3259defb5318d8b668dc9eb08a53fa6c260bf27d118efeab
MD5 30983b4943a61e72332c7cad9237fc8d
BLAKE2b-256 4f369751fa76d049e33ad69a992c6326d7a5a2f5bd186b3f20d65cc0ec3b8488

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 554613e4927914a6def7e1c31c643dc55f2456bb64a783421b5bdac2207e4c35
MD5 b24c1002ddf8bd0a5b6bc9c3bfd24b5d
BLAKE2b-256 cd2884c15521c615113a59570cb3e83bbbd0de07ba6dc5d9b66a8ff9dadad4d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp312-cp312-win_amd64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 78bdad73536c373acb446e123042639d7025327872860e70f84dc885a7181d52
MD5 9db651aaa7a7191d8d67fb2ba2bd08bf
BLAKE2b-256 5466e3cdb9c39f5b23abb9b460f7df44e2324409d22c2c8a6f53700754807586

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp312-cp312-win32.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5acd3f9c6c3bd5a6e118c2338f3d42bd6a6c162f2ecf1ddca99fb37cadb164a7
MD5 553615f57555b4fdd09f13d4bc049f49
BLAKE2b-256 8fa1d05c464023e205995777d6e68973e0c72dd0bb63f1cce766093f264d5bb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1dec5012113b0402c4c88ace035b1bc8b176bc2094107486566c0f937bd33bfb
MD5 d228158057fd825d5e794e383eb5f12b
BLAKE2b-256 366edb49ed416f93a21b70d75f77cadc24bf464cbdb26ceb09be0d79856c1082

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79a40f01f969f9974b010b57d3226e168d5c77dde98e6f90088c29ca7c1a56dc
MD5 5e2e66e3d73dd161c6d456ae0fe47f32
BLAKE2b-256 32580955ca62903da6b3fce3ff3725a50d6a5ac4564896c206750082b4e7e427

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 777e619a4cdc87dd8576e40ecf62193764cb40fa48ad6208ef7240b015bbfa13
MD5 d2e720b18e5da607fda9e0abd2f61577
BLAKE2b-256 76ab2f4261b57f39376546efa005a8266d8221f4ec8b07a2ededcebd7f488bdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87e69f467de940f40b8c813b2404ed1bf184bf373812f52999a2628b5c743512
MD5 de97509950f46ae38557415f1207296b
BLAKE2b-256 0210edb2afc1cc4eeeb990a6b82d9eb175286f354dedfefbedea1028ed68df14

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6c7c0b0203d74eadecd94f305de6abecd165b46668dfaa5a12c123f661cbc5b7
MD5 75adc4941bb444cf5c0c345cf5761456
BLAKE2b-256 195b135c420289c3517b60ec2d2cda14500b9dcbce49cee87c51a4038698c5a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fdc64e6ab3f8e5a2a70c72bf54346100a8663742e8987c8107f6b69306ed09b7
MD5 4b5ad53cb5c2dfa8d9f49f19bcf7a7ad
BLAKE2b-256 1eda9830f17a3f4c411f2d55f300779ec9e3da84a14c39ac566928dfa7c1790a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp311-cp311-win_amd64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 716d3d2c62c06f38ae57f3d571e0800c11789424ebd540bee617920268b8104b
MD5 9c7ceb2940880ff9fbaacf7a768f3a3a
BLAKE2b-256 a6dd1a4715c8363060483835784afcf356a700d68b1205266f6a39997d81aed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp311-cp311-win32.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0e2115f3a4c7447e30d5d0a485537fb93feacae52cad88cff0578672df8b3fd
MD5 9a10d343517cabc0dc4dd6dc1a96000c
BLAKE2b-256 38065b38de6aa7f28b3024ce4ce6232b96486bfdb3d6a89418cb397c0fd6d515

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd1c25385270852796560ae61ab7ef0bfda02e3dffb2fc7fc6f144de292713e2
MD5 b3f9132d621c5fd1dd656c69ab52f561
BLAKE2b-256 8f85ccebf19d70f6edd2209decd79406ae6ec7e38f13bb5952258fb27e5e2947

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95a28113399a2f6c97ff8bfb70084ba155a88ccd16373f13b3a4a45a1c98371a
MD5 c23e590bed0ae03e7e6eb53f1f752dc3
BLAKE2b-256 fed8582f7c2d4f34e2de6f755b872183468612f41f06d67c2465df30391c747d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c84821cd57d683c8ab906c7c6ef3111c4e7608b984810d67a17117c7dc11028
MD5 f59d38868850bd806f0df046734ce292
BLAKE2b-256 6b174ad87c5a4a230bc30d869293270709878d8a797b753eb05b8c969c84b375

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5188fa07ded9c3a69811b0f1b5d5c59d4428f3478d388c4abfbbc9604c3bbe10
MD5 ea6fc71f7176c6f86e8a2c17f164d3ee
BLAKE2b-256 7c9df2069967e474c60369222fe48d33302c502893fd362f9b3acec4fe276a60

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4847019eaa49c4cca73a8c58b81e5a27239e4d4b5c3831fea2da1fbe84681004
MD5 da5bb6790b403cd82db7aa1384c6b8ce
BLAKE2b-256 12197f8e4694cbce279334067eb5fa4275a249a89667334e4cdb1ea7b5c3a9e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d9e634b231c3ce20c2d2f85c43d1ddd26d886d93d4d510464dad3b16325ff171
MD5 a1a8c50727a2233b4a7a7ab77ba50b42
BLAKE2b-256 908086117a7c6329b07881496f88eea0a4f0d2c39080fed8592493cb59e71e99

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp310-cp310-win_amd64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bd6c001286d290117695c9eb7a34d0215e116c3e938dd8ca56f17e23110cf6bc
MD5 ed0e8d823b301515c5d124d2789be2e4
BLAKE2b-256 a7295efe7726bdd33c93efb70d5e85796454c1bea5270fdb5d46b08c21bedbf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp310-cp310-win32.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12f7e9efa17c9666e1706ba77b3cbcc7f684b4285934afd02f702d3e6dd832eb
MD5 f83985f956c3af3edd35c84639a93162
BLAKE2b-256 990206b75e658f249935d36cc4c263118ff2f741250e638555258995e271be22

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1024f5d05319e705fa5221323a74b9ce762a9db83ff1c66d24f1d9e902990e18
MD5 f3c6c9321529104ffe70226f1bc76f26
BLAKE2b-256 b7ebfbe59341fd84d9218db6bace491c6d8c6fd223218ad84aad88b61cdda131

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8e3141546b8fc2346b2a217d92fe2185aea5fc16c63cd4a32812cb454233b71
MD5 20a2641df5383e528c2f0b5e20cbd976
BLAKE2b-256 06e7a33c841f6621505b0fbfd5460e6106c157d445f0c546061b3e76756e5737

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4fb4da4630155a0150ca5b1b0b8921d87c24e32bb55e58d9025d50555fd9edcf
MD5 a45f92f95a27e26477d659b17a9cbb8d
BLAKE2b-256 bed2a46cb7355385b6858861c6ad33d89e75e5188630a807b3d4d9057e37624e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e556a8f27e8387d71ec2e89266cee088c4b078f2a0c4b252c307b194b7d6fbe
MD5 81a1ab1e18bf88201b3c1a0deff8c3af
BLAKE2b-256 ab0977d8bb0cb2974b6fce7b37266f2437462b1a0a0d07433c51b02e0f3941a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hissbytenotation-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hissbytenotation-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e2f87c3f22717b70a33b0391c17c33916ccea11394197de81bac333e2ffa2533
MD5 1fb3764073259679bc09ae7d8ff1ff9c
BLAKE2b-256 aeba7cf417621ae33ecb74ad0f25a7b0de7be5d25ab1779b2b367fc03ab95388

See more details on using hashes here.

Provenance

The following attestation bundles were made for hissbytenotation-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish_to_pypi.yml on matthewdeanmartin/hissbytenotation

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