Skip to main content

FlatBuffers schema parsing + JSON<->binary helpers (pybind11)

Project description

Ark FBS

This is a standalone PyPI package that provides a thin pybind11 wrapper around flatbuffers::Parser and GenerateText:

  • load .fbs / .bfbs
  • JSON -> FlatBuffer binary
  • FlatBuffer binary -> JSON

Installation

Install from PyPI

python -m pip install -U ark-fbs

Repo layout

  • cpp/: C++ binding source (pybind11)
  • src/ark_fbs/: Python package wrapper + typing stubs
  • third_party/flatbuffers/: your fork of FlatBuffers as a git submodule (recommended)
  • third_party/nlohmann_json/: single-header nlohmann/json.hpp (required by your FlatBuffers fork)

Local build (editable)

uv sync --group dev
uv pip install -e .

Usage

import ark_fbs

s = ark_fbs.Schema.from_fbs_text(
    "namespace t; table A { x:int; } root_type A;"
)
b = s.json_to_binary('{"x":1}')
print(s.binary_to_json(b))

Load from a .fbs file (with include paths)

import ark_fbs

schema = ark_fbs.Schema.from_fbs_file(
    "schema.fbs",
    include_paths=["./includes", "./third_party/schemas"],
)
data = schema.json_to_binary('{"x": 123}')
print(schema.binary_to_json(data))

Options and root type override

import ark_fbs

opts = ark_fbs.Options(  # keyword-only
    strict_json=True,
    natural_utf8=True,
    defaults_json=True,
    size_prefixed=False,
    output_enum_identifiers=True,
)

schema = ark_fbs.Schema.from_fbs_text(
    "namespace t; table A { x:int; } root_type A;",
    options=opts,
    root_type_override="A",
)

Load from .bfbs (serialized schema)

import ark_fbs

schema = ark_fbs.Schema.from_fbs_text("namespace t; table A { x:int; } root_type A;")
bfbs = schema.serialize_schema_bfbs()

schema2 = ark_fbs.Schema.from_bfbs(bfbs)
print(schema2.binary_to_json(schema2.json_to_binary('{"x": 1}')))

API Reference

ark_fbs.Options

Options(...) controls how schemas are parsed and how JSON/text is emitted.

Constructor (keyword-only):

  • Options(*, strict_json: bool = True, natural_utf8: bool = True, defaults_json: bool = True, size_prefixed: bool = False, output_enum_identifiers: bool = True)

Fields (all are bool, same defaults as constructor):

  • strict_json (default True): Require strict JSON input when parsing JSON.
  • natural_utf8 (default True): Emit/interpret UTF-8 in a “natural” way (FlatBuffers option).
  • defaults_json (default True): Include default scalar values in emitted JSON.
  • size_prefixed (default False): Treat binary buffers as size-prefixed.
  • output_enum_identifiers (default True): Output enum identifiers rather than numeric values.

ark_fbs.Schema

Schema wraps a flatbuffers::Parser instance.

Constructors

  • Schema.from_fbs_file(schema_path: str, include_paths: list[str] = [], options: Options = Options(), root_type_override: str = "") -> Schema

    • schema_path: Path to the .fbs file.
    • include_paths: Extra include directories for include "foo.fbs" resolution.
    • options: Parsing/JSON options.
    • root_type_override: If non-empty, forces the root type (overrides root_type in schema).
    • Raises: ValueError if the schema file cannot be loaded, parsing fails, or root_type_override is unknown.
  • Schema.from_fbs_text(schema_text: str, include_paths: list[str] = [], options: Options = Options(), source_filename: str = "", root_type_override: str = "") -> Schema

    • schema_text: The schema content (as text).
    • source_filename: Optional filename used in error messages and for include resolution context.
    • Raises: ValueError on parse errors or unknown root type override.
  • Schema.from_bfbs(bfbs: bytes, options: Options = Options(), root_type_override: str = "") -> Schema

    • bfbs: Serialized schema bytes (.bfbs).
    • Raises: ValueError if deserialization fails or root_type_override is unknown.

Methods

  • Schema.json_to_binary(json: str) -> bytes

    • Parses JSON using the loaded schema and returns the FlatBuffer binary.
    • Raises: ValueError if JSON parsing fails, or if no root type is set.
  • Schema.binary_to_json(data: bytes) -> str

    • Converts a FlatBuffer binary (for the schema's root type) to JSON text.
    • Raises: ValueError if conversion fails, or if no root type is set.
  • Schema.serialize_schema_bfbs() -> bytes

    • Serializes the currently loaded schema into .bfbs bytes.
    • Raises: ValueError if the schema is not initialized.

Root type behavior

Schema.json_to_binary() and Schema.binary_to_json() require a root type. You must either:

  • Provide root_type in the schema (root_type A;), or
  • Pass root_type_override="A" when constructing the Schema.

Wheels / PyPI

CI uses cibuildwheel to produce wheels for multiple CPython versions and architectures. See .github/workflows/wheels.yml.

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

ark_fbs-0.1.5.tar.gz (2.6 MB view details)

Uploaded Source

Built Distributions

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

ark_fbs-0.1.5-cp314-cp314t-win_arm64.whl (301.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

ark_fbs-0.1.5-cp314-cp314t-win_amd64.whl (323.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

ark_fbs-0.1.5-cp314-cp314t-win32.whl (284.9 kB view details)

Uploaded CPython 3.14tWindows x86

ark_fbs-0.1.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (344.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ark_fbs-0.1.5-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl (375.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

ark_fbs-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl (302.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ark_fbs-0.1.5-cp314-cp314t-macosx_10_15_x86_64.whl (330.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

ark_fbs-0.1.5-cp314-cp314-win_arm64.whl (296.3 kB view details)

Uploaded CPython 3.14Windows ARM64

ark_fbs-0.1.5-cp314-cp314-win_amd64.whl (314.2 kB view details)

Uploaded CPython 3.14Windows x86-64

ark_fbs-0.1.5-cp314-cp314-win32.whl (277.6 kB view details)

Uploaded CPython 3.14Windows x86

ark_fbs-0.1.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (342.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ark_fbs-0.1.5-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl (373.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

ark_fbs-0.1.5-cp314-cp314-macosx_11_0_arm64.whl (295.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ark_fbs-0.1.5-cp314-cp314-macosx_10_15_x86_64.whl (325.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ark_fbs-0.1.5-cp313-cp313-win_arm64.whl (287.3 kB view details)

Uploaded CPython 3.13Windows ARM64

ark_fbs-0.1.5-cp313-cp313-win_amd64.whl (304.9 kB view details)

Uploaded CPython 3.13Windows x86-64

ark_fbs-0.1.5-cp313-cp313-win32.whl (270.6 kB view details)

Uploaded CPython 3.13Windows x86

ark_fbs-0.1.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (342.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ark_fbs-0.1.5-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl (374.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

ark_fbs-0.1.5-cp313-cp313-macosx_11_0_arm64.whl (295.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ark_fbs-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl (324.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ark_fbs-0.1.5-cp312-cp312-win_arm64.whl (287.4 kB view details)

Uploaded CPython 3.12Windows ARM64

ark_fbs-0.1.5-cp312-cp312-win_amd64.whl (304.9 kB view details)

Uploaded CPython 3.12Windows x86-64

ark_fbs-0.1.5-cp312-cp312-win32.whl (270.6 kB view details)

Uploaded CPython 3.12Windows x86

ark_fbs-0.1.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (342.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ark_fbs-0.1.5-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl (374.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

ark_fbs-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (295.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ark_fbs-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl (324.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ark_fbs-0.1.5-cp311-cp311-win_arm64.whl (287.8 kB view details)

Uploaded CPython 3.11Windows ARM64

ark_fbs-0.1.5-cp311-cp311-win_amd64.whl (304.0 kB view details)

Uploaded CPython 3.11Windows x86-64

ark_fbs-0.1.5-cp311-cp311-win32.whl (270.2 kB view details)

Uploaded CPython 3.11Windows x86

ark_fbs-0.1.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (341.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ark_fbs-0.1.5-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl (372.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

ark_fbs-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (295.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ark_fbs-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl (324.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ark_fbs-0.1.5-cp310-cp310-win_arm64.whl (287.0 kB view details)

Uploaded CPython 3.10Windows ARM64

ark_fbs-0.1.5-cp310-cp310-win_amd64.whl (303.0 kB view details)

Uploaded CPython 3.10Windows x86-64

ark_fbs-0.1.5-cp310-cp310-win32.whl (269.0 kB view details)

Uploaded CPython 3.10Windows x86

ark_fbs-0.1.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (339.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ark_fbs-0.1.5-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl (372.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

ark_fbs-0.1.5-cp310-cp310-macosx_11_0_arm64.whl (294.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ark_fbs-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl (322.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file ark_fbs-0.1.5.tar.gz.

File metadata

  • Download URL: ark_fbs-0.1.5.tar.gz
  • Upload date:
  • Size: 2.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5.tar.gz
Algorithm Hash digest
SHA256 8ae2dfcb3522ac306125c511a95fd508b2541d29bca2dc2e805579655e754521
MD5 943b09838edc11628085ee30d0981791
BLAKE2b-256 d44a7be8b73d37863c58a9d681ac40b9283d63a2cff94bc5cfcecc0a6ff292a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5.tar.gz:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 301.2 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 0150233014d2608f13356c7bc523b6e3b1929597e41dbdb48967867bd498f7c2
MD5 da860a0f2e012cef0ccf62775d11dccb
BLAKE2b-256 9922a813112d5b746b7257982f035675cd78aa0f58f2fcd48f4c479213274a4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp314-cp314t-win_arm64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 323.0 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ffe013921243c7283e8f713de0b38f2bf16463806327423570550a647cc15bfe
MD5 9ed8407322148d29738678b3e675803b
BLAKE2b-256 458a07a211d60056a5f055046b37cecf7613dedec85696a0b707fb1c9945014f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp314-cp314t-win32.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 284.9 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6fa1f889e9326065e19a2f29d9b326193e6bed882c1b0b872db92164aea5ae78
MD5 d8f0c3d9bf868d64c1dd8432559f9bc0
BLAKE2b-256 73d270679defe5dddd19fd8df7f558a08e708f2c13340aae58ed833de6bbc25e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp314-cp314t-win32.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4dba55e17ae69d4e2a33d1167f9142b46d382ceece4174a976a499561f0ece2e
MD5 ae1cce90f862b85674c922ee70fbdea2
BLAKE2b-256 c1a6ec3c3d08128047dbbf5e9754bc8c507cc8b75a5bca9a96691ee0450bcafa

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5de7b4576bb8f84f1906d8c386fbdaf6ed7338781b9f3a4ecc3dbd1f06cb1a26
MD5 86938191dc3354d906c97b81346476af
BLAKE2b-256 f2984f59fb037e983936a14ba3c2f00e3f6bc69b372691bc839dfda7538c37ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c9a905aa083d9d3f06ec71d22fc5e14b393faf34f4168429d827d5d9f59ce4e
MD5 c17f69861a3b29b75ed06e0ffa5c316e
BLAKE2b-256 566ba5bb025d1aa323c010b2772f8e833a43786e654527846b4051a6870d27b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3b7dc0c14d91a0dc89a33e226aeaa7843ca65225a43e96ece084a2ab2d35bd49
MD5 962fd0fe0be70ec5d6bc6671c1b5a6c3
BLAKE2b-256 69b9ffdf885e690ef40b809e5d0e1e74690cb2ca9236c67fb2b66c827b78f24d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 296.3 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0b961edaa19adc106f70eb835011d90db51b3d61be1b1fbcea596f9a803d47eb
MD5 74fe7bb51f1cb8c24f4097f005cb0eda
BLAKE2b-256 07f6efc926386ed233a0260676d2e901d10f9258f643a26bf1246820ce082fec

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp314-cp314-win_arm64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 314.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 70ef28e7c2649a06db441f08c770335e9fd0d1a900fc337d46701cb37dfa8f64
MD5 67eb09c4f89bd4a4710ce1e6dc2950b9
BLAKE2b-256 7198a39e28be24a8ad056ff6b1f8af0cc9d53998b9e18efc986f97cb94583841

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp314-cp314-win32.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 277.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aab972108ee96de58fc4ca7e571472509e8050066b6c9f9f277ba54325aa03f4
MD5 30f670d0260e57086a1382115d627af2
BLAKE2b-256 7ca276026248ff71ad0f9a6415aec4bf20ca74f9729b88f4d2641728e511cc0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp314-cp314-win32.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b96042e908d2794e1c9f8736fcbd8f4f33ac84da4233231eebd4a1a5034a89b3
MD5 50d8f49b6e0bfc868eb7322914f50c7f
BLAKE2b-256 fa1ec7ea2d7b2b19964394b1b181bada0450ca3e333cde9923b4f774db45f2ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 26fa2904b5a2e89966e4c3274a4d11e8f0a2037ce3cc588db7c79622e80d8f0b
MD5 0f8d24053bc83f969e68fab66f517135
BLAKE2b-256 5edbb7d8674bfef4a0581c175d0842ac197e7e608d1b4e1565b1fc5b777dbfa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 273259edca9bd320cd0480ff034cdba9df469242ab0610c06ac398184815139f
MD5 38f802a350163edf3166ba22c523a6da
BLAKE2b-256 fd27d5a6c97e0c8e752db6ef632451d8568facdd8c0968395b898c3926fbba28

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 886f7501541eebc2f774c8ff94807a09aa712a8031f1f82ab653cbd23442fbf4
MD5 52637b32c365c7ed607b622597869114
BLAKE2b-256 ce5e279668f7d93bed1a282156b7d1ccf61386ef83e05c5cdda648cfee45cccd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 287.3 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8af9a54ff7da73706e14f6b8b13a284d5c78c557e3c4688b000bde2c9f474456
MD5 963d4c3a451301b7a766534607ad25c5
BLAKE2b-256 b11198768994f3c7b5598c427d1f0cc78d389ee2a0e78269ad938ac21edf6005

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp313-cp313-win_arm64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 304.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 429c1f8ff86be801004e10a71b51834c8a8d278c22c33bf5da0c5b602f4b45e4
MD5 9a01354ab615afaf6e36e9aa70821d46
BLAKE2b-256 9f9e8a0fed882e39e9c13d54781b6721a9ac1368715e5f014edd29cd25612027

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 270.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 83160c7cf73d5c455d48f2a5d848314c4e574571263b4d1520abf77ed5c4c653
MD5 3f79c56c694fbb31c6e84d47f9a25f42
BLAKE2b-256 740df9da5df19ed553696abe003c678f07fe389853e131de37b20166740f25f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp313-cp313-win32.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4e64176c0f8d778cde2265d2e1ea3e71fee2fee994b8e2247a657a9bd688155
MD5 d350fda9d40b9c54e845bbe46ef663ea
BLAKE2b-256 22289b9d91de643445cda0a077556d71e76f7669349617d1f66bf9a16423b411

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 38df038fd5c4ee568ee0978736b5dcdd7b7fc4a384bcecb57f074462149911a0
MD5 4d5d1754d221a00331d75578e95ee24d
BLAKE2b-256 d2b2d98f8996dc82e29661ccb659947b9f96ef8034a96e35cb486c0c699da494

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4784fdf02f135365b3c79832a0b487f3d000050d0391bc80d2b4ccb2a59a67f
MD5 3b65570468aac049ac88310ba0ea8dd6
BLAKE2b-256 1190a8c44feab0992ef021f9bbf3a95263b17c23f60523278897b911f31dd68d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e8af789ea3a9609a260393ff77389fe7189d09963eefdb6b91123c7224be0abc
MD5 98904deb3900291a0b80519e31f08205
BLAKE2b-256 237c1c51aa35c1eb04a1dd6f68e722cb4ce496dad42d388035872008eed1331a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 287.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 70445800c9be54c51559ed4d024f7e87745560840a4aa438b240b1aae636b49c
MD5 8c0237897c1110c9b4fe9ddbad701a6e
BLAKE2b-256 eb8a2b5f80a830c5525269d637aa96184c1f38ea6837948fcdcd7b7fcf7d61de

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp312-cp312-win_arm64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 304.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dd5f07a1bd8a191f00059d09d4728a40463bec33ac2ebb75433c6aebc2df6d09
MD5 175064ff1c2879cad5c5b1e854ff9dcb
BLAKE2b-256 b5c193d5c0820a14027d516fb7227d8bd4fba4ed7442bfd468cbff3b1c4ffd87

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 270.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ebe9da588f8c936237226cf1cf330dd437c0fba2ea5930c8278091e3176340ef
MD5 4102c07286b7dfc1236cb485051f0186
BLAKE2b-256 5853d47d56d4defba680c3bc1b83c08a73da31a6de22992e9a61d7481cfc7943

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp312-cp312-win32.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e764ad51782366fe88249427f3af64d22059da3eb1356bda6f15fb80383aa2fb
MD5 400bf687c96beef87bd2d4b33b27339b
BLAKE2b-256 08100a5b9f32761eac998bb5b2256e5ef88dd52358b2073c486a76f84250aa46

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a2798427a7235494d1316174c13d72dfadaacb910a86e53d593f5e534c234c1e
MD5 8ffd29071c49ecc37bf911fa466315fc
BLAKE2b-256 94b834015c6918ceb63cf78e366eee09770a519d245539916d873b2f033bb659

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9709451b1bed5f6dcc67aec4ed6550907367cdb29e874925bfa8e57613e69149
MD5 ab1a336e38427f480f25e9aaca2f2312
BLAKE2b-256 83d4f3ebfc984f952d240b722edc6a0cfdad9773ba5ee56e74ba3d015209695a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 702da1e547646a8e008d9526efe935ab693f9035b23cef3314dc4010c9aaaed5
MD5 105c27cf1df25c07def430ff69f35800
BLAKE2b-256 10be43dc2bf8e3980de07cd97946cc554721e88d6f543c1c6e862ef2f856cdc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 287.8 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 eabfd97deb78780e4ac7dc40f5de86037643bad90f5e0ac9f6c1a6070bcd4f89
MD5 4c0fb88a6a78b35e346e922ef61954f5
BLAKE2b-256 c7fb6a44a8692d1bfb6ffb94c8e15a002f2c3d2f4b93610c6177d439d222bcad

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp311-cp311-win_arm64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 304.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 94f1ef7822a56c3203aee2f9c221464d4fca34537f54ac23b867183d78fd6e69
MD5 54040c09bc1762d8fba51c35829a3a3c
BLAKE2b-256 506c33118453ed5439fadb0debd4930240f5e04347e8916724ecfdc4cb5f76af

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 270.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 af880c53809f245b69c198f686b6e8c213368224a6407ed00c1dc0b89c14719b
MD5 1608b8b6e60c17fee39a15b479d61c04
BLAKE2b-256 00270d3cc0034a8a915f6d44dfab56846c7e89ae5d7f91ba83092765a3f2de88

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp311-cp311-win32.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b0ce7fdf7c05b005a31f77e8674bd98f954c4c265328d10e0a49f15fd7541982
MD5 d5e9647a19629ded7ac029fe820f2dba
BLAKE2b-256 055b862508282e94d3d268b967d974caeb30a7b96465623168ce30eba341cede

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6dd1044aa2c6930a8430fab04f37586ec819e9eba1020bc1b52300ad52d3e9f0
MD5 2b0e6c7ab32964d88a5b099ae47c0bd0
BLAKE2b-256 c1037953ac34887cb50f60b52da30d1c8d8981b5cb1bd8d17d372ff7b7dc7d57

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b12edb690195fb477bfeb47a3b18ffc6856f91226227563bcfe4b729d12e7d1
MD5 645df44fda534a48d94cc1f8cd00e3f4
BLAKE2b-256 8fdd1f58df8a7db9f727991a4db450da420178e0312d0c1effde08c15527ae10

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a09292422f8da0886d981f39a95f1209b5fdcfe69353989bb233017f935f525
MD5 2a71ac3ee99969f7ff1938fb85ae7595
BLAKE2b-256 782d534bdff2b41d0686e1d4d24f11124b9f3e7ea4d8049be582bf9007bb2a61

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 287.0 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 3e0e749750633372a93a24cdd53cac49face21f2fea792e33a7a15908b69ad64
MD5 610b96e08822eaf92e1b60d08de71347
BLAKE2b-256 af57e59a614449e372406f2ee0b13250c90c219e7b06b28d721c52c8280b8cf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp310-cp310-win_arm64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 303.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d604ea735ce5beb95dda2a4a1dfd98c0e2ecd7c5b4b36d937c32bcd5879967a1
MD5 730526d9a96e18551216a57fdc590f85
BLAKE2b-256 91b319c3960a4577bc3666538434ec6a3d0c0a7386d86dcfa27d5dffdb3d3418

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: ark_fbs-0.1.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 269.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ark_fbs-0.1.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0235f8e33bc4f7d189c5c06d221343a6eb7499b627f02686c88392a86d9ebd73
MD5 fd8d02efe0c62aaa0e6d2bdfada7267d
BLAKE2b-256 6418f3bbeaab53eaa9836837361fb8657659869f439cfee99043df0202735f69

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp310-cp310-win32.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5d9764c01ccfb08275566bce515aeaf81505dafcd8f355ccb0c19e95988b8f0
MD5 3845ba042e605f22a0be01c7f9b58437
BLAKE2b-256 e8c05a7b770133c718b08c7dfe89f748f7fc2c7321706c4c904cd9a7c58973c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 419bd865dc9bf027c976534bd38a5ccdfe63472a469a6253b19667ee86c20979
MD5 3af998f23a3ae1e2a9b6ae50e9a88bb3
BLAKE2b-256 ed6ddb8ac875e163de19e6cb8ed1e54288df1313d127d614601c59320b1126a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dc2e97755516fe3944e304acb1c36f0f07db51d28230bd6c9e068105ecca9be
MD5 fd878afd5f51616101c4bbfb9ff46b73
BLAKE2b-256 c5d690576d587228dfc8263a9985ae668573a4fecc868214d6907791edd343f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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

File details

Details for the file ark_fbs-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8339396e3932e490d436c73453886b19fd67a6f4cb730f7533325351c2661370
MD5 c7c49649313530834dcb7d49c186d1fa
BLAKE2b-256 33c31b32a09789d3207052836d1e72b06f567c8f6de2e9e06d7fe7614a7fe20b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on StarHeartHunt/ArkFBS

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