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.4.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.4-cp314-cp314t-win_arm64.whl (300.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

ark_fbs-0.1.4-cp314-cp314t-win_amd64.whl (322.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

ark_fbs-0.1.4-cp314-cp314t-win32.whl (284.5 kB view details)

Uploaded CPython 3.14tWindows x86

ark_fbs-0.1.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (343.2 kB view details)

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

ark_fbs-0.1.4-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl (374.6 kB view details)

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

ark_fbs-0.1.4-cp314-cp314t-macosx_11_0_arm64.whl (301.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ark_fbs-0.1.4-cp314-cp314t-macosx_10_15_x86_64.whl (329.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

ark_fbs-0.1.4-cp314-cp314-win_arm64.whl (295.9 kB view details)

Uploaded CPython 3.14Windows ARM64

ark_fbs-0.1.4-cp314-cp314-win_amd64.whl (313.7 kB view details)

Uploaded CPython 3.14Windows x86-64

ark_fbs-0.1.4-cp314-cp314-win32.whl (277.2 kB view details)

Uploaded CPython 3.14Windows x86

ark_fbs-0.1.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (341.6 kB view details)

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

ark_fbs-0.1.4-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl (372.8 kB view details)

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

ark_fbs-0.1.4-cp314-cp314-macosx_11_0_arm64.whl (294.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ark_fbs-0.1.4-cp314-cp314-macosx_10_15_x86_64.whl (324.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ark_fbs-0.1.4-cp313-cp313-win_arm64.whl (286.8 kB view details)

Uploaded CPython 3.13Windows ARM64

ark_fbs-0.1.4-cp313-cp313-win_amd64.whl (304.5 kB view details)

Uploaded CPython 3.13Windows x86-64

ark_fbs-0.1.4-cp313-cp313-win32.whl (270.2 kB view details)

Uploaded CPython 3.13Windows x86

ark_fbs-0.1.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (341.3 kB view details)

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

ark_fbs-0.1.4-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl (373.0 kB view details)

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

ark_fbs-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (294.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ark_fbs-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl (323.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ark_fbs-0.1.4-cp312-cp312-win_arm64.whl (286.9 kB view details)

Uploaded CPython 3.12Windows ARM64

ark_fbs-0.1.4-cp312-cp312-win_amd64.whl (304.5 kB view details)

Uploaded CPython 3.12Windows x86-64

ark_fbs-0.1.4-cp312-cp312-win32.whl (270.2 kB view details)

Uploaded CPython 3.12Windows x86

ark_fbs-0.1.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (341.4 kB view details)

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

ark_fbs-0.1.4-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl (373.2 kB view details)

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

ark_fbs-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (294.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ark_fbs-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl (323.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ark_fbs-0.1.4-cp311-cp311-win_arm64.whl (287.3 kB view details)

Uploaded CPython 3.11Windows ARM64

ark_fbs-0.1.4-cp311-cp311-win_amd64.whl (303.5 kB view details)

Uploaded CPython 3.11Windows x86-64

ark_fbs-0.1.4-cp311-cp311-win32.whl (269.7 kB view details)

Uploaded CPython 3.11Windows x86

ark_fbs-0.1.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (340.5 kB view details)

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

ark_fbs-0.1.4-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl (371.4 kB view details)

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

ark_fbs-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (294.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ark_fbs-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl (323.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ark_fbs-0.1.4-cp310-cp310-win_arm64.whl (286.4 kB view details)

Uploaded CPython 3.10Windows ARM64

ark_fbs-0.1.4-cp310-cp310-win_amd64.whl (302.7 kB view details)

Uploaded CPython 3.10Windows x86-64

ark_fbs-0.1.4-cp310-cp310-win32.whl (268.6 kB view details)

Uploaded CPython 3.10Windows x86

ark_fbs-0.1.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (338.6 kB view details)

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

ark_fbs-0.1.4-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl (371.5 kB view details)

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

ark_fbs-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (293.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ark_fbs-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl (321.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: ark_fbs-0.1.4.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.4.tar.gz
Algorithm Hash digest
SHA256 3b51e37611b27007da3c2871b9be46c01b67d533c77a15e9342080bea8cb4b30
MD5 64f8200448eef8e447a3685af2923ea9
BLAKE2b-256 83a1cb493b138e0371736f82719e95f1ec8069683cfde896eee0ae65c84d2d15

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4.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.4-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 300.8 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.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c33745a81f1241f9f259b6219e2c9e6928a76bece9ed5f7c0f510129a3934fbe
MD5 ecff487534f0e893d6e412c545712981
BLAKE2b-256 3d235cdd9a4ba127bceda0267a6ac27bd52be2eb31cb605c28c13f7b2bdd4506

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 322.7 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.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d14237a2aebec64ad11e0aa19e5ed15fe09906a8b9713ffad5de352c5a5e09a3
MD5 27acb7bd9681eb9585c0a49911386826
BLAKE2b-256 2af3a59d71d7a18bd9769c758f71f5d3c0cf738887c83e7b429322822432a941

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp314-cp314t-win32.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 284.5 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.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8f1cbf1549d2c572c93a3f309c230d84089bb08bf36aef2bf7b947ca40ffbf00
MD5 2aef1d9f1204a6aa6fbf61701c2b99a9
BLAKE2b-256 3e3f4d327af58f6e1d86a77a7ab4fc85102046f773c1b3b2b60c1c0e79cac29b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 503dd3e9bce0de989c1f8d2334799c2b45c3d75b7ffa4240f405831944f6c0ba
MD5 5705389cb14bcae7d7f10725b0547782
BLAKE2b-256 c14ceeaf6f6014760131547a7f99cdd89cd6a24e3c2aa4031c985329bfe1cda8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 dc5b87d3a72c3b1c312c3440b5b8c9f749c1f13a41f7ebf46478cd4b0cf08440
MD5 debd5c4997a07eca84fe41d198a76ce8
BLAKE2b-256 2e4e630b5b75695f612bc4a5bf956131c509e6a4179c8df0a68abfd1ed47f0eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e49e0392af2686566f4297d3ba5285422c2193d64b3a5f35c6d104cf450dab6
MD5 e7d63c17a328e499347a4f04e2e98d8e
BLAKE2b-256 831b4185187d1a568698ca92a9714e48bc7436913bbe7f43131d8e40d263c103

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b5993468d828a7198eb2e211a7e1dc13ad71b1ff6b110744857387cacbe92172
MD5 466aeb1b23d2684473cccdf6267693f7
BLAKE2b-256 c9a18b9be351c4c6827f6a0576352419c62c887ec4d98ef24ef9c724a5a72fbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 295.9 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.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 28fd32b5b9095c13863d56174f8c25d4911b833f97c4f9fa291aad0bed4b0aa4
MD5 80d5b8496d48a636d57edd913466d4f9
BLAKE2b-256 fc04e6b41420837d858a49fb62d9eed05e79049265207ac1100a3f208b81d672

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 313.7 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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 874efe43189c4d6164e42ef467b8ab1aad474693cf4a8632472227c8101e4d86
MD5 c420398d965c291a8ddeb0eb3ba4ef4f
BLAKE2b-256 b8040f2346b064619804eab39a6dd9810541c25d78e671931c765d2589645342

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp314-cp314-win32.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 277.2 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.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9de6fecbdcb6ad5fc2bb5c83c5723b414ac74afc18d2fd830af012a8b680b795
MD5 c02bb449b9315759a1efa5b78b319f8f
BLAKE2b-256 80be0a74554fdceefed71703af12fe2f2674691d49749aafaaf11192358e9865

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecf997044e87b518aca3c53c4fd9d738bce87daae688e903a0a32d983d0d2958
MD5 080a4c8f3d37cc632abda5f373c12d24
BLAKE2b-256 dece6f396e038f612d21ab048cb6f528c6f33a79854ce11755e17c33574024c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d51b8fea5dbb186448fadb0d5971e9843abbc377d69da59fb7eaab1990aa2f35
MD5 d93cb42d6d490eceb1fc3c31fa8740fc
BLAKE2b-256 314704cfa6882b069bfc0b6b9e45b3ff77ce72ef9bdfc8e0ebabb668ef098017

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d47e0076b26078f3e5dc644ab7243bc6509a6fafa33235aab26523fff9222d0f
MD5 1ee5c37de761919aae5b0609e059bcc1
BLAKE2b-256 df4344b32a006f87caae757ad75cb127f3f18819b3fca3f7894650ceb208857c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 710ff5b268e64261c671bfe5162de59ced8aad8717610130ed2a82b16a0bd9ed
MD5 a542f9aad112f3736954737779443581
BLAKE2b-256 9dccfc4baf20602f459713301e4e79baefc907007459721c2d024fed0e028ae3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 286.8 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.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f08b9bb608d2e78bdb90c1230c59b46a175c24d3e57563b5a542ceebb1bba3d2
MD5 b96de20abc1c1b3b5c86a849874fff76
BLAKE2b-256 884c2473f4065fa59bd01518b379f9082891ba45a07a53c0e4f25e8da996aa47

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 304.5 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 43057bcfbc0b7daacc6c9810843c812bdcd3b52cc80fcbf02ce2cbcb97c6c452
MD5 3752806501b3edb2cf936825b484864f
BLAKE2b-256 5f4ce56ef65cd4e4a6c839e2266b02d82561796bebc2b4e53026949d7d5be126

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 270.2 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1fbcfe7a268fd942976cd74e844141a703b88c9dc2fa1fdb95643f2d84204edc
MD5 a07baed987874646596060ba42ed2d56
BLAKE2b-256 43a2f73b708666284f962b54b4db760a05403f96ea8c9b42c8ebac82521eb436

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50cf8f6242b1411d98a471e8cd2ab394412a4ffe161b43ad52400069ad0cae49
MD5 f9e98578fd585844521003d9e2d115f5
BLAKE2b-256 21104d94bcd172475e3a6fd39aab2df80806e6197e7018d2d0fa58dad986f026

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 26fc348a0d2e01914ccdf6832194c87fa34fd005e7b0feadff2a15002034f551
MD5 0aaeab7d87c3ee75448f145ffb005ff0
BLAKE2b-256 10416519aa6988c02e8e33cbc9c73af08b630851ed437b4d5b9d73d487e0fd81

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76d41d9a5d02a18ba1343439870667bddfe26a2b7ba40a11228a543ea2b0f919
MD5 cc32e7224a12de52fe2ed24190ae6b3a
BLAKE2b-256 921132710d715a3bc18074f205700da382e3601944945456951db1fdedc9460d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 018a338a234df0219b7ca4b5f7e5e5e234be5af5542aaa476f2791599bd41489
MD5 c6e29fa7bf4f475143d3c9e9657e8cdc
BLAKE2b-256 864d50edf2ba3dd3940a75cdc3299e42ebbd8eea3c8c193a4faabea38d18f573

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 286.9 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.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 857fc5f3f538e618fe048806b8cc7133d0ffd894fcce651589febe7c4364e0bd
MD5 1a11b918faf03e13722899b6cf4fdbd3
BLAKE2b-256 7710e744ac7575fb45fd7c8368a2a464fd8d573daba0f3680ce1aca43f75b5aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 304.5 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 79ed1c55d907f6c6e167aab53f5841d4382834ecf8537c8152964fe8f9128883
MD5 3b65ad4b9ef91cb74bef8603e2136ac4
BLAKE2b-256 276e71eedbaf8c27fd31bb0e09105e0ff2553df9006e17e3dd69788635d5f10b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 270.2 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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 da4d6f45c8c1f0e7b99c8dd9b25425d4b473a7729364decb19ffee31aca2db52
MD5 27de1b7a9586c8b07a27eae154be4392
BLAKE2b-256 c28cbce543da8f69b2ecba00dba1ae16ebe577c06adb83b1b6291b2b8d6dc95a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e43cfb045731cc1576f89f2b014ce70653bc5bd0aa6720a6b3e8e663b751c5ba
MD5 c0d19f91f88220a4323b949a71d6a0cd
BLAKE2b-256 b107bb3a25f52491aa8aef2ee47edac9e102372fef336ded93207f6e8f6fffe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 68d845c4e889f356f34b12ce9ab6c03dbaa79fc3f34b593ff7663e4fbbc01e02
MD5 13ce8425083e71201645d2dd8982c86b
BLAKE2b-256 f552fad88512994ad3b523960adcb20111a2ca0aceb4e32c10a4e8b22fc49831

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9253a202e9cd2338dbb8a70d51c2bf5a4071f085f2bb252879e9cf3bb5c438f
MD5 5306589c7967d785d5c4a025d8a290a2
BLAKE2b-256 c664dea87cabb0a4d6ed46bbef86b679106b7c40b838c2ebb8f4e719afee4675

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5832e1952d3629997f7e87a57f60ece6af5cdd1d89da1d7b1df24b5a7843cdb0
MD5 3eff71d9d23bfcbf3fa94c71ce14f8b0
BLAKE2b-256 a441ff273acec8730d55af9fb8431ab22966dc5d1e0e056b474a6e33944ca564

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 287.3 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.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0bf539c2b950098b6feefc5e2c5ba30d7d959ae9f4803b067c7328c9f85c1b72
MD5 5cbfecc0707a7abb0cf379efb80bbd19
BLAKE2b-256 46878ef4c42f0d18536ca0426bf88d3e3e865dc2ce6f8e0938ff9806d916c530

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 303.5 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d58d83f5ca5b991c44bfd222afc3cee37a09164fd2a1700ad226709ac8c4e657
MD5 09e1ec27efb32cce0d01a80276750dd6
BLAKE2b-256 dde79e44e4ad118d29a73abe2882e8f6c1509ac821e57cac1d17e20ee9c01a07

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 269.7 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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 35efaac31d03cc71712570fefb87b63cec5f7d1bf80a5a4e8c1cc3f90aa56ef5
MD5 fff24ef14519c1c02be54d7467237572
BLAKE2b-256 189831104e893eaa1e5165c964dc2311c07186bf1e97a090abb865bce45a3cda

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eeed2523f418f3657650915da60304e415fccfa215617549ec812d6e92eb46c6
MD5 b9e3a7f93e8dff7361dc68d9bb5223f3
BLAKE2b-256 886695faaf3befb3cd46af9e8342d41aa6e5e3a7d9666e7f32a1aa1f1831348e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a767c5ba26ac6128d2a44a99d2455c43cd01d87bb5837eb3e04d7a02261cda94
MD5 d01de1ea8f2e17e7d6b6d876b1ef2184
BLAKE2b-256 cbac3c45ddc510a0c3d501c04239e115831ba1b57d6c65d142aa3194f68ccd33

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46b4da0c0c41f42f35bd246351403d15e19e112b1167c01905b817b935f62d7b
MD5 45f0589f700f69f972203bf0210cd0c0
BLAKE2b-256 0627cf338588e29be00a9bec820b74bafe9ccd0ba0cfcc193291dddc572a0597

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0284f486c5ba0c407686769562a00e3e98cbed1460b34fdd24e3af9656e71aea
MD5 db90cd2201488583111789258af88e50
BLAKE2b-256 6bb47460f60e918126dfb107abbdbee75794b4bf41256e5ee163a579477db9e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 286.4 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.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e5f67408f8d2f2d514a18f716704a8e4e565ccb25825958cae1ad144ca9af4ec
MD5 7902c89589308220d9c0d29f2cc1055c
BLAKE2b-256 43462037638f2884d4caa5f94d43511b5157a95dc4cc1cd81ba0023c20fc68fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 302.7 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6885c0d90c71fc175b745d7834b88cf670dcdcbe0d3c929757dc13fa1787048
MD5 1e9a439bc04b8f5731e6f1691925d32c
BLAKE2b-256 838f32eb652ed13f172764311f734420afd93903334979db15edda8022709d3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: ark_fbs-0.1.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 268.6 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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 37400dc45fb3a2a70afe7645660e04d0d62a152aadec47c1aab5f08f7bcf6268
MD5 7066f1c2c142474135130475154c0300
BLAKE2b-256 7e140267f32a75029f5b2de0a36c9bd0734acfc3c480f0f70038d0566be0ac6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b0b553739df3805a8be140c21d4d3015fcb592f384c48565b53523a89e6aed9a
MD5 66c301c63875b60fdb695a442c1819ef
BLAKE2b-256 6ebc0af20dcc1c96620acb62ea5c350d87518b6c3680885614f249c251c5ac69

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c46ca8efaf2f27cbbc5131cee093b72de80592db47bb27865b02303d31257d69
MD5 91006c3b67fb134afef64eeb9174165f
BLAKE2b-256 89c2e19e3ac146e458c6be68cf5e4b393659ecfe9fbab06ba4c8e8a89b3132c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70eceb48436da10bb6dd78d164612c33b7b6074e2a11c54e8d43f7e2980baa62
MD5 3a3d43ec6d8f45fd44156b88fd70db82
BLAKE2b-256 0061a1cd6fde37023c290bd15b8f6dd397d9ea49cb7fad48b0774538462dff19

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ark_fbs-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e161fc2c6f6d684f9b3e20dee5ccd817c20a45cbebab214f1b07fe921168ce5
MD5 3c9c0b2baea362e1e6370133170d917b
BLAKE2b-256 334d6262aca5305272c27cf7b55540422caa0ddd02cd3dd597b4f983be8d82e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ark_fbs-0.1.4-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