Skip to main content

A fast, correct YAML library for Python, written in Rust

Project description

🪨 YAMLRocks

GitHub Release Python Versions Project Stage Project Maintenance License

Build Status Code Coverage CodSpeed OpenSSF Scorecard Open in Dev Containers

Rock-solid YAML for Python, written in Rust.

About

YAMLRocks is the rock-solid YAML library for Python: a Rust-backed extension that parses and emits YAML fast, follows the YAML 1.2 specification (with a YAML 1.1 compatibility mode), and, unlike PyYAML, round-trips documents while preserving comments, anchors, and formatting.

Rock-solid means three things: correct, secure by default, and fast, with a Rust core doing the heavy lifting. (The R in Rock is for Rust.)

The Python YAML ecosystem has long forced a trade-off. YAMLRocks refuses it:

Library Fast YAML 1.2 Comments / round-trip Native includes
PyYAML with C loader ✗ (1.1 only)
ruamel.yaml ✗ (pure Python)
YAMLRocks ✓ (Rust)

It is also fast. Release-build benchmarks (python bench/bench.py) show how many times faster YAMLRocks is:

Operation vs PyYAML (C loader) vs ruamel.yaml
Parse (loads) ~5-10x faster ~85-135x faster
Serialize (dumps) ~15-19x faster ~155-210x faster
Split config (!include, hundreds of files) ~18x faster n/a

It is safe against the common YAML attack classes, free-threaded (nogil) ready, and ships with JSON Schema validation, a PyYAML-compatible shim, rich standard-library type support, and the !secret and !env_var config tags.

YAMLRocks is also tested against a reproducible real-world corpus covering Home Assistant, ESPHome, Ansible, Kubernetes, Docker Compose, GitHub Actions, CloudFormation, GitOps, Helm, OpenAPI, dbt, CircleCI, Serverless, and Tekton. Each standalone YAML file must parse and round-trip byte-for-byte; selected Home Assistant configs are additionally tested through their full !include graph. See real-world verification for the current corpus and scope.

YAMLRocks is pre-1.0 software. The core promises are already explicit: safe loading by default, YAML 1.2 semantics, reproducible real-world verification, and byte-for-byte round-trip for unmodified documents. Some advanced APIs may still change before 1.0 while the project gathers production feedback. See the stability and roadmap page for the 1.0 contract.

Installation

pip install yamlrocks

Building from source requires a Rust toolchain; see Setting up development environment below for the uv-based build.

Usage

The API stays small: loads returns native Python objects and dumps returns bytes.

import yamlrocks

# Parse YAML into native Python objects
data = yamlrocks.loads(b"key: value\nlist:\n  - 1\n  - 2")
# {'key': 'value', 'list': [1, 2]}

# Serialize back to YAML bytes (dumps() returns bytes)
yamlrocks.dumps(data)
# b'key: value\nlist:\n  - 1\n  - 2\n'

# Multiple documents
yamlrocks.loads_all(b"---\na: 1\n---\nb: 2")
# [{'a': 1}, {'b': 2}]

# Load and dump files directly
config = yamlrocks.load("config.yaml")
yamlrocks.dump(config, "config.yaml")

YAML 1.1 compatibility

YAML 1.2 is the default, so yes/no/on/off are plain strings. Opt into the 1.1 schema when you need its booleans and octals:

yamlrocks.loads(b"enabled: yes")                              # {'enabled': 'yes'}
yamlrocks.loads(b"enabled: yes", option=yamlrocks.OPT_YAML_1_1)  # {'enabled': True}

OPT_UPGRADE_1_1 reads 1.1 and always emits canonical 1.2, so a project can ease off the legacy spellings without a manual conversion step.

Structure-preserving round-trip

doc = yamlrocks.loads(content, option=yamlrocks.OPT_ROUND_TRIP)

doc["server"]["host"] = "example.com"   # deep edits write through to the AST
print(doc.to_yaml().decode())           # comments and formatting preserved

An unmodified document re-emits byte-for-byte identical; only the nodes you touch are rewritten.

Native includes (read and write back)

