Skip to main content

Python bindings for the Beacon Binary Format collection writer.

Project description

Beacon Binary Format Python Bindings

This crate exposes the Beacon Binary Format collection writer to Python via PyO3 and ships as a native extension built with maturin.

Prerequisites

  • Rust toolchain that matches the workspace (rustup suggested)
  • Python 3.9+ with development headers available
  • pip install maturin

If your default python3 differs from the interpreter you want to target, set PYO3_PYTHON to its absolute path before building:

export PYO3_PYTHON=$(which python3.11)

Local install

Run the following inside beacon-binary-format-py/:

maturin develop --release

This builds the Rust crate in release mode and installs the resulting Python module (beacon_binary_format) into your active virtual environment. Re-run the command whenever you change the Rust sources.

Usage

The module now exposes a Collection object that can host any number of partitions. Each partition is managed by a PartitionBuilder which mirrors the original single-partition workflow:

from pathlib import Path
import numpy as np
from beacon_binary_format import Collection

tmp_dir = Path("/tmp/beacon")
collection = Collection(str(tmp_dir), "example")

partition = collection.create_partition("partition-0")
partition.write_entry(
	"row-0",
	{
		"salinity": np.array([34.5, 34.6], dtype=np.float32),
		"temperature": np.array([9.2, 9.0], dtype=np.float32),
	},
)
partition.finish()

# Materialize a second partition later on the same collection
second = collection.create_partition()
second.write_entry("row-1", {"flags": np.array([True, False])})
second.finish()

print(collection.library_version())

### Named dimensions

NumPy arrays default to synthetic dimension names (`dim0`, `dim1`, ...). You can override them per array by wrapping the data in either a tuple or a tiny mapping when calling `write_entry`:

```python
partition.write_entry(
	"row-2",
	{
		# tuple form -> (<array-like>, <sequence-of-dimension-names>)
		"salinity_grid": (np.ones((2, 3), dtype=np.float32), ["depth", "lat", "lon"]),
		# mapping form -> keys `data` + `dims`
		"temperature_grid": {
			"data": np.ones((2, 3), dtype=np.float32),
			"dims": ["depth", "lat", "lon"],
		},
	},
)

The number of names must match the rank of the array (or be exactly one for scalars). Any mismatch raises a ValueError, which keeps the partition builder in a valid state for additional writes.

NumPy masked arrays

Masked arrays created via numpy.ma.array automatically translate their mask into the Arrow validity bitmap used by Beacon. You only need to pass the masked array instance; there is no additional API surface:

masked = np.ma.array(
	[1.0, 2.0, 3.0, 4.0],
	mask=[False, True, False, True],
)
partition.write_entry("row-0", {"masked": masked})

Any position masked in NumPy is written as a null value in the corresponding Arrow array.

Reading collections back into NumPy

A matching CollectionReader can reconstruct logical entries as dictionaries of NumPy payloads. Every field is returned as {"data": <ndarray|masked array>, "dims": [...], "shape": [...]} so dimension metadata survives round-trips.

from beacon_binary_format import CollectionReader

reader = CollectionReader(str(tmp_dir), "example")
partition = reader.open_partition("partition-0")
entries = partition.read_entries()

for entry in entries:
    print(entry["__entry_key"]["data"], entry["temperature"]["dims"])

Optional projection=["temperature", "salinity"] narrows the arrays fetched from disk, and max_concurrent_reads lets you tune object-store fanout.

Object stores and fsspec-style options

Collection, CollectionBuilder, and CollectionReader each accept an optional storage_options mapping along with richer base_dir URIs. Supplying "s3://bucket/prefix" switches the backend to AWS S3 via the Rust object_store crate, while ordinary filesystem paths (or file:// URLs) continue to use LocalFileSystem.

storage_options mirrors the values you would normally pass to fsspec, which means existing credential dictionaries can be reused verbatim:

from beacon_binary_format import Collection

collection = Collection(
    base_dir="s3://beacon-dev/datasets",
    collection_path="planning/profiles",
    storage_options={
        "key": "minio-access-key",
        "secret": "minio-secret-key",
        "region_name": "us-east-1",
        "client_kwargs": {
            "endpoint_url": "http://localhost:9000",
            "allow_http": True,
        },
    },
)

The same configuration works for readers and builders, and you can even forward fs.storage_options from an existing fsspec filesystem for consistency across libraries.

Prefer to pass the filesystem object itself? Provide it via the filesystem keyword alongside a path scoped to that instance:

import numpy as np
import fsspec
from beacon_binary_format import Collection, CollectionReader

fs = fsspec.filesystem(
	"s3",
	key="minio-access-key",
	secret="minio-secret-key",
	client_kwargs={"endpoint_url": "http://localhost:9000", "allow_http": True},
)

collection = Collection(
	base_dir="beacon-dev/datasets",  # interpreted relative to `fs`
	collection_path="planning/profiles",
	filesystem=fs,
)
partition = collection.create_partition("p0")
partition.write_entry("row-0", {"temperature": np.array([9.2], dtype=np.float32)})
partition.finish()

reader = CollectionReader(
	base_dir="beacon-dev/datasets",
	collection_path="planning/profiles",
	filesystem=fs,
)
entries = reader.open_partition("p0").read_entries()
print(entries[0]["temperature"]["data"])

When the supplied path lacks a scheme, the constructor infers it from filesystem.protocol, so s3, gcs, abfs, etc. remain fully supported. Explicit storage_options still take precedence if you need to override anything pulled from the filesystem instance.

The legacy CollectionBuilder class remains available for scripts that only ever deal with a single partition, but the Collection/PartitionBuilder pair is the recommended interface moving forward. Shipping .pyi stubs and py.typed ensures editors and static type checkers understand the API surface.


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

beacon_binary_format-3.0.0a0.tar.gz (123.5 kB view details)

Uploaded Source

Built Distributions

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

beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (7.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (6.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

beacon_binary_format-3.0.0a0-cp314-cp314t-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

beacon_binary_format-3.0.0a0-cp314-cp314t-musllinux_1_2_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

beacon_binary_format-3.0.0a0-cp314-cp314t-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

beacon_binary_format-3.0.0a0-cp314-cp314t-manylinux_2_28_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

beacon_binary_format-3.0.0a0-cp314-cp314t-manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

beacon_binary_format-3.0.0a0-cp314-cp314-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.14Windows x86-64

beacon_binary_format-3.0.0a0-cp314-cp314-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

beacon_binary_format-3.0.0a0-cp314-cp314-musllinux_1_2_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

beacon_binary_format-3.0.0a0-cp314-cp314-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

beacon_binary_format-3.0.0a0-cp314-cp314-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

beacon_binary_format-3.0.0a0-cp314-cp314-manylinux_2_28_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

beacon_binary_format-3.0.0a0-cp314-cp314-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

beacon_binary_format-3.0.0a0-cp314-cp314-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

beacon_binary_format-3.0.0a0-cp313-cp313t-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

beacon_binary_format-3.0.0a0-cp313-cp313t-musllinux_1_2_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

beacon_binary_format-3.0.0a0-cp313-cp313t-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

beacon_binary_format-3.0.0a0-cp313-cp313t-manylinux_2_28_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

beacon_binary_format-3.0.0a0-cp313-cp313t-manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

beacon_binary_format-3.0.0a0-cp313-cp313-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.13Windows x86-64

beacon_binary_format-3.0.0a0-cp313-cp313-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

beacon_binary_format-3.0.0a0-cp313-cp313-musllinux_1_2_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

beacon_binary_format-3.0.0a0-cp313-cp313-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

beacon_binary_format-3.0.0a0-cp313-cp313-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

beacon_binary_format-3.0.0a0-cp313-cp313-manylinux_2_28_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

beacon_binary_format-3.0.0a0-cp313-cp313-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

beacon_binary_format-3.0.0a0-cp313-cp313-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

beacon_binary_format-3.0.0a0-cp312-cp312-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.12Windows x86-64

beacon_binary_format-3.0.0a0-cp312-cp312-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

beacon_binary_format-3.0.0a0-cp312-cp312-musllinux_1_2_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

beacon_binary_format-3.0.0a0-cp312-cp312-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

beacon_binary_format-3.0.0a0-cp312-cp312-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

beacon_binary_format-3.0.0a0-cp312-cp312-manylinux_2_28_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

beacon_binary_format-3.0.0a0-cp312-cp312-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

beacon_binary_format-3.0.0a0-cp312-cp312-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

beacon_binary_format-3.0.0a0-cp311-cp311-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.11Windows x86-64

beacon_binary_format-3.0.0a0-cp311-cp311-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

beacon_binary_format-3.0.0a0-cp311-cp311-musllinux_1_2_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

beacon_binary_format-3.0.0a0-cp311-cp311-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

beacon_binary_format-3.0.0a0-cp311-cp311-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

beacon_binary_format-3.0.0a0-cp311-cp311-manylinux_2_28_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

beacon_binary_format-3.0.0a0-cp311-cp311-manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

beacon_binary_format-3.0.0a0-cp311-cp311-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

beacon_binary_format-3.0.0a0-cp310-cp310-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.10Windows x86-64

beacon_binary_format-3.0.0a0-cp310-cp310-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

beacon_binary_format-3.0.0a0-cp310-cp310-musllinux_1_2_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

beacon_binary_format-3.0.0a0-cp310-cp310-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

beacon_binary_format-3.0.0a0-cp310-cp310-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

beacon_binary_format-3.0.0a0-cp310-cp310-manylinux_2_28_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

beacon_binary_format-3.0.0a0-cp310-cp310-manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

Details for the file beacon_binary_format-3.0.0a0.tar.gz.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0.tar.gz
Algorithm Hash digest
SHA256 c953e3fb9b24ebe5e5b603f1d916caa24daa97a781db2869a157e6b8c44f40f1
MD5 25801a4ddfb8b6e6cb08caa072a6ecc1
BLAKE2b-256 5f8a281d36b07a9d268d857c3824998f6c358341497195f430ca16d4e67a23ba

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e22a6511c252ee73b7fefe091f8e904a5739be40bd7ed1bede40fbc481fba5d9
MD5 2abf338360fe92b04e86d233ac0421a0
BLAKE2b-256 66e11fba6d7a2d42e4e2a2e55f12a717ca9c9ecd12dab467cc3d6d3bded99fcc

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb7a1a7cd7b792a4e2c9278af0d60eb2735d2b608669bc44d91005051029a6e5
MD5 79daf0537c4a8ce5a150555be1b3df95
BLAKE2b-256 178b30bb5b45bf2edc7fe455c8607bb965659108175ee73ea23ff983127bbbf6

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6dc31e4815c5d0730c2480d07f9b0eb2b28c5f879746b273389f8c6514f54e5c
MD5 d1b6214110ef64212244ef1c94a2deab
BLAKE2b-256 c4bb8c1ff7c74300c1a4a46a02e86f0b053a3d5262ab9d95b642226244b983cb

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4812d1abf0970f2318ae169f1440638a32164d430ca55d4812aeb46f16909331
MD5 77ceb330e5f2f958e9144ecc47b89fbf
BLAKE2b-256 b5c9f0bcdc0ccceb5f2a2137544aaac8d95a546c6d4ea19a68934b174760454c

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0ff9215ae147ef1c7f85d7ed8be79a3be6e617ea6451b9032f868bd56cc5a9af
MD5 7c51267d7fb6e8753e1664db3fd6b63e
BLAKE2b-256 7ce34d657f9946fa3dd22f699313f2b25560d9cf470a7daa10789dcda15f52d0

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 766c97ce371dd5c514db7ac27258ace089c304e54869aceb89e92f321ec4752f
MD5 0446abf29c38892e84e678686a6fce95
BLAKE2b-256 577897e807e7a5ff69a42c05ea2de63995e9f127ad804d3baa53f74c3332d2c9

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a40fe9ccea01ebb114a5640bb770904291564937c1ee409043858e46ecd38432
MD5 1887a7c0492dbedb80021db2e809316a
BLAKE2b-256 9bf85054d47ad80ceb424f1ab8ff8b239b773cee697677e3d518f8d2514fff2d

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ecf0d39a31e367d90c1d9997e73d375c732abff0baf8ccf71744321d1c03a926
MD5 873f4af89e28884ea385e7b1226110ac
BLAKE2b-256 873142616faae7a3b0bf770351932bf5f104171e10fe30b0b4717d17ff3c4641

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf278afc26a2643f48f98a388c788ba215bfa31e14e75fb23ca36850a41057aa
MD5 f616a45aff6767b3fb023951a2340a02
BLAKE2b-256 d5d01157b0ebd450ae24973f0049a5b260b02ee0658232bfd829a5b6642bb29e

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp314-cp314t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c0c260184511eb663e0b3a4b2f879c0d87723407b2f454e91d6e4b54e7fca6a4
MD5 df605fe0bcb7660ebf17baf8ba7758d4
BLAKE2b-256 a24d86601627c9a690adb9dfe809bbca62a4f49a34cd99215b4f04f0227d3b4d

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 60c65708249bcc8aeda8291b976583d9d4727cd0cb75ec1ec0c004cdcc21ae80
MD5 9d7a84d541de302da6c18cc9a7ebe287
BLAKE2b-256 a733482ab790f74b7655d38d910e35426b0f6daea0c793508c14e18d6fd2986b

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6f6b29ac0b3c77db2539419b067e0e8bbe077697bc5f047e97ab7bc785c2d88a
MD5 4713248da68c7fb73d5cf0809bf48361
BLAKE2b-256 1266a0086d719fea9dd238bf9a436707a81c184dfa0457bcae23b20105831012

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e4d280e9a91c6f879d6e18358dfd8dedf30e26b0783a44337079d1eb9e98573
MD5 9a1affc49204347ef871a243a856fa75
BLAKE2b-256 13e14479bdde070786ceed0364d790e13f4b07451ca79292955a646236a54c57

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b5d01d5d819454cb5f1f29d94361df08005d13191aa48d05962e8701e88b7420
MD5 0dcf06433636c236a6d19019b9fd0d8f
BLAKE2b-256 67cd0b891269feb7d3110728eafd0ce17e5b495f30dd3acb349187b9b452cb00

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 973c850708e860c0e8e713cb6074fd255dec7c69b668e8426d7a4428d163b65a
MD5 fd246f629fbf26611e962bedd0af9177
BLAKE2b-256 eb2aca4aeffdd6d2422aef8165060edc745c9bc9cacc18434766493213f4665c

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b13390dec8a0e34952ea571e394277fe11fd5968af31edefe9670aca8d91aa56
MD5 681fccd2d60af7b2d226cfe8a41ea7b9
BLAKE2b-256 da546ca08cf2f668fc6af2160cbb9df82080fa360412e2883c8c5de3dfcf734b

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 23986f784884e4213e80c5dab76809178461c89c3b5813c56cc449ab2e9174fc
MD5 6dfd0fc925deba42e8f34fb554e249a5
BLAKE2b-256 4cc4fce7f7855d48f091500dfce6407b8a618c1b3dfbcff8946e40c9b04cd4fa

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7dcf619e1a9ef6676692da03846b50b14b5ec4721c4e1de9714e22515952ed34
MD5 40329cf33d1ccf69aaf8e8655ce4d356
BLAKE2b-256 89dbbc79335cfb22022f066b737b54481171edb6caf4b76fe390017c82163249

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 682f4ad2e939fdab3ae32f67c635c0a67b87e5b5f63d6b931393469c907dfed2
MD5 f84031be5badb9c13e2ed296dc6e865d
BLAKE2b-256 45ffea3b316605aebdd2785f2820cbd07f73266dfd79b4072439c9d007324f35

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bb1277072f70ceaac0577cbbf836d5573f60452ff968030b507f788049b6aba
MD5 30fb2fd43f45084aa46e62636c889480
BLAKE2b-256 b36ba81f17539b6f9cb7127f1d554254aee089e6cd2028237245dfa94cbaa0f7

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cc27db9964770b0b11f16f23fd0156597822881ea631ca0b1c7844e38624c183
MD5 8a56809ca837c1f29aae0b336c75eeff
BLAKE2b-256 be0812ba82e9cd9951cbc4f2ac5db65cf0b15c862e027c94fd03bd56bd8dcb64

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53b9b2543bd740ebb8a67950fd21089d0931ace22f7a4274e04215e6fc6fb585
MD5 5d5338169a97583ce0d48279f345f112
BLAKE2b-256 85ed86592cf1c683efd41a372af07f04b86bc1156961e5ebb2c5009e443a24a2

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8fc8b7e4aef02eee6b7144207c819bfe584b30ef5cac6304e39a01192b081a5c
MD5 2d7c8ad62b560d518366a47f97476f48
BLAKE2b-256 712a8e453ce66ff979a285a4f8d1b85f38658acf71b75b2ef762d9702f6774b0

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e752083c9148bce8265a195f17d16b396c0dba86fcf8c8b0e781757ab3e3e43
MD5 06dbe584eb94cb38a4c3465f611dbb6f
BLAKE2b-256 8596f86e419216489c08946db0444c2810838a686b5a69fbd5adcf7da6597d4d

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 56307341042ad80cff18223bcb062228c9d225500f37e58d9b26836546b0af5c
MD5 b325f562d0b77b4211f3a7f1a4172940
BLAKE2b-256 bd109be09d730a978fffe932859a9c65457ce120426806332e37b6015a9cc229

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3109cb89912456db65a7e9889a8454f0bef6d78a592395a58f87cd891cc2513
MD5 45428fdac39a090f1dd7c6fad581b9cc
BLAKE2b-256 bd7ea8a139feda5b31eee6486cab369f49e6c85f88330c8a7cc47d78461f9e14

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ca0300a65fa5177c81d8b72b6495c649a933a569bf5c94a18c321007cfcf170e
MD5 b73534857fbc9bfe2557c8b73efc06b5
BLAKE2b-256 3b8082097bf4cc110bd41896af9d28a4af5fc234a6cdd2298ce5a94b9ca225fb

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae07a2ff5052a9c6e6e555589d0cf7a39e7fc47b367b719fc099c5bac79dc7c7
MD5 91de17358fe69a47948e0b2c82a4aacb
BLAKE2b-256 54c0a7a12665ad73f94af1d978019c54bf49f583ddae8629d2e53d9eb6f27a0f

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10290355627c8cb1b57aa3e6ab146156bf156d7219d673ab7085cbfa4ec606e9
MD5 7f7d3095a916f1403bf914841ccb8771
BLAKE2b-256 1433c08a02bf72f2e3fe4ddf64a3ab4a66988ef2206b8174a837591beb362ed8

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9f3aa9d1ac9f6c366abc5748d7b2c8416bc57a3fe770f96f77c4338086aa7d1d
MD5 fc49db8dc13de7c436c6b3d5f99e63dc
BLAKE2b-256 bfcd5a2991548f8f1afccbcefcba54a8d35769d87fc954fc2323bb50450e4f66

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3bd9ef248dc61f2e1cf1e691277ed56f070cdca836dd035f6496bb601c5d58a8
MD5 3123ab8223aeafa3e308fcabe13abb6d
BLAKE2b-256 d7a32f0a633c352384be87be1c8bf5374db8949ae961e246a455d01d47bbcb9e

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2582fb671f67266b63ca6a12385423df85a9bab6b35ebb553c4e4b59b3c6a29d
MD5 2a2c89ff66fd6ed98ec72728799d8b09
BLAKE2b-256 dad3b0f71df69467297075cb9a938f635b6480d00747b5c83e54a84abaf9dd28

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7ef3a7d99f40c21fe395ae9ecab8bd75eaaca09b656aee0fac85cf0f8e3aa440
MD5 274b3bc8b0bc9b4fa3df0292e34efbce
BLAKE2b-256 21ec50e8162ad03f3e08857f4b04622d2836d25465ca342b1e908d7959b6faa9

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99d9b609e2248be58d4aa8e6e9efa96b9a6536feafda53358c1e6b9760f39f49
MD5 494c9efa9ba75734e1a4dabcc9423d04
BLAKE2b-256 fc42551b60faed5d1da2310f9ea3d2bb38c4e426403b37b07b04e51a4b71ae83

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a529c41d57889c5ce7482c2d17b1b538fe8f04b3d305f78b320e5191d1818768
MD5 69c2ce328a4aa4aba693a487d13e4f23
BLAKE2b-256 49cb291117649f0b0a37c457535e4e1031a2af00b9f5fc2731692de102d5a26b

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fabc35d2a4247c0b5b9bd810e06f1b3e7481ed6f586e29136ba5f245bee56811
MD5 b0c4f292743d5fe2dc4d8004ddb600cc
BLAKE2b-256 4da2935fb462014e37b8d48053c1577852ac9abcf3a0152d7dbf8bb3f19415c7

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b55dfbe62e12369af1fb249fb923dd88f4a1f5e83fb0a75971198147b091a807
MD5 a687128e7cb6e483b96c493400c529e7
BLAKE2b-256 04f93c19d7efdba5d1bfbb1dc8c0207ba18c88bb6e7d47556eb7e76b3a8098ee

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a9dba8e3443300708fd3b7c1339fe22774b8fb259dab2755dd4dca66d37ac9d5
MD5 1c906c33b175e602bf9425e483aa233f
BLAKE2b-256 79482014e1b9e4cc1757e220c63455763ecc560ec78f61e5f21e6d01c7d86bbe

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e083bb6410ae84895a23be7d452b011cbb0d59e5452428a1489fabb06f80a18c
MD5 7bf215238586b7fb6036e2153b7fc61f
BLAKE2b-256 caf8624e75d17876f0cdca6589053659ebbcb9489d2f9dd55d837ef04f5aacc7

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95a157ac3ce3970f83f2c2c16005e476bd74dd8d60927f098c38cb9e4e7577c4
MD5 c431c1025ebdd8645382f8f7e93f0968
BLAKE2b-256 7ecb9cc139155da379f862db48be99f6a937ae57fc2efaa70381350854a7e6e1

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 94feb5eafa19211987d091ce718d3ee505885a7ca0084000935515c069f9480f
MD5 a88762d237fbb6c638dc035ab03b8315
BLAKE2b-256 83f77a25e0a5eccc9ad4ef934accbc1c77145b916a9b59efe88ff0274906279d

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43dccbb04642cb52f158440f4eecec8c7b790e397d40600b269646602602f36e
MD5 e7fa22302f9a8f47fd5c7f223b022a5a
BLAKE2b-256 c7759d843849cc2193afe415b96880ef84840324f569dcb4bba2da6f1affeaba

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e26fb1fadbcf16fd6a07ad3c29e3371e2119dd28675fd82b61a94a21b8693708
MD5 58a48526e347ff8ad6a8928a170003c1
BLAKE2b-256 a85d31a7ad0afa04379fac706c679ac0e90497975cc3f715f5249e4b390a0ce4

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6da3ab98ba6f4714c583dde0626e136c9d4102b2aabb12c7caf332a44ef188ac
MD5 90db17c551398e5e4f68f70e9bfde100
BLAKE2b-256 2fb56b29b0d19f41d197a9da337df5164f2116a9e5838882d1df0a868dd2e67e

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d3657957dd6562900f6d8b013d8206ae0ad88522266af852dc7b011135e46734
MD5 a5096c9ec3496628fc7ca9d7e1452020
BLAKE2b-256 ae04e2dbb6a64a6b21a4e84d93f2c1c0a17b62840a17d2ddbd82cf32c6277569

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7f988075cc823a9df706071f461b36a94ff39c3c067ad180f1ff59677da47707
MD5 b24a36bf4502f5795df0b4ff28494baf
BLAKE2b-256 03d2233ce8d4e6641a3a7ca937d7743a07770d0597950d881524c7362aaf88f3

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57df2984f0d7c75fcdfa140516602e08a4bb082401bb1946f03f61b084700dc2
MD5 52baf293e5ac9394ab08759694a3b236
BLAKE2b-256 c83aeb20c86be38fb688f56e8fe400a1b9d62adc57c36a364cd259b88ff7ed44

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57f5799e83aa1ef594c958da1d23111e3d85a1234830929c61c0666d2d34755f
MD5 20862eaa68be7ae3a8a1babea502c52f
BLAKE2b-256 e25fce8dbf863bd2b3e96d842345b10bf6309070deb2eaa53f68f6f32fa41cc8

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 40c01e2d197796173c358908a0210ba5125bfac6359706d3bad66add45e4ac0b
MD5 9f60993af3370a6b3a9ea00604b2dbe6
BLAKE2b-256 d019f44de9cd28d715fd197e01f9aa1c841a64c274c9bab93d5c2b0c26c07dd2

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d74ae8eee5188b53400154e33f1be065fea6c0f6acb7e1b40b3cf51263b4e004
MD5 bc21193414a3bc23d99cd50b20ca1372
BLAKE2b-256 e7381b49ffea1d759cd34f04fcbe717701783d7862dc422c9acc5c28a01a72e7

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce6fef40079e2becea6d5db91b8282d5ef617d4bab20b75b4adbc8c13678b49d
MD5 53fc168b40148be3060de42921c26945
BLAKE2b-256 d5acec5920a87204152c6067d2460fa220450676507360c1279722f297873358

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a38e624465e54d4327339a215884089926d33ab31945e43c829c2467dce09e02
MD5 b2ab7024faee2fc590f3af689c75281e
BLAKE2b-256 2060e3824e42cc28ac4dee7e4aca9704d95433c4db74216d7ab877ea270d4322

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbf25bcfc5ad50be4596f864ecc6c74cd60964490deae01743ea60af74c355a2
MD5 c29a0df9f8c29f438024b0e51eec0f59
BLAKE2b-256 0bac269caa3b8b5eae026ec268100b6237b05d7f042ae2c6d35510d875f4ce2e

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp310-cp310-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a6f8d719f93b7b3a6f56caf2b1495d30718014b42e9411dcfd8c143fc5e320ed
MD5 ddefaabbde1877151d3d9d2e35a90d7a
BLAKE2b-256 acb87534e6219d245ebd53d99f8b1122fc05b27dbab6593f5900b6f11a7c0c13

See more details on using hashes here.

File details

Details for the file beacon_binary_format-3.0.0a0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for beacon_binary_format-3.0.0a0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 34c9a3c8fdfe769d10f2fc725465f393abfcd994ac5098116c8b059462b743da
MD5 c39cb06b11256d44acd86f0f0b653cb5
BLAKE2b-256 bf8949568c2e8b762271d145bfdf8998aaee128a914164bd3de16642dfca3cc5

See more details on using hashes here.

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