Skip to main content

A fast YAML parser and linter for Python, powered by Rust

Project description

fastyaml-rs

PyPI Python License

A fast YAML 1.2.2 parser and linter for Python, powered by Rust.

[!IMPORTANT] Requires Python 3.10 or later.

Installation

pip install fastyaml-rs

Usage

import fast_yaml

# Parse YAML
data = fast_yaml.safe_load("name: test\nvalue: 123")
print(data)  # {'name': 'test', 'value': 123}

# Dump YAML
yaml_str = fast_yaml.safe_dump({"name": "test", "value": 123})
print(yaml_str)  # name: test\nvalue: 123\n

Features

  • YAML 1.2.2 compliant — Full Core Schema support
  • Fast — 5-10x faster than PyYAML
  • PyYAML compatible — Drop-in replacement with load, dump, Loader, Dumper classes
  • Linter — Rich diagnostics with line/column tracking
  • Parallel processing — Multi-threaded parsing for large files
  • Batch processing — Process multiple files in parallel
  • Type stubs — Full IDE support with .pyi files

Batch Processing

Process multiple YAML files in parallel:

from fast_yaml._core import batch

# Parse multiple files
result = batch.process_files([
    "config1.yaml",
    "config2.yaml",
    "config3.yaml",
])
print(f"Processed {result.total} files, {result.failed} failed")

# With configuration
config = batch.BatchConfig(workers=4, indent=2)
result = batch.process_files(paths, config)

Format Files

# Dry-run: get formatted content without writing
results = batch.format_files(["config.yaml"])
for path, content, error in results:
    if content:
        print(f"{path}: {len(content)} bytes")

# In-place: format and write back
result = batch.format_files_in_place(["config.yaml"])
print(f"Changed {result.changed} files")

BatchConfig Options

Option Default Description
workers Auto Number of worker threads
mmap_threshold 512 KB Mmap threshold for large files
max_input_size 100 MB Maximum file size
indent 2 Indentation width
width 80 Line width
sort_keys False Sort dictionary keys

BatchResult

result = batch.process_files(paths)
print(f"Total: {result.total}")
print(f"Success: {result.success}")
print(f"Changed: {result.changed}")
print(f"Failed: {result.failed}")
print(f"Duration: {result.duration_ms}ms")
print(f"Files/sec: {result.files_per_second()}")

for path, error in result.errors():
    print(f"Error in {path}: {error}")

Documentation

See the main repository for full documentation.

License

Licensed under either of Apache License, Version 2.0 or MIT License at your option.

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

fastyaml_rs-0.6.1.tar.gz (256.4 kB view details)

Uploaded Source

Built Distributions

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

fastyaml_rs-0.6.1-cp314-cp314-win_amd64.whl (704.2 kB view details)

Uploaded CPython 3.14Windows x86-64