doc = yamlrocks.loads(
    content,
    option=yamlrocks.OPT_ROUND_TRIP | yamlrocks.OPT_INCLUDES,
    include_dir="/config",
)

doc["automation"][0]["trigger"] = "state"   # edit a value from an included file

yamlrocks.dump_includes(doc, include_dir="/config")
# Only the modified included file is rewritten; the root config is untouched.

Supported tags: !include, !include_dir_named, !include_dir_list, !include_dir_merge_named, !include_dir_merge_list.

Annotated mode (source-location tracking)

data = yamlrocks.loads(content, option=yamlrocks.OPT_ANNOTATED)
data.__line__              # 1
data["server"].__line__    # 3

YAMLRocksAnnotatedDict/YAMLRocksAnnotatedList/YAMLRocksAnnotatedStr subclass dict/list/str, so they behave exactly like the built-ins while carrying __line__, __column__, and __file__, compatible with Home Assistant's annotated YAML.

Option flags

Options compose with |, the integer bit-flag pattern:

Flag Effect
OPT_YAML_1_1 YAML 1.1 schema (yes/no booleans, octals, etc.)
OPT_UPGRADE_1_1 Read 1.1, always emit canonical 1.2
OPT_ROUND_TRIP Return a YAMLRocksDocument preserving comments and formatting
OPT_ANNOTATED Return subclasses with source locations
OPT_INCLUDES Resolve !include tags (needs include_dir)
OPT_DUPLICATE_KEYS_ERROR Reject a repeated mapping key
OPT_INDENT_2 / OPT_INDENT_4 Indentation width for dumps
OPT_SORT_KEYS Sort mapping keys when dumping
OPT_FLOW_STYLE Emit flow style ({}/[])
OPT_LITERAL_STRINGS Emit multi-line strings as literal blocks (|)
OPT_EXPLICIT_START / OPT_EXPLICIT_END Emit --- / ... markers

See the documentation for the full option set, including the standard-library type and datetime flags.

Documentation

Full documentation lives at yaml.rocks: getting-started guides, recipes (Home Assistant, config editors), the complete API reference, security notes, and head-to-head comparisons with PyYAML and ruamel.yaml.

Changelog & Releases

This repository keeps a change log using GitHub's releases functionality. The format of the log is based on Keep a Changelog.

Releases are based on Semantic Versioning, and use the format of MAJOR.MINOR.PATCH. In a nutshell, the version will be incremented based on the following:

  • MAJOR: Incompatible or major changes.
  • MINOR: Backwards-compatible new features and enhancements.
  • PATCH: Backwards-compatible bugfixes and package updates.

Contributing

This is an active open-source project. We are always open to people who want to use the code or contribute to it.

We've set up a separate document for our contribution guidelines.

Using AI tools to help is fine, but you must review and understand everything you submit. Please read our AI Policy first; autonomous agents are not allowed, and unreviewed AI output will be closed.

Thank you for being involved! :heart_eyes:

Setting up development environment

The easiest way to start is by opening a CodeSpace here on GitHub, or by using the Dev Container feature of Visual Studio Code.

Open in Dev Containers

YAMLRocks is a Rust extension built with maturin and managed with uv, which handles the Python version, the virtual environment, and every dependency from pyproject.toml. You need:

  • A Rust toolchain
  • uv (it installs a suitable Python 3.12+ for you)
  • Node.js 22+ (only for the documentation site and some lint hooks)

To set up the environment and build the extension:

uv sync                  # create the venv and install all dev dependencies
uv run maturin develop   # build and install the extension (rerun after Rust changes)

As this repository uses the prek framework, all changes are linted and tested with each commit. You can run all checks manually:

prek run --all-files

To run just the tests (always under a memory guard during development):

timeout 120 bash -c 'ulimit -v 3000000; uv run pytest'

See CONTRIBUTING.md for the full workflow, including the just task runner and how to fetch the optional test-data submodules.

Authors & contributors

The original setup of this repository is by Franck Nijhof.

For a full list of all authors and contributors, check the contributor's page.

License

MIT License

Copyright (c) 2026 Franck Nijhof

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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

