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 stubsthird_party/flatbuffers/: your fork of FlatBuffers as a git submodule (recommended)third_party/nlohmann_json/: single-headernlohmann/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(defaultTrue): Require strict JSON input when parsing JSON.natural_utf8(defaultTrue): Emit/interpret UTF-8 in a “natural” way (FlatBuffers option).defaults_json(defaultTrue): Include default scalar values in emitted JSON.size_prefixed(defaultFalse): Treat binary buffers as size-prefixed.output_enum_identifiers(defaultTrue): 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
.fbsfile. - 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_typein schema). - Raises:
ValueErrorif the schema file cannot be loaded, parsing fails, orroot_type_overrideis unknown.
- schema_path: Path to the
-
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:
ValueErroron 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:
ValueErrorif deserialization fails orroot_type_overrideis unknown.
- bfbs: Serialized schema bytes (
Methods
-
Schema.json_to_binary(json: str) -> bytes- Parses JSON using the loaded schema and returns the FlatBuffer binary.
- Raises:
ValueErrorif 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:
ValueErrorif conversion fails, or if no root type is set.
-
Schema.serialize_schema_bfbs() -> bytes- Serializes the currently loaded schema into
.bfbsbytes. - Raises:
ValueErrorif the schema is not initialized.
- Serializes the currently loaded schema into
Root type behavior
Schema.json_to_binary() and Schema.binary_to_json() require a root type. You must either:
- Provide
root_typein the schema (root_type A;), or - Pass
root_type_override="A"when constructing theSchema.
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77cfe4fa659f775c075af50491bc700b93efff345ea97300f1b09d756c27d8ef
|
|
| MD5 |
a0f2c5666f995106ddbfdf101d13adba
|
|
| BLAKE2b-256 |
c754cf802a13b30d264aba08a2ca8f6be7ca24722dafffbf8a0b49b005a229a6
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3.tar.gz:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3.tar.gz -
Subject digest:
77cfe4fa659f775c075af50491bc700b93efff345ea97300f1b09d756c27d8ef - Sigstore transparency entry: 1090096284
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ae7b999e9e992e24914051d50afbc59676b31383de27e554c953c1344a94573
|
|
| MD5 |
e8c7e6e42b3d40f330e552e6f2be723e
|
|
| BLAKE2b-256 |
be98f23536753ac47a15606f742464722e94045457ceb941ea8052c76f3ad387
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp314-cp314t-win_arm64.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp314-cp314t-win_arm64.whl -
Subject digest:
9ae7b999e9e992e24914051d50afbc59676b31383de27e554c953c1344a94573 - Sigstore transparency entry: 1090096314
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64a9da7370f4fde78ca0af5f738d04cd2a7db0e3ee3340562e1ed41f7da1c77b
|
|
| MD5 |
05969fad1e53b515460631feed93c856
|
|
| BLAKE2b-256 |
b5101b164292cb751faf5d7091ba7856f2af8e6d5c03db411813f291cfb48b88
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp314-cp314t-win_amd64.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp314-cp314t-win_amd64.whl -
Subject digest:
64a9da7370f4fde78ca0af5f738d04cd2a7db0e3ee3340562e1ed41f7da1c77b - Sigstore transparency entry: 1090096408
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b4f347d629bf17f7b57d99767c2e44cac9c36109301438a10cc2a110134b590
|
|
| MD5 |
b607d285fac7bd6f966693ad37468bbf
|
|
| BLAKE2b-256 |
513bdfca972e39492d89324817313caa708c29f2f9e660f11ec84c8ea0cf01ca
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp314-cp314t-win32.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp314-cp314t-win32.whl -
Subject digest:
6b4f347d629bf17f7b57d99767c2e44cac9c36109301438a10cc2a110134b590 - Sigstore transparency entry: 1090096450
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ark_fbs-0.1.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 341.3 kB
- Tags: CPython 3.14t, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
062f1ebdd45db3d809dcec908920a82ef10d9461f98eeef2470fd5ddf60267e3
|
|
| MD5 |
e04fca960e737d80a28c2940a0116dc9
|
|
| BLAKE2b-256 |
052df8a6db23c3e504bfa60e9a888759e4c4a2fc9968aebb25149330c99ca45a
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
062f1ebdd45db3d809dcec908920a82ef10d9461f98eeef2470fd5ddf60267e3 - Sigstore transparency entry: 1090096416
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl
- Upload date:
- Size: 373.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.24+ i686, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adc59b1dcf01d151c49a3e9c12ca151b9cd4ee9cdf72b0770fad33d3779b602f
|
|
| MD5 |
e2f002d3fb21e845fa5237f58eeb8ca9
|
|
| BLAKE2b-256 |
c4c674868de6e33f61d260f1e8c3e4403dcd290ebbac2d3aa6c1e8aa7ee49e2d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl -
Subject digest:
adc59b1dcf01d151c49a3e9c12ca151b9cd4ee9cdf72b0770fad33d3779b602f - Sigstore transparency entry: 1090096451
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 299.9 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a66b769e098bb443790ac26e856c694abd88cc483fb407cbed97eb466ed5ae0
|
|
| MD5 |
674a6cad0507c3301c8843acc4c8d6de
|
|
| BLAKE2b-256 |
49ba0dfd884db601efd1dfb65bf29cf8978c82b5ce5cc406aad6a4c4967ba6f8
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
4a66b769e098bb443790ac26e856c694abd88cc483fb407cbed97eb466ed5ae0 - Sigstore transparency entry: 1090096400
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 327.6 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a237fcac9d6a1c63b1eec525584d345fd715b2a62d3208e461e939a265c5c368
|
|
| MD5 |
82cabad6c385034ef7d488a7834b7ef0
|
|
| BLAKE2b-256 |
ea96de94a6db8942f93909f7858786a92e8fca82939f116ffdebc909b984de20
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp314-cp314t-macosx_10_15_x86_64.whl -
Subject digest:
a237fcac9d6a1c63b1eec525584d345fd715b2a62d3208e461e939a265c5c368 - Sigstore transparency entry: 1090096419
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37dd9c1df6aa7c9a1e5b5d93fe3471db39e0336acff81539a9c8becfe7c6210d
|
|
| MD5 |
b02726ce7417a735d89b448906d34d0b
|
|
| BLAKE2b-256 |
7816c81030817407bb961652b92c838b44c81920db5ec373530b0c3de1aa702d
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp314-cp314-win_arm64.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp314-cp314-win_arm64.whl -
Subject digest:
37dd9c1df6aa7c9a1e5b5d93fe3471db39e0336acff81539a9c8becfe7c6210d - Sigstore transparency entry: 1090096393
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14be99aed2f0ee0168a6d28fcd6d4135b25c3b7dca53346d7a3f90c31d1ecd70
|
|
| MD5 |
b30cb9ad71e607cbc291cdfe483c6c75
|
|
| BLAKE2b-256 |
dafb4e61c42d9464b070b25b08dccd90b367f2bfff3e84c51cf3e94c65d5c07f
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp314-cp314-win_amd64.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp314-cp314-win_amd64.whl -
Subject digest:
14be99aed2f0ee0168a6d28fcd6d4135b25c3b7dca53346d7a3f90c31d1ecd70 - Sigstore transparency entry: 1090096395
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edc2889d9c7ce19dd02e725de9177554d6bcc5f523c864a068b503c0f79a3b94
|
|
| MD5 |
3debbf1bb5ae2e1aa0e00ed0fe6d1196
|
|
| BLAKE2b-256 |
95588556415e2adc42b355eecfd12d57913923260ce75ce59f95476cb124bd4f
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp314-cp314-win32.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp314-cp314-win32.whl -
Subject digest:
edc2889d9c7ce19dd02e725de9177554d6bcc5f523c864a068b503c0f79a3b94 - Sigstore transparency entry: 1090096287
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ark_fbs-0.1.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 339.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
faea54defb6b86394d70475dd586177ca25e1f637c726b6e9ab6ac73d8733001
|
|
| MD5 |
8d408a0ef7dd60c7ac613ff2a243025a
|
|
| BLAKE2b-256 |
e13eee1c4ee1246c0c9dea008a8b9c1d8823c9212f311d3529533520cd506ddf
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
faea54defb6b86394d70475dd586177ca25e1f637c726b6e9ab6ac73d8733001 - Sigstore transparency entry: 1090096457
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl
- Upload date:
- Size: 371.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.24+ i686, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c2c7b320540149d81a2d19af0c183aa95f5dcae40c7c6c972b26f54a8742362
|
|
| MD5 |
1fa7e203568494b53b77aa039d0d2efd
|
|
| BLAKE2b-256 |
967768dcfaa4820737c502bb4505dc387bab4f6b737c4c0bbb91acebb0b60aa9
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl -
Subject digest:
2c2c7b320540149d81a2d19af0c183aa95f5dcae40c7c6c972b26f54a8742362 - Sigstore transparency entry: 1090096442
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 293.2 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b5593b62da722691dd4eb84d45b950d3b766bb5ad8e191e986b607c322b91f5
|
|
| MD5 |
0e5d9fdf6d7c051af72252c3e6d4fa5b
|
|
| BLAKE2b-256 |
52a514677b9c7e6e5a33ae70943778fa619452d416448cfa9eb311977db820f4
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
8b5593b62da722691dd4eb84d45b950d3b766bb5ad8e191e986b607c322b91f5 - Sigstore transparency entry: 1090096438
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 322.4 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1e8ec3905aebf9507d17ef102ab15bf1d8086cd031d1830f6d08b8941a2624c
|
|
| MD5 |
bed1364a50fb885208fc2861a76572ff
|
|
| BLAKE2b-256 |
ab160ef3bfb1f35c2753d8080cea55847d378bd85814282363253c93cf47b482
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
c1e8ec3905aebf9507d17ef102ab15bf1d8086cd031d1830f6d08b8941a2624c - Sigstore transparency entry: 1090096407
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55710ceec20d6e8d3d7eddc57915183ee97f343d9aebd9e65cd326b8d69233bf
|
|
| MD5 |
ea64873aecfb3660a81676cdf850d396
|
|
| BLAKE2b-256 |
52a9f607a27329331c1b9216b6d485c1f9b39f0f328e76aef5ae39b08ad6b6b7
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp313-cp313-win_arm64.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp313-cp313-win_arm64.whl -
Subject digest:
55710ceec20d6e8d3d7eddc57915183ee97f343d9aebd9e65cd326b8d69233bf - Sigstore transparency entry: 1090096436
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d9e630b85a43a3d987d441b39b0cd8017aa0e796ab89feeeb88489b33c73fc9
|
|
| MD5 |
f48c244c4f6d484cdfa0ce6db2f3f18c
|
|
| BLAKE2b-256 |
b1918ae33eeefd873d8ba95471d5fb61e8dc74e8614ceff5bebc0aa1a9aa025c
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp313-cp313-win_amd64.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp313-cp313-win_amd64.whl -
Subject digest:
9d9e630b85a43a3d987d441b39b0cd8017aa0e796ab89feeeb88489b33c73fc9 - Sigstore transparency entry: 1090096293
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec0753c31efda19905847ce53375539d8a0579633414d651ffc32cd6594c8d6a
|
|
| MD5 |
1c64de28527a693d079f23cc458a71c2
|
|
| BLAKE2b-256 |
cfaedcbb46014f728f888aa1b37d7123d84eb38f8c950ef170f41922ee7f6f1c
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp313-cp313-win32.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp313-cp313-win32.whl -
Subject digest:
ec0753c31efda19905847ce53375539d8a0579633414d651ffc32cd6594c8d6a - Sigstore transparency entry: 1090096391
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ark_fbs-0.1.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 339.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
526fd8ee48261aeeb4ac5416e859c2c18702bc5f1ce05d38c14e23eb25d5f404
|
|
| MD5 |
97e63a035a9322e69f69038b55f75245
|
|
| BLAKE2b-256 |
a1e0f8370a4148409b2466cd5a66f0100baad2ea9fbd5da479c3d77aa1cd8bfb
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
526fd8ee48261aeeb4ac5416e859c2c18702bc5f1ce05d38c14e23eb25d5f404 - Sigstore transparency entry: 1090096397
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl
- Upload date:
- Size: 371.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ i686, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
148943c800fb474e6be166f54b18850a06878691145570ecd53f77f81cea3e8b
|
|
| MD5 |
9ca69527fd6e8718218d3a90675bd8fd
|
|
| BLAKE2b-256 |
ca92eff5f40216cd0f24f0f3dc74dfb4d40bdb7db779023cbffd56a3aa88800d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl -
Subject digest:
148943c800fb474e6be166f54b18850a06878691145570ecd53f77f81cea3e8b - Sigstore transparency entry: 1090096402
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 293.0 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
566acad8768743f10b33f9728f9c6db3bfa3d6707fc08c9e83c6d20c3b9a3f22
|
|
| MD5 |
41d3a6e005ba87e98e746404aee051e6
|
|
| BLAKE2b-256 |
65fcc4ff33285a53f387560ddf4a352fd5eb0d6ce820010d0e2b6aee71c2f921
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
566acad8768743f10b33f9728f9c6db3bfa3d6707fc08c9e83c6d20c3b9a3f22 - Sigstore transparency entry: 1090096404
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 322.0 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
072a3a2dfcf941279abdcb316e1caf901f20c473afa2d15fda4fadab7219f1f6
|
|
| MD5 |
c131c33da1b1a41207fa9cd2efa0a1fb
|
|
| BLAKE2b-256 |
5922fa1c3898274fff84ec3261645e576543bd29d4692aad610179cd239291e2
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
072a3a2dfcf941279abdcb316e1caf901f20c473afa2d15fda4fadab7219f1f6 - Sigstore transparency entry: 1090096291
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c406e0b7cfafda3e5220d69d35457864ac1a6131418a4b8485d241eff4eb06ac
|
|
| MD5 |
801a06489510cf0c45a7edf1ff5a74b2
|
|
| BLAKE2b-256 |
68615e1732f00c934b6386c5e2b14b3448d7ab6405da7702fbfe7fd5abec10fc
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp312-cp312-win_arm64.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp312-cp312-win_arm64.whl -
Subject digest:
c406e0b7cfafda3e5220d69d35457864ac1a6131418a4b8485d241eff4eb06ac - Sigstore transparency entry: 1090096289
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9880c0242f631a9d4da6f8ee5c730ba1c3ad4d57f513590c32f5236e209ada1b
|
|
| MD5 |
ed63957b3d1073ba5cfc26ad5d20f43a
|
|
| BLAKE2b-256 |
a15b10ec3f5d370fa3fccd4545751adb1532ca4e95824751e17daf31d47c65cd
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp312-cp312-win_amd64.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp312-cp312-win_amd64.whl -
Subject digest:
9880c0242f631a9d4da6f8ee5c730ba1c3ad4d57f513590c32f5236e209ada1b - Sigstore transparency entry: 1090096477
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1e66a91440f7cc587b3848c5f074065820c19d1adf91dc741c00da2de9c2824
|
|
| MD5 |
5bca16074c07bfb65f9bb3c3131d1916
|
|
| BLAKE2b-256 |
1c117e9cabe8bc798219ba488fdcec40816849a113127d618f78e049ee5f17df
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp312-cp312-win32.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp312-cp312-win32.whl -
Subject digest:
c1e66a91440f7cc587b3848c5f074065820c19d1adf91dc741c00da2de9c2824 - Sigstore transparency entry: 1090096463
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ark_fbs-0.1.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 339.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
572c80362c98739497b86d2d2dcff298335ca970fa4fa0523a86257b0c413598
|
|
| MD5 |
75ed5eaea8ea0a243a796aec49c69991
|
|
| BLAKE2b-256 |
639219b19aa3830b2c268fd2a40348a082229d7b7f0c06ea7c95af4cefae0ccc
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
572c80362c98739497b86d2d2dcff298335ca970fa4fa0523a86257b0c413598 - Sigstore transparency entry: 1090096303
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl
- Upload date:
- Size: 371.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ i686, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35427f76f8a45ab91f9a6faeef2f890a532a680e8f0d4b0fc2733085689f0ccd
|
|
| MD5 |
3ad14a762fd66bc7faf365e3a5c90457
|
|
| BLAKE2b-256 |
2c28ae6e6d92839fdfb7d46080b7826d2f5e1e9d48abe92b60bc11ed83051f42
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl -
Subject digest:
35427f76f8a45ab91f9a6faeef2f890a532a680e8f0d4b0fc2733085689f0ccd - Sigstore transparency entry: 1090096378
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 293.0 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc0356eee97debed029e37a4174d8356011b9180aa6f7b5689fc9cc7f6a976c6
|
|
| MD5 |
e4f1500caf2a50b1d000ca8c16acc0b6
|
|
| BLAKE2b-256 |
05d55eb3d1c9844a6fa66ad881db455b6a10f0d58478c1cfdaef8dd75a783e79
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
dc0356eee97debed029e37a4174d8356011b9180aa6f7b5689fc9cc7f6a976c6 - Sigstore transparency entry: 1090096297
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 322.0 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a877bdd9356506451c3093131cdd448ae785b7ce7bfaf34071f6d563d4bcffff
|
|
| MD5 |
22bbe46211e9cdb4182d3dfb7d838dcc
|
|
| BLAKE2b-256 |
7358ab5cbf5662961104a0e841c63fd132c1acc221fbd6b09a5abfa2549b11a6
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
a877bdd9356506451c3093131cdd448ae785b7ce7bfaf34071f6d563d4bcffff - Sigstore transparency entry: 1090096482
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0387d364c3cd2de22201de0274b926bea49631c3e78e078213deb2998d979b2
|
|
| MD5 |
01dbe07e049b92e3dafde05bd66156cc
|
|
| BLAKE2b-256 |
cf726917569dbfae7e3f0bba77abf8492f52d04e3cb394f2ed987e1037404a3d
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp311-cp311-win_arm64.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp311-cp311-win_arm64.whl -
Subject digest:
d0387d364c3cd2de22201de0274b926bea49631c3e78e078213deb2998d979b2 - Sigstore transparency entry: 1090096489
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35b3701f656f795d93c4617c2ca1dd2a9ddaed3aa22765fd5fdd17805e2f4856
|
|
| MD5 |
29f784d5d9e3a76415fae4e3e07d2efc
|
|
| BLAKE2b-256 |
3e3b753fd865a0b55f7059d84ab61bed5074a8b064645ba91a39143a97f3f7d4
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp311-cp311-win_amd64.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp311-cp311-win_amd64.whl -
Subject digest:
35b3701f656f795d93c4617c2ca1dd2a9ddaed3aa22765fd5fdd17805e2f4856 - Sigstore transparency entry: 1090096445
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
987b981f5ba21cb63f56f73f576175163642c6ea50696c963e52aa7ec436c32a
|
|
| MD5 |
dbb5f1f66f2278bfaa129d09638d9bcc
|
|
| BLAKE2b-256 |
e1fe70a0414dd44c6678e2458db3a0e694bb567d338bbe4f4911614583f919ed
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp311-cp311-win32.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp311-cp311-win32.whl -
Subject digest:
987b981f5ba21cb63f56f73f576175163642c6ea50696c963e52aa7ec436c32a - Sigstore transparency entry: 1090096344
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ark_fbs-0.1.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 338.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9223febd99b0b64f78394a19970a5786ee3f24a179802ec0b000815cc27ec54
|
|
| MD5 |
6cc1bdb1d1b68bcbfe5dc950ce67220b
|
|
| BLAKE2b-256 |
5de24ffe2e1d3d0b4c43b99d07f2c76734053c3455c8b7aeb47edc6d533f2a9d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d9223febd99b0b64f78394a19970a5786ee3f24a179802ec0b000815cc27ec54 - Sigstore transparency entry: 1090096485
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl
- Upload date:
- Size: 369.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ i686, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74888f56dc8a57f4a3f46b3d0d3af8d0d10d521ac4ae639596d3f6b0c5ced674
|
|
| MD5 |
c05259a81edd91aa45197e1624920f6d
|
|
| BLAKE2b-256 |
902fd22b8be9bf6b62a7d2e428d1fc7d42c590e8e83bb5f9a3961088b4399929
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl -
Subject digest:
74888f56dc8a57f4a3f46b3d0d3af8d0d10d521ac4ae639596d3f6b0c5ced674 - Sigstore transparency entry: 1090096333
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 292.8 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96d58c53f6b1c8e490ac3d695db048f572013f607831da194287f2adc0ac911b
|
|
| MD5 |
f26e6e69bb2a8a46628c204bda4b9de9
|
|
| BLAKE2b-256 |
366a00a1c2f4deb755c2434909af8ce40637b9f260202fec93f9021723fc0dff
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
96d58c53f6b1c8e490ac3d695db048f572013f607831da194287f2adc0ac911b - Sigstore transparency entry: 1090096468
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 321.5 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edec4eebffe9b729e0ce1de5caaf929ce1e8bdaba926bf79d7a8135b7d2d15db
|
|
| MD5 |
e8a5ce4756c0a86058e0296fa7875b2c
|
|
| BLAKE2b-256 |
ab743da0c131ba9209fcbb1386b56f4218c3ba89fe595ddb57033ef31c9e7dfc
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
edec4eebffe9b729e0ce1de5caaf929ce1e8bdaba926bf79d7a8135b7d2d15db - Sigstore transparency entry: 1090096366
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94d79e03cd44457f59d1869c87e77d9b9469b8aedfbeee185bcc0ce5a34961cb
|
|
| MD5 |
8d86a8dca22da4733940be8aec9bdc2c
|
|
| BLAKE2b-256 |
d22fe78b7f9ef1ea75019638219b3ee9aee1583a39495132262249caa22b18f5
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp310-cp310-win_arm64.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp310-cp310-win_arm64.whl -
Subject digest:
94d79e03cd44457f59d1869c87e77d9b9469b8aedfbeee185bcc0ce5a34961cb - Sigstore transparency entry: 1090096428
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76b4cc9aaf5e06e7166954695ff157329c0bc1d84bc338ece26b1cd5a9e79795
|
|
| MD5 |
96528acb158014af5664db60031620cd
|
|
| BLAKE2b-256 |
7899b09361877085bdbca8a780a15af6ec1528d4aa7865737073baf3d5c48737
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp310-cp310-win_amd64.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp310-cp310-win_amd64.whl -
Subject digest:
76b4cc9aaf5e06e7166954695ff157329c0bc1d84bc338ece26b1cd5a9e79795 - Sigstore transparency entry: 1090096420
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5416f3b9806b0a9a8bf1031c84051f71acaf667c94b8c4415565d623ae57ea14
|
|
| MD5 |
3daee02599229de76867115b446e958c
|
|
| BLAKE2b-256 |
997861a8c1df09476dae42601b7b5aee7e2155b59b1b69f670011f9f259a4268
|
Provenance
The following attestation bundles were made for ark_fbs-0.1.3-cp310-cp310-win32.whl:
Publisher:
wheels.yml on StarHeartHunt/ArkFBS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp310-cp310-win32.whl -
Subject digest:
5416f3b9806b0a9a8bf1031c84051f71acaf667c94b8c4415565d623ae57ea14 - Sigstore transparency entry: 1090096424
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ark_fbs-0.1.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 337.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d100a145a72059237d8c51caac2c3ef49aeffea4d642b1c84084f26d20ba6755
|
|
| MD5 |
9ac28c17926a0ea62ad20a06ba1c31c6
|
|
| BLAKE2b-256 |
d2e5cfbb1f2cef2aca9ee06d70628ddf701733f367317bef8f2e2b92afb2d2a4
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d100a145a72059237d8c51caac2c3ef49aeffea4d642b1c84084f26d20ba6755 - Sigstore transparency entry: 1090096473
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl
- Upload date:
- Size: 370.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ i686, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b50e039de3ad411cbf3d48388708a6189c7ec7c0bb3ea7ddddfed38180f6bc76
|
|
| MD5 |
d7be9a66ab9b18b08e4a666380ff1ca5
|
|
| BLAKE2b-256 |
27deee723bae29d9551c652b4748706b3e6f8010c852c10351d791b7127a6801
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl -
Subject digest:
b50e039de3ad411cbf3d48388708a6189c7ec7c0bb3ea7ddddfed38180f6bc76 - Sigstore transparency entry: 1090096375
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 291.9 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b01259e83a73697a45d19342ba3306134f5d3cc23d94fe2323ea7d69701879c
|
|
| MD5 |
002f3ccc5ded5ed648c05c289ea28dc1
|
|
| BLAKE2b-256 |
6c4ddae80319018e21d31fc7c494d2bbeeda20924a7c5eba67b9715d43784b38
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
0b01259e83a73697a45d19342ba3306134f5d3cc23d94fe2323ea7d69701879c - Sigstore transparency entry: 1090096411
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ark_fbs-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: ark_fbs-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 319.9 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96a0193cb713ff3ca310f0e2fb32a1c96894404a0a128f6de862242fdabd116d
|
|
| MD5 |
b3a1c0d58b8d0be8e502eb6a7e67843c
|
|
| BLAKE2b-256 |
0aaf8d17980b9cc845a0de60e0386e71b0122e268544eb02fe0c6e3e617b6f0d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ark_fbs-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
96a0193cb713ff3ca310f0e2fb32a1c96894404a0a128f6de862242fdabd116d - Sigstore transparency entry: 1090096460
- Sigstore integration time:
-
Permalink:
StarHeartHunt/ArkFBS@2f359df9d4271906f7812ea72d3b83ae80690698 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/StarHeartHunt
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@2f359df9d4271906f7812ea72d3b83ae80690698 -
Trigger Event:
push
-
Statement type: