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()
opts.strict_json = True
opts.defaults_json = True
opts.size_prefixed = False

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.

Fields (all are bool):

  • 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.3.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.3-cp314-cp314t-win_arm64.whl (300.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

ark_fbs-0.1.3-cp314-cp314t-win_amd64.whl (321.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

ark_fbs-0.1.3-cp314-cp314t-win32.whl (283.7 kB view details)

Uploaded CPython 3.14tWindows x86

ark_fbs-0.1.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (341.3 kB view details)

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

ark_fbs-0.1.3-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl (373.0 kB view details)

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

ark_fbs-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl (299.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ark_fbs-0.1.3-cp314-cp314t-macosx_10_15_x86_64.whl (327.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

ark_fbs-0.1.3-cp314-cp314-win_arm64.whl (295.2 kB view details)

Uploaded CPython 3.14Windows ARM64

ark_fbs-0.1.3-cp314-cp314-win_amd64.whl (312.7 kB view details)

Uploaded CPython 3.14Windows x86-64

ark_fbs-0.1.3-cp314-cp314-win32.whl (276.4 kB view details)

Uploaded CPython 3.14Windows x86

ark_fbs-0.1.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (339.8 kB view details)

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

ark_fbs-0.1.3-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl (371.6 kB view details)

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

ark_fbs-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (293.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ark_fbs-0.1.3-cp314-cp314-macosx_10_15_x86_64.whl (322.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ark_fbs-0.1.3-cp313-cp313-win_arm64.whl (286.1 kB view details)

Uploaded CPython 3.13Windows ARM64

ark_fbs-0.1.3-cp313-cp313-win_amd64.whl (303.5 kB view details)

Uploaded CPython 3.13Windows x86-64

ark_fbs-0.1.3-cp313-cp313-win32.whl (269.5 kB view details)

Uploaded CPython 3.13Windows x86

ark_fbs-0.1.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (339.6 kB view details)

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

ark_fbs-0.1.3-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl (371.7 kB view details)

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

ark_fbs-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (293.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ark_fbs-0.1.3-cp313-cp313-macosx_10_13_x86_64.whl (322.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ark_fbs-0.1.3-cp312-cp312-win_arm64.whl (286.2 kB view details)

Uploaded CPython 3.12Windows ARM64

ark_fbs-0.1.3-cp312-cp312-win_amd64.whl (303.6 kB view details)

Uploaded CPython 3.12Windows x86-64

ark_fbs-0.1.3-cp312-cp312-win32.whl (269.5 kB view details)

Uploaded CPython 3.12Windows x86

ark_fbs-0.1.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (339.7 kB view details)

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

ark_fbs-0.1.3-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl (371.8 kB view details)

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

ark_fbs-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (293.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ark_fbs-0.1.3-cp312-cp312-macosx_10_13_x86_64.whl (322.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ark_fbs-0.1.3-cp311-cp311-win_arm64.whl (286.4 kB view details)

Uploaded CPython 3.11Windows ARM64

ark_fbs-0.1.3-cp311-cp311-win_amd64.whl (302.6 kB view details)

Uploaded CPython 3.11Windows x86-64

ark_fbs-0.1.3-cp311-cp311-win32.whl (269.0 kB view details)

Uploaded CPython 3.11Windows x86

ark_fbs-0.1.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (338.9 kB view details)

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

ark_fbs-0.1.3-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl (369.9 kB view details)

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

ark_fbs-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (292.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ark_fbs-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl (321.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ark_fbs-0.1.3-cp310-cp310-win_arm64.whl (285.8 kB view details)

Uploaded CPython 3.10Windows ARM64

ark_fbs-0.1.3-cp310-cp310-win_amd64.whl (301.8 kB view details)

Uploaded CPython 3.10Windows x86-64

ark_fbs-0.1.3-cp310-cp310-win32.whl (267.9 kB view details)

Uploaded CPython 3.10Windows x86

ark_fbs-0.1.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (337.4 kB view details)

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

ark_fbs-0.1.3-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl (370.0 kB view details)

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

ark_fbs-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (291.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ark_fbs-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl (319.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: ark_fbs-0.1.3.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.3.tar.gz
Algorithm Hash digest
SHA256 77cfe4fa659f775c075af50491bc700b93efff345ea97300f1b09d756c27d8ef
MD5 a0f2c5666f995106ddbfdf101d13adba
BLAKE2b-256 c754cf802a13b30d264aba08a2ca8f6be7ca24722dafffbf8a0b49b005a229a6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 300.0 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.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9ae7b999e9e992e24914051d50afbc59676b31383de27e554c953c1344a94573
MD5 e8c7e6e42b3d40f330e552e6f2be723e
BLAKE2b-256 be98f23536753ac47a15606f742464722e94045457ceb941ea8052c76f3ad387

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 321.9 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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 64a9da7370f4fde78ca0af5f738d04cd2a7db0e3ee3340562e1ed41f7da1c77b
MD5 05969fad1e53b515460631feed93c856
BLAKE2b-256 b5101b164292cb751faf5d7091ba7856f2af8e6d5c03db411813f291cfb48b88

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 283.7 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.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6b4f347d629bf17f7b57d99767c2e44cac9c36109301438a10cc2a110134b590
MD5 b607d285fac7bd6f966693ad37468bbf
BLAKE2b-256 513bdfca972e39492d89324817313caa708c29f2f9e660f11ec84c8ea0cf01ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 062f1ebdd45db3d809dcec908920a82ef10d9461f98eeef2470fd5ddf60267e3
MD5 e04fca960e737d80a28c2940a0116dc9
BLAKE2b-256 052df8a6db23c3e504bfa60e9a888759e4c4a2fc9968aebb25149330c99ca45a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 adc59b1dcf01d151c49a3e9c12ca151b9cd4ee9cdf72b0770fad33d3779b602f
MD5 e2f002d3fb21e845fa5237f58eeb8ca9
BLAKE2b-256 c4c674868de6e33f61d260f1e8c3e4403dcd290ebbac2d3aa6c1e8aa7ee49e2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a66b769e098bb443790ac26e856c694abd88cc483fb407cbed97eb466ed5ae0
MD5 674a6cad0507c3301c8843acc4c8d6de
BLAKE2b-256 49ba0dfd884db601efd1dfb65bf29cf8978c82b5ce5cc406aad6a4c4967ba6f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a237fcac9d6a1c63b1eec525584d345fd715b2a62d3208e461e939a265c5c368
MD5 82cabad6c385034ef7d488a7834b7ef0
BLAKE2b-256 ea96de94a6db8942f93909f7858786a92e8fca82939f116ffdebc909b984de20

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 295.2 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.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 37dd9c1df6aa7c9a1e5b5d93fe3471db39e0336acff81539a9c8becfe7c6210d
MD5 b02726ce7417a735d89b448906d34d0b
BLAKE2b-256 7816c81030817407bb961652b92c838b44c81920db5ec373530b0c3de1aa702d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 312.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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 14be99aed2f0ee0168a6d28fcd6d4135b25c3b7dca53346d7a3f90c31d1ecd70
MD5 b30cb9ad71e607cbc291cdfe483c6c75
BLAKE2b-256 dafb4e61c42d9464b070b25b08dccd90b367f2bfff3e84c51cf3e94c65d5c07f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 276.4 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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 edc2889d9c7ce19dd02e725de9177554d6bcc5f523c864a068b503c0f79a3b94
MD5 3debbf1bb5ae2e1aa0e00ed0fe6d1196
BLAKE2b-256 95588556415e2adc42b355eecfd12d57913923260ce75ce59f95476cb124bd4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 faea54defb6b86394d70475dd586177ca25e1f637c726b6e9ab6ac73d8733001
MD5 8d408a0ef7dd60c7ac613ff2a243025a
BLAKE2b-256 e13eee1c4ee1246c0c9dea008a8b9c1d8823c9212f311d3529533520cd506ddf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2c2c7b320540149d81a2d19af0c183aa95f5dcae40c7c6c972b26f54a8742362
MD5 1fa7e203568494b53b77aa039d0d2efd
BLAKE2b-256 967768dcfaa4820737c502bb4505dc387bab4f6b737c4c0bbb91acebb0b60aa9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b5593b62da722691dd4eb84d45b950d3b766bb5ad8e191e986b607c322b91f5
MD5 0e5d9fdf6d7c051af72252c3e6d4fa5b
BLAKE2b-256 52a514677b9c7e6e5a33ae70943778fa619452d416448cfa9eb311977db820f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c1e8ec3905aebf9507d17ef102ab15bf1d8086cd031d1830f6d08b8941a2624c
MD5 bed1364a50fb885208fc2861a76572ff
BLAKE2b-256 ab160ef3bfb1f35c2753d8080cea55847d378bd85814282363253c93cf47b482

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 286.1 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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 55710ceec20d6e8d3d7eddc57915183ee97f343d9aebd9e65cd326b8d69233bf
MD5 ea64873aecfb3660a81676cdf850d396
BLAKE2b-256 52a9f607a27329331c1b9216b6d485c1f9b39f0f328e76aef5ae39b08ad6b6b7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 303.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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9d9e630b85a43a3d987d441b39b0cd8017aa0e796ab89feeeb88489b33c73fc9
MD5 f48c244c4f6d484cdfa0ce6db2f3f18c
BLAKE2b-256 b1918ae33eeefd873d8ba95471d5fb61e8dc74e8614ceff5bebc0aa1a9aa025c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 269.5 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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ec0753c31efda19905847ce53375539d8a0579633414d651ffc32cd6594c8d6a
MD5 1c64de28527a693d079f23cc458a71c2
BLAKE2b-256 cfaedcbb46014f728f888aa1b37d7123d84eb38f8c950ef170f41922ee7f6f1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 526fd8ee48261aeeb4ac5416e859c2c18702bc5f1ce05d38c14e23eb25d5f404
MD5 97e63a035a9322e69f69038b55f75245
BLAKE2b-256 a1e0f8370a4148409b2466cd5a66f0100baad2ea9fbd5da479c3d77aa1cd8bfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 148943c800fb474e6be166f54b18850a06878691145570ecd53f77f81cea3e8b
MD5 9ca69527fd6e8718218d3a90675bd8fd
BLAKE2b-256 ca92eff5f40216cd0f24f0f3dc74dfb4d40bdb7db779023cbffd56a3aa88800d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 566acad8768743f10b33f9728f9c6db3bfa3d6707fc08c9e83c6d20c3b9a3f22
MD5 41d3a6e005ba87e98e746404aee051e6
BLAKE2b-256 65fcc4ff33285a53f387560ddf4a352fd5eb0d6ce820010d0e2b6aee71c2f921

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 072a3a2dfcf941279abdcb316e1caf901f20c473afa2d15fda4fadab7219f1f6
MD5 c131c33da1b1a41207fa9cd2efa0a1fb
BLAKE2b-256 5922fa1c3898274fff84ec3261645e576543bd29d4692aad610179cd239291e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 286.2 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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c406e0b7cfafda3e5220d69d35457864ac1a6131418a4b8485d241eff4eb06ac
MD5 801a06489510cf0c45a7edf1ff5a74b2
BLAKE2b-256 68615e1732f00c934b6386c5e2b14b3448d7ab6405da7702fbfe7fd5abec10fc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 303.6 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9880c0242f631a9d4da6f8ee5c730ba1c3ad4d57f513590c32f5236e209ada1b
MD5 ed63957b3d1073ba5cfc26ad5d20f43a
BLAKE2b-256 a15b10ec3f5d370fa3fccd4545751adb1532ca4e95824751e17daf31d47c65cd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 269.5 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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c1e66a91440f7cc587b3848c5f074065820c19d1adf91dc741c00da2de9c2824
MD5 5bca16074c07bfb65f9bb3c3131d1916
BLAKE2b-256 1c117e9cabe8bc798219ba488fdcec40816849a113127d618f78e049ee5f17df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 572c80362c98739497b86d2d2dcff298335ca970fa4fa0523a86257b0c413598
MD5 75ed5eaea8ea0a243a796aec49c69991
BLAKE2b-256 639219b19aa3830b2c268fd2a40348a082229d7b7f0c06ea7c95af4cefae0ccc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 35427f76f8a45ab91f9a6faeef2f890a532a680e8f0d4b0fc2733085689f0ccd
MD5 3ad14a762fd66bc7faf365e3a5c90457
BLAKE2b-256 2c28ae6e6d92839fdfb7d46080b7826d2f5e1e9d48abe92b60bc11ed83051f42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc0356eee97debed029e37a4174d8356011b9180aa6f7b5689fc9cc7f6a976c6
MD5 e4f1500caf2a50b1d000ca8c16acc0b6
BLAKE2b-256 05d55eb3d1c9844a6fa66ad881db455b6a10f0d58478c1cfdaef8dd75a783e79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a877bdd9356506451c3093131cdd448ae785b7ce7bfaf34071f6d563d4bcffff
MD5 22bbe46211e9cdb4182d3dfb7d838dcc
BLAKE2b-256 7358ab5cbf5662961104a0e841c63fd132c1acc221fbd6b09a5abfa2549b11a6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 286.4 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.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d0387d364c3cd2de22201de0274b926bea49631c3e78e078213deb2998d979b2
MD5 01dbe07e049b92e3dafde05bd66156cc
BLAKE2b-256 cf726917569dbfae7e3f0bba77abf8492f52d04e3cb394f2ed987e1037404a3d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 302.6 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 35b3701f656f795d93c4617c2ca1dd2a9ddaed3aa22765fd5fdd17805e2f4856
MD5 29f784d5d9e3a76415fae4e3e07d2efc
BLAKE2b-256 3e3b753fd865a0b55f7059d84ab61bed5074a8b064645ba91a39143a97f3f7d4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 269.0 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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 987b981f5ba21cb63f56f73f576175163642c6ea50696c963e52aa7ec436c32a
MD5 dbb5f1f66f2278bfaa129d09638d9bcc
BLAKE2b-256 e1fe70a0414dd44c6678e2458db3a0e694bb567d338bbe4f4911614583f919ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9223febd99b0b64f78394a19970a5786ee3f24a179802ec0b000815cc27ec54
MD5 6cc1bdb1d1b68bcbfe5dc950ce67220b
BLAKE2b-256 5de24ffe2e1d3d0b4c43b99d07f2c76734053c3455c8b7aeb47edc6d533f2a9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 74888f56dc8a57f4a3f46b3d0d3af8d0d10d521ac4ae639596d3f6b0c5ced674
MD5 c05259a81edd91aa45197e1624920f6d
BLAKE2b-256 902fd22b8be9bf6b62a7d2e428d1fc7d42c590e8e83bb5f9a3961088b4399929

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96d58c53f6b1c8e490ac3d695db048f572013f607831da194287f2adc0ac911b
MD5 f26e6e69bb2a8a46628c204bda4b9de9
BLAKE2b-256 366a00a1c2f4deb755c2434909af8ce40637b9f260202fec93f9021723fc0dff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 edec4eebffe9b729e0ce1de5caaf929ce1e8bdaba926bf79d7a8135b7d2d15db
MD5 e8a5ce4756c0a86058e0296fa7875b2c
BLAKE2b-256 ab743da0c131ba9209fcbb1386b56f4218c3ba89fe595ddb57033ef31c9e7dfc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 285.8 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.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 94d79e03cd44457f59d1869c87e77d9b9469b8aedfbeee185bcc0ce5a34961cb
MD5 8d86a8dca22da4733940be8aec9bdc2c
BLAKE2b-256 d22fe78b7f9ef1ea75019638219b3ee9aee1583a39495132262249caa22b18f5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 301.8 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 76b4cc9aaf5e06e7166954695ff157329c0bc1d84bc338ece26b1cd5a9e79795
MD5 96528acb158014af5664db60031620cd
BLAKE2b-256 7899b09361877085bdbca8a780a15af6ec1528d4aa7865737073baf3d5c48737

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ark_fbs-0.1.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 267.9 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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5416f3b9806b0a9a8bf1031c84051f71acaf667c94b8c4415565d623ae57ea14
MD5 3daee02599229de76867115b446e958c
BLAKE2b-256 997861a8c1df09476dae42601b7b5aee7e2155b59b1b69f670011f9f259a4268

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d100a145a72059237d8c51caac2c3ef49aeffea4d642b1c84084f26d20ba6755
MD5 9ac28c17926a0ea62ad20a06ba1c31c6
BLAKE2b-256 d2e5cfbb1f2cef2aca9ee06d70628ddf701733f367317bef8f2e2b92afb2d2a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b50e039de3ad411cbf3d48388708a6189c7ec7c0bb3ea7ddddfed38180f6bc76
MD5 d7be9a66ab9b18b08e4a666380ff1ca5
BLAKE2b-256 27deee723bae29d9551c652b4748706b3e6f8010c852c10351d791b7127a6801

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b01259e83a73697a45d19342ba3306134f5d3cc23d94fe2323ea7d69701879c
MD5 002f3ccc5ded5ed648c05c289ea28dc1
BLAKE2b-256 6c4ddae80319018e21d31fc7c494d2bbeeda20924a7c5eba67b9715d43784b38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ark_fbs-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 96a0193cb713ff3ca310f0e2fb32a1c96894404a0a128f6de862242fdabd116d
MD5 b3a1c0d58b8d0be8e502eb6a7e67843c
BLAKE2b-256 0aaf8d17980b9cc845a0de60e0386e71b0122e268544eb02fe0c6e3e617b6f0d

See more details on using hashes here.

Provenance

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