fastyaml_rs-0.6.1-cp314-cp314-musllinux_1_2_x86_64.whl (987.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.1-cp314-cp314-musllinux_1_2_aarch64.whl (905.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (775.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (727.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.1-cp314-cp314-macosx_11_0_arm64.whl (691.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastyaml_rs-0.6.1-cp314-cp314-macosx_10_12_x86_64.whl (745.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fastyaml_rs-0.6.1-cp313-cp313-win_amd64.whl (703.9 kB view details)

Uploaded CPython 3.13Windows x86-64

fastyaml_rs-0.6.1-cp313-cp313-musllinux_1_2_x86_64.whl (986.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.1-cp313-cp313-musllinux_1_2_aarch64.whl (905.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (775.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (727.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.1-cp313-cp313-macosx_11_0_arm64.whl (691.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastyaml_rs-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl (745.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fastyaml_rs-0.6.1-cp312-cp312-win_amd64.whl (704.2 kB view details)

Uploaded CPython 3.12Windows x86-64

fastyaml_rs-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl (987.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl (905.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (775.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (727.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.1-cp312-cp312-macosx_11_0_arm64.whl (692.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastyaml_rs-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl (746.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fastyaml_rs-0.6.1-cp311-cp311-win_amd64.whl (706.7 kB view details)

Uploaded CPython 3.11Windows x86-64

fastyaml_rs-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl (985.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl (905.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (774.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (727.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.1-cp311-cp311-macosx_11_0_arm64.whl (693.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastyaml_rs-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl (747.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fastyaml_rs-0.6.1-cp310-cp310-win_amd64.whl (706.7 kB view details)

Uploaded CPython 3.10Windows x86-64

fastyaml_rs-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl (986.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl (905.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (774.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (727.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.1-cp310-cp310-macosx_11_0_arm64.whl (693.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastyaml_rs-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl (747.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file fastyaml_rs-0.6.1.tar.gz.

File metadata

  • Download URL: fastyaml_rs-0.6.1.tar.gz
  • Upload date:
  • Size: 256.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastyaml_rs-0.6.1.tar.gz
Algorithm Hash digest
SHA256 cf6b2b1a20ec33d3705c562184b9b8449651758852f403b01d2e252d0e843389
MD5 2fcc7151e4818fcb9756d651d160e4a4
BLAKE2b-256 2d328493a4fe4a452efe45b4ddfb2d0f37483cd7dd378acc9cce1a0dc27b9ae0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1.tar.gz:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c8440c08dc4cddd6c48e0c5ca1cc31b38f6360d206862fae2c4cbca80c70999c
MD5 7a3840c0c587d884856aa63e4cca026b
BLAKE2b-256 783a4fb5fcb97ddd85cc72752ce0fc194c8c76cf644e02140fa6e69347e8cdcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f55d5a7de4a02d9c73d5a6d0ae608671fcd2c62e01562e854414f01cb6f91a3e
MD5 8f40a406010fb9ac927942dfb447bb58
BLAKE2b-256 59b3c0af45f1aad9b32cb9b5eb9d45891059c82e74a3fc5d764417a274c97451

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed89de8ecad3f827d9d2a15c69f0e9e64532d12cdb8d102b49769e66f76b1c86
MD5 3bf56ef09706c20d27c72b203ff00539
BLAKE2b-256 d3c5aed0c60a38f75014d6b41073bee4884b237d562634fd3508e05a0ab01bc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63307b355a2e9b6ff019d3579f07292a2762e1bf4f1d43ce6c39865997f23787
MD5 69c0877c62ee6e25e0aec550a39533e4
BLAKE2b-256 1eb5d0520d5c5822e0d27f0a6010b0047dd1bb893e979c3e633bdb143c80d145

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e4896bca3b422715b15179bf149d7f05ebabb4516bcb312f94ed31be58cd57d
MD5 0a1bdebc398b97178e61b8d1a729bf3a
BLAKE2b-256 1cfb8436813c9db9c8443073204960dc1846e078911939cbf009b90c16b63c07

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fb38cc7842dd97dff5f6f454a8a72a6d4bc9e9b86577b0f41761f235aa66d8b
MD5 9241d50df6360b1b75ba6333c9c051e1
BLAKE2b-256 261276ec35ffd54f7e0515bc9c48cd85a6f49eee014df5288d9b1312dfa3c68e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85e00115897eb131ff78977d7e12cc45438baffaf856b595bdbf5da2b0658a73
MD5 84f27df2195a4c3279cbf2f07563658b
BLAKE2b-256 3c34b981f7ff41d02e68d16431148be92b2b32b6f5983096ac1fa7b5d657b736

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a63a28becbac3a9e451ef7970154463c9366a4587c4bf7fe37e25b2aff3a2105
MD5 4e3770e68aae09b24da3b194b9746350
BLAKE2b-256 b0258a211d52e203fc77b45865ae10d8cb7bd174c5910e1c2c34f5a3d40d73e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1e3117a423725407a21d0dc8b48a2e5f8c93d30867f1af19b5c65c1efa9082e
MD5 98c16a837a3013f6c432023a5c778de5
BLAKE2b-256 dda56f5f350e5a8c8e1562ebaf2dd08a893ea7d819ee12885adfedc886862327

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68295a9838a293bfab41727e334ac763452bcd38ebac25af358997f69c69d6c2
MD5 c831eb5b2018d1b7ddc75e7788e9082d
BLAKE2b-256 78d3e65b4ac7d456e6b514bcbeecccba3592ef2616ede94a72a0a0f90f9ae2ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 736f2399effcf022c7ece66c820da51f0c392e00b514ebc75eb1fe862cb4415d
MD5 74fa0e4a879c5f56b3b9ee54cb1e7fd1
BLAKE2b-256 308321a365016769face73436aeb24460265e9bbdaeafe5c9622161ba81ea0b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c77a2522edc799737af0661586fd980d7c1c01e124ea7536725f4082c1f40b16
MD5 b2619129f0db5d58eb352f85b953cfee
BLAKE2b-256 67a2588a3971d2645fabafab7f659607e3e1a30c9f9ba7b44f4031b34c9753c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaa4326aa901b02307aea047cfc71c960738a74aa214c3674a15c7bcd983d815
MD5 13ef7626a4b392b133e816bb2a41f247
BLAKE2b-256 eacb04dc179d2e0481707b723b9204aaf3d3f5c6dc131b2199160e91541d6758

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3dcf69781783a404ab3b77c1ec34fbb0524af2381cc78ed149d17be68f6c5e92
MD5 3de3efc3fa91d2fb1f611f79a7407484
BLAKE2b-256 ff4d3b424ef798ba33e1c13b7c72c26d350bfaff92669f92988f70d876a4a412

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3971a2f0fb8b99a7f84aa35761a6bcb359be1fc68a17c4238f6b4dc3697f8f71
MD5 4636a01541237e527a30ee703eaec8d3
BLAKE2b-256 237ac012dac5207f9379317d9bbba7f61109c417afc2c69c97434b1a6bda9e7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01a7362ef22df3e486fba065d22726d52732456bbe9939fbb5dc7ddac307714f
MD5 ef284517782efb0ca206229b46409e20
BLAKE2b-256 c23f1effb3d62d2b36ffdb9f480431146b7740170f2ffa34e12ac7f537d2107e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 221870a9452bd3453bf421f32acda5563acb7e379e5fd0a0d85421f78faaed47
MD5 08aad842fdeb170025b7814d2bcbe1c5
BLAKE2b-256 4ab5edc33618105fe129cba1893a57b7915975e65895522608f44c498b131d27

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f2a6ee1a512521f79feacd571b83561d4d1c211c296a2e939a5ba8b63b4f0da
MD5 6993a0298992606f4461ec69d1d9dac4
BLAKE2b-256 9f6d7a83081f7ee42166245dea17d5cf6800f617fb37955adec7ed845318a397

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f4d36630e514fcc79c641a19d29c04c20a89fef3054be4a688d004715d4e73e
MD5 f38734bfb6db3100d5bd1c710d6b6cba
BLAKE2b-256 6c0065e908c8ae267c8832159184b73797e1a171016cef940500dac6d3ae2e04

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f26da8d0ebf754bd4b25e922dc25e1b9465f9eec3be77669e6c4cd71a96f8880
MD5 40b95bffdf8ba77cbb9c2c457ec9f267
BLAKE2b-256 c8a9fb2634a88dab9b27cc10ddef18e9bac590cffe368871a179caa227e090fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f1f4c884bc043303313a66cce796d9d9b6e8bdc9c132b825fd8616713cba6489
MD5 8fa137ba593514293be68395a2022cbd
BLAKE2b-256 3e45f2ba4175afd7b28a52e3c58480cb532ed1ce624abc382e80d86c7c3e98ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e80dcd14a37195fff81557b3851016c5d3f54d104f83e8cbb5406f427642b4b6
MD5 3e35262af779f86f7bab07d24404093d
BLAKE2b-256 4ff18a16c11813a8d8cd80836a3e01dd2036cad194bd4a5d2943d15649965d58

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e9da6f9941518634518d11ce0876e0d907bfc564fecf5aea643034d473d94a4
MD5 95a8cb948320df6f121d8cd73f164d97
BLAKE2b-256 c7b6b7f2c8c1d8ad08e6186abe9d7baf73903bb2144053c244d6926ad1acea99

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77837b046fbaf397aebd56ec9e10f4257ca15fb88850ae0046ea66dd1e9d0567
MD5 e3d3d21850609ba8c8c5ba0ff3372dcd
BLAKE2b-256 4ccb0445de7fb999313fc4c783e2ca0fe15fa174663ba9e74229954466fe497d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee07b13b0ad67f7172491d7d5828bd8c42f6ed101df8dae2c6bbd2c350f8e869
MD5 4476aa9135b8551beca4d97092faa592
BLAKE2b-256 0009707da28ea732e16162f5402e9b35b3c7faab9f19bd96ff6120e6d7ff4e60

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3e2f832dbe440afd7b0beb7d73f11910d4455a3fabd3a656fddf5b636f7534b
MD5 c354cb9a6acc053924761771d1d3f8fe
BLAKE2b-256 08fbf2fe6782f8979c020eaa9c14768382f122996564524f774aa2e49d2e10bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86de157771f7c941cada6769e9be9b90bb838cab951ee06e79784b117ef6e5be
MD5 0e453ad625d9dfbbc0a914767cb2db32
BLAKE2b-256 9844a78c95b2b5462bef56b9bb68300ae02de5cf697a7db6d2191b8da21af610

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e28838c4c8ef8b54390c024bd12f00ea47ccc1fc6cc8fa62d103323eed2bcb8d
MD5 0eefbb127598a1b47b90eb07eaa35302
BLAKE2b-256 392c8ab5c4ab8440006e6edc2056d405ce1e7767e0bdc3416fc3ed798891a039

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e0072c83e75e9ce4343e024c4e3158154cee888b26900bde507ea8cf1d4d0678
MD5 571b5a80cced5751f5ce497c58a506c8
BLAKE2b-256 281aaf0a576564d64dcda11857cb4b85e54d4d38f34c07361745e9c87ab0de3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cf532dead0cafb30bdac71bdc0ca6718bae0c16eac00bef3ce743f449336d5d
MD5 39fd9af6950a24794f1a3d381618be19
BLAKE2b-256 c6d02aeeb7a5ab4b2b792b56c8ae878d4287b6ef2d8c85a3aac8fdacb9ec6183

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4dd084c9e77a3801819bf39c2476bdf2367f7b2f16475e1d64cfdba662d36860
MD5 df19e0ef0a7df8d35c62d46f22462233
BLAKE2b-256 d68c1f6ef7e5f3fa96e149898aa4e2982844b5d7d5a6dd4c692301cf0b9a8ecb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f33e41973a9d26618dd0b5631e18c57594b5cad544df4f4464f2463ffa2b2892
MD5 c83d578dc4de054c5a8a59d5bc26b5cd
BLAKE2b-256 f4e5356ba54d5273832b1a9e87a6567f4e1864abbe8d3fe22b77e258de9a7bd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0fe4d8f185a5611ceec1b8ed5e5f665b1eedaf3652fc6e0898308b4e12b671f
MD5 ea95fed8beaddb4c7c775b0f3ff85f9f
BLAKE2b-256 5337bf99eca001cdf26a87c4e679570fe5d7b1eca4e6c97a9d6b5a9ed25e72a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bba974de8f5de7b94ccaba3f264db26de25c6acd772f3cfdb78e7e858017e613
MD5 a5b39aa431bf753612eb3483d0dec827
BLAKE2b-256 b3c14b28e4e1fb92e676154e306e529c329fc487425804e151e12b0d40ea57ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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

File details

Details for the file fastyaml_rs-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e8dbef3b113da8e502b2d9aaa5a89046b1bb50bf2ef18c23abeb967b9cff7523
MD5 354706b69ed2c8d235701b5ddb04df28
BLAKE2b-256 ea9cc5e7d59c0dc6f172c0a408c698d2d6ba78cb0a37196515b2ab840a66dc81

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on bug-ops/fast-yaml

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