yamlrocks-0.1.3.tar.gz (663.7 kB view details)

Uploaded Source

Built Distributions

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

yamlrocks-0.1.3-cp314-cp314-win_arm64.whl (524.9 kB view details)

Uploaded CPython 3.14Windows ARM64

yamlrocks-0.1.3-cp314-cp314-win_amd64.whl (565.7 kB view details)

Uploaded CPython 3.14Windows x86-64

yamlrocks-0.1.3-cp314-cp314-win32.whl (523.5 kB view details)

Uploaded CPython 3.14Windows x86

yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl (828.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_i686.whl (852.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl (867.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl (754.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (661.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (590.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (577.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

yamlrocks-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (643.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

yamlrocks-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (562.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

yamlrocks-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl (603.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

yamlrocks-0.1.3-cp313-cp313-win_arm64.whl (526.7 kB view details)

Uploaded CPython 3.13Windows ARM64

yamlrocks-0.1.3-cp313-cp313-win_amd64.whl (566.3 kB view details)

Uploaded CPython 3.13Windows x86-64

yamlrocks-0.1.3-cp313-cp313-win32.whl (523.5 kB view details)

Uploaded CPython 3.13Windows x86

yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (828.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_i686.whl (852.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl (867.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (755.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (661.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (590.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (577.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

yamlrocks-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (644.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

yamlrocks-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (563.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

yamlrocks-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (603.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

yamlrocks-0.1.3-cp312-cp312-win_arm64.whl (526.6 kB view details)

Uploaded CPython 3.12Windows ARM64

yamlrocks-0.1.3-cp312-cp312-win_amd64.whl (566.2 kB view details)

Uploaded CPython 3.12Windows x86-64

yamlrocks-0.1.3-cp312-cp312-win32.whl (523.7 kB view details)

Uploaded CPython 3.12Windows x86

yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (828.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_i686.whl (853.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl (867.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (755.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (661.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (590.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (577.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

yamlrocks-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (644.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

yamlrocks-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (562.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

yamlrocks-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (603.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: yamlrocks-0.1.3.tar.gz
  • Upload date:
  • Size: 663.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for yamlrocks-0.1.3.tar.gz
Algorithm Hash digest
SHA256 fee292f265bd66074c6796d1b1ca7c8d4c269a3f449d4976fa13a8f9213b7532
MD5 d3a4de9b9b32827fa32338ae410670f4
BLAKE2b-256 20d15f8b5f2a9dffa9ddb1314cf2bebb7c8bfda7bc202f05630252db9356aa6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3.tar.gz:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: yamlrocks-0.1.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 524.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for yamlrocks-0.1.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 409c73221af5878e02c58e5b5d2453b98ec8845d26ca5b2d211c1ae5055793c9
MD5 619ff0915176f8207f9109ea4537631c
BLAKE2b-256 46504ba0acb58572efa63c9653843ae9183ab0fdaf55ea08a30a623752062dd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp314-cp314-win_arm64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: yamlrocks-0.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 565.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for yamlrocks-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7e0a8e64fba1e0efb89fcf13106097e01ccb8bc66c896a46ee849c57c58be6ab
MD5 39b019364f520e8d9c80839d6f685f79
BLAKE2b-256 3ec23d0b11240fef64579b3456231250c0a9530f99a4344bd5b78642f6b8d99b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp314-cp314-win_amd64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: yamlrocks-0.1.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 523.5 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for yamlrocks-0.1.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b391e34e44915344a356ced919f31ce27eb1a9426ebb1fca838a2a437d6dc64d
MD5 7e40b7f41a518dee100b20d00024cc19
BLAKE2b-256 ed4cf3eecf3589bae4445851771d237907c860eafb7bd177d632d2e8b7e6bab4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp314-cp314-win32.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7541c8aa242a37e7a1bd2f77b2bf6e74fe0cdbec4f29f5a9c20a273faedfa134
MD5 d7bc66084bb067b756cd3c7697d4fc79
BLAKE2b-256 ed2d56d8e0794b6c22e5ef63c4b5cb75019b8bb67d33b10c5ece1f40bc512091

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a759924b32826c1d43c74fcabc0ee0bdca4fa6d6e6fbe19ebaf019431f33cc50
MD5 b0667f089e66af392d7f1409ce5be59f
BLAKE2b-256 c94a981a2072cd56fe606e3cfc1e0cd139fb57505a00ebb71618da076ba340f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 03f15f21e875dab7a33125f50c0ef0282230144ff2166f654f3c031e2ed37d8b
MD5 34b1d5644335e97a1677ca13413c6789
BLAKE2b-256 d0706f34ec6b7d7413eb35a5a718fc7c0cda9a3e28f25c4443407c351d418154

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 befce098b2319f528fe3ccefd5949e92a3c0218445f7f632f7f5468ac80c4ed5
MD5 687e83e6674e413215a124f08c461ba5
BLAKE2b-256 9c52ede5a60dd98989edffaa2afd89598fe1535bfa03a0f9f81c2bff8bc97dc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f399354a03deb8c9bdfda81f1e70d6c9577d04cd4c846abd96e7aa193688456
MD5 1d8a377c8046f2a5171c0472c8e99043
BLAKE2b-256 01e9a25230fbbcd4e7e77449bb349a515cef2b1738416bc92a601e96bd1989bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a3632f294933f8a2ae993dd1394f27fe052a789f0c5665edd37746b6402930c8
MD5 f7f7035de48727ef2fce98b2021cb5a3
BLAKE2b-256 de981f8ebec5e16e7ad08179866e48913c2dc6ebfcd21beacd2124bdb2022ef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 add1f2f604177bc4463b6c827bd3fa2675731a3aa3da4b56eff24c4dab0357a9
MD5 c5ff38ed588fa33512b01b90250eb8a4
BLAKE2b-256 47c2f55138955309c1c20fb819c8e8c99097b6542981b9117729897ea90a1710

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08fe6fb0491073f8cf441d0b2db2273a957751af02c74ddddf18ac9230ee739a
MD5 0ec94e06b43f1454183e20539969093c
BLAKE2b-256 b01480155fc8bd77516bec0870af1c6255d974aab485a18d7da08e3624743673

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 66c2c72cdaace10ab4e938b8d28e96fb7ac5b4cf5f492fe5e835d6e561bf759a
MD5 272a03c32034253cc37250d32867c15f
BLAKE2b-256 b37fb07726e63e08e8cf988131bf0165ad6ec2f95a989fba8595daea36fd542c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e12111ef5f152354987fa3940c7e80e6b0bb8b2766f893cabae0eec5aece0429
MD5 3c9ad5f122380530f0d28deaa275d61b
BLAKE2b-256 01e7a8f6694a168dc519d1f62ef9b17e57dcee9cc7de16270369f1e3a18ff618

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 168b02281034b72e5f516062a5df45f949176466335e39617320efab71756f1e
MD5 b92f9bbcbadefa07fb52199df2ad323e
BLAKE2b-256 575ae07c49c342d1319528dbcd3f6b10fb037aa06aeebd9875e85afa7e4a0097

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: yamlrocks-0.1.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 526.7 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for yamlrocks-0.1.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7d49c86b84f05618383c01e34c6c674a83ba6e15b23d42fb3aba67f636847d0b
MD5 e3a40df520f69ed81045b636b6a481b4
BLAKE2b-256 b92874b2fa034fca5363c5be4e44e1604da8975b3f8d16bfa85e91493ead3991

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp313-cp313-win_arm64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: yamlrocks-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 566.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for yamlrocks-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1f516ed656809f2895a65d2eb31ae179f0e7896c6a94adcc65577b3e4a3d5393
MD5 e30c04080aba6c6944f8561383d4517c
BLAKE2b-256 9ae94ffb2332c9cc4e978e3d677de032f8368f17e72dade497a62c13f44a454b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp313-cp313-win_amd64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: yamlrocks-0.1.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 523.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for yamlrocks-0.1.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 089fcb64591f7fbe7f949b0f865aff0bc77395156d8d20240907a6c82938d62d
MD5 1d812de52ded9886e0494cb49452f743
BLAKE2b-256 43e45d85209a279422142528df8088a4d2aa2e5dd855e11f458a64818961bd02

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp313-cp313-win32.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f49fa53ee9870feb409722fdeccfdb580ee27d9860a4c0640f19ac5d597d16e0
MD5 ed78715a960e814ecbdcfd885a0995eb
BLAKE2b-256 2882d06624ccb5f26895b2c452f47e81bb0d261a0c661e5bcb9004f7424dc4e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 407043124f764324e07bebb0b60171745decba44f4da22d513d3278c0592b704
MD5 d15c8ae1201222d99c33571161e0fdc2
BLAKE2b-256 dcf85cb22d8f19b2e32c68d98eded2a3d4105c49ea66482869988fa2cc752891

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7eb8687b8ae2a72a422a6cbae1752c370b74a806fc433502a607de11d3502c9f
MD5 f6ea69e50eee2fca25d8afbc9660cda8
BLAKE2b-256 629a458b69d2b34c50242ba6e23b7e832ad9a1252a9dc7e52842c8e975196ad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aafcda96a21e3e0b2e21a4cefc50d2ba57e8563af170942c71e3d50c6e7c473a
MD5 c717bf51a60522d04e4131b129e83670
BLAKE2b-256 b4fe78cc047be47c8d442d834e7692aa97794ac289f5154d9ccae5e1c6c465c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de52d4f40d12643f765ce246c3980ac896591e462fc3f2202f47a9def93179dd
MD5 62bde392611006ae9b921d7966f6d2c7
BLAKE2b-256 e1ab8fef5a937089cfa58a2f9b3e5c1ccd551e6da45be8935eb8fc6d13a826b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c4399d35566820caf69b6b2c7964e139a0a37c856a4f78d5acf8b05f7935af92
MD5 9c18b515057f02cf2d5ef6ee11c51498
BLAKE2b-256 6c1be9933e79e5b452185eb8d65c421e49f9e1c7a0d09ebb0011f98cea5ad9e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69473c561108357d94be004a2eca30a0e46749b6f760237f450e63a6f26607d3
MD5 c2537d89e4e121e7f7332ea614486994
BLAKE2b-256 7131147f105f5061f3b9ac2be55e208fb9dfb9f8873a931b944f74d5ea2b52fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0a4ab47e9df86bbdc75d13d62053387008e9a7db4ced13679e81e9c3fe0362f
MD5 d753c7aad5f33eb1d55e778c1678a412
BLAKE2b-256 010066ef15e70f660bd8b62e7673ac86d60d16aa038a775237afb1a91d0df338

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 697b71e142059f72fe9e344087c7d6220db086298bef145967c006ce055d1044
MD5 ee3c913b3c57b09dbd95882eead4cd64
BLAKE2b-256 866591d3333be20be1764215c3ce933ae1f99e64ed171e6df882f558a7fd9e34

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 525ffab5c598bc480a4c502e7b280dde84c604ea2adcf00223ceaab89efc6a86
MD5 005f5c3e58d446f8fa6e55b76f99a744
BLAKE2b-256 2a6360359d9e7847e6ba9869ed513f3bed9dcf5279232bc38122ced69f34674b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 11a1112af97692dc02ddf7923d95fba7f383ddacac85f1a1f1e1d80421c77de6
MD5 53edd43b7094bd7a9f7bff8a369fb0b9
BLAKE2b-256 d0c079c1b4ea95910114f91ec5c410724ba78e44e63706ed896933b2240a2599

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: yamlrocks-0.1.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 526.6 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for yamlrocks-0.1.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e57e7968af36389c81f27cbfdbac529ab5103373106c6dc1ace27ed88152e5e9
MD5 fec155d63824a6c51a663790640c8151
BLAKE2b-256 e9f4e8b5bb22ec31e07539445f4246e11706af9c01517c5f249fb2554c5807cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp312-cp312-win_arm64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: yamlrocks-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 566.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for yamlrocks-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 68f233b220af177ebe87d237db1305fbe4c1adc6c1944d7e93fb57708aa98403
MD5 9558bec3deb14aa017471cc38e7c213a
BLAKE2b-256 5e853aaeba8a578849a010a5f9e2aa381c0045d4e379d25a6cdaaabb2cf3d28c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp312-cp312-win_amd64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: yamlrocks-0.1.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 523.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for yamlrocks-0.1.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 05950c022fb6dd890ace0b0207b82c74072f08fb1bf7784aa31c5d5a771f2c2c
MD5 8373859833fe6b63b89fb68ebe289d63
BLAKE2b-256 4a23d94668703ba8975eb3d0b74966964b8c371ccd61c49bf922f9780460542c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp312-cp312-win32.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57be7ac1bfaeca7e25b2d3de203d1f65d9f99620de861fa050452eeb08f80789
MD5 e4a6c4603087f422d7eba7b473f8b8ef
BLAKE2b-256 3d3469617c64e8572200a3dad036abc733c5ecc5b660a6646e4c1d30687e3188

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad02081b387b8ad8a11ee59725954a3aca945c359b790e85d3cd98aa4b8d5799
MD5 ad44086c2125b6a172bd6bbd239fd589
BLAKE2b-256 ccd6b50ff0efd56f5f1e0b6ec01d2138b1dcb162f4e952c1499253b553db1ba4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3fa14886429e177645c8dcf2f1c31af929fd15ce294a97c23c13a5d62de8e80a
MD5 8d159038bcaeba9f3223ce723802f045
BLAKE2b-256 d8b244e698e87b5164df10761d1cd4626aae02c400e4497fc2b836e723cca985

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b8103df755c659ba4c136bb61155cb8063c633c4676823f4beacfaea00f30695
MD5 6da002a3ec36a3cb8ee137a7534fa384
BLAKE2b-256 51a782d799155214ffd81561b2c526fda577e3df7026d7912ba5a2c0ed497d51

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdd7982b916a2967172c70c33dfe6ab8d55ccdad5bf5ab23f6c667b60901bb5a
MD5 b6d9b9a735a870f164836e566ba71555
BLAKE2b-256 f366b991035444c7268b11b647a87b7e2d8496b3ac0e1cc6c44d0c0a21833a1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ca66bf1a513a61d1e4338c9a5de92c32839b678591b736c7eff42de1a4944d4f
MD5 032904aa628ec679ddd8d2456cc9f59b
BLAKE2b-256 2449c2f9289d15ec76430dd4fa3c1dd2a5ffc524f996910e53c71577d8ccd784

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c10080e610b7b78da247af3c6e09efb3d3ccd08bc6d23b7293f86de5fe124475
MD5 122f8571a3c7d92ad09013145a401d61
BLAKE2b-256 7b68d5ca241cb571d30077e039040f4a3eee33233191419d418780aacbd4cf09

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26eb74b5fde656f3484cbbd23fef219447036891c876a7b5e1a4001fa6b58570
MD5 0e19e52b22ea062218561cbcdc3a3134
BLAKE2b-256 80fba6170e9cf1777ac7915f2b28d9a39f8015a3e8ccb5acb8978c8f72114ba7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7b8d5889474d6446c5965cb52b51783f844a14a9739598a3a5b2c89ddc2a0bd
MD5 dd538c276f46640865e58a344a3e2e20
BLAKE2b-256 4c3c3c4310fbea39a8a02513ec195a866e4262f345974fead7883be3828fa83d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b955138d2e24d3096c0f0cc86b382384e8cfbb598e4081953d9974c980fd61b
MD5 24b2a81b92afbbb46b17bdc6066d15c7
BLAKE2b-256 4e31df526a3455e00d8fe024d84a860d0e945238889ce6545f5d5227d103da94

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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

File details

Details for the file yamlrocks-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for yamlrocks-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f1b12b7682c2a85ef70adbd9796cf77ac4c9e9171210f9e24fd99d23f5c0637
MD5 c2152c94e973706f05b3998b8bbc4def
BLAKE2b-256 0631b50e11aa98660022325ea623f30cd5917c83bb2217306c0ce6fb180851db

See more details on using hashes here.

Provenance

The following attestation bundles were made for yamlrocks-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yaml on frenck/YAMLRocks

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