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.0.tar.gz (253.6 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.0-cp314-cp314-win_amd64.whl (698.9 kB view details)

Uploaded CPython 3.14Windows x86-64

fastyaml_rs-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl (980.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl (901.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (768.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (722.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.0-cp314-cp314-macosx_11_0_arm64.whl (686.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastyaml_rs-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl (738.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fastyaml_rs-0.6.0-cp313-cp313-win_amd64.whl (698.7 kB view details)

Uploaded CPython 3.13Windows x86-64

fastyaml_rs-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (980.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl (901.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (768.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (722.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (687.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastyaml_rs-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl (738.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fastyaml_rs-0.6.0-cp312-cp312-win_amd64.whl (699.0 kB view details)

Uploaded CPython 3.12Windows x86-64

fastyaml_rs-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (980.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl (901.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (769.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (723.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (687.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastyaml_rs-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl (739.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fastyaml_rs-0.6.0-cp311-cp311-win_amd64.whl (701.4 kB view details)

Uploaded CPython 3.11Windows x86-64

fastyaml_rs-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (979.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl (901.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (768.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (722.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (688.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastyaml_rs-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl (740.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fastyaml_rs-0.6.0-cp310-cp310-win_amd64.whl (701.4 kB view details)

Uploaded CPython 3.10Windows x86-64

fastyaml_rs-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl (979.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl (901.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (768.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (723.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (688.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastyaml_rs-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl (740.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: fastyaml_rs-0.6.0.tar.gz
  • Upload date:
  • Size: 253.6 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.0.tar.gz
Algorithm Hash digest
SHA256 65ea64413bdf563a4fab5026021c8fca9e3b28556d5968d35d943cb63fcb6e92
MD5 5353aafcad9e966c184476bb54a024f1
BLAKE2b-256 ea96f409d5d17e5a13f5a7844443dca80dc60befccb108805675e013906446d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0.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.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fastyaml_rs-0.6.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 698.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastyaml_rs-0.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 727657a84586a20d926fdfbadb5feb66109c61ae3e536fea08ef196e27c2d173
MD5 3931dfa7815433c5dbd67fb5ddde5aed
BLAKE2b-256 800f16ad75140532d67d99eaaceaa0faea77c3faadb87db8a26515ddf4620c22

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cced9d0fdb203bcd31e25f1e72b03b06da4cf1a2a17f206dbc6578e15a95f746
MD5 f717f3a02d2e40893ba74b5f1b15f9bb
BLAKE2b-256 927f80de13edf099b06664576fbd4c531aa990feee84caf58d7f4338c7b19423

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efee967526bd5f6347ef686722b5e76ba29a97474ab66d18ba3cf32d3d5a5932
MD5 c1cc1016861d2328b29da11f28ae96e2
BLAKE2b-256 e5c67b2de816bd2ccbe93ef2d72da6a1eae8e115284804ae25a402ca1be076fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d926e991c490dfd5a24678c163612aa0ce7940890a675ae908c0ea08e7336973
MD5 a92b1c7fd4f0b5eb18123b4071998868
BLAKE2b-256 0055361426bc2f3af93465122e1eea46b678bf6ec3f72ddb217648a65e3bd175

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ac6d1e039b7bd0a327cc1250bc7e99e6d1d531a14659f0422bc9712a8b8765f
MD5 ada11fb16dd7625b532e1baf7101466f
BLAKE2b-256 085978f78efe44c4bd8d5e586f253cd96a6ca7398d9f463b7e165a6d43513510

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c153ace425958eb835208dbdc65285226aed227fb5ccf2a93351b995addfaa32
MD5 cea99f4e4ce388c4e91ba9541b86eb2a
BLAKE2b-256 66f57feea05fc7b1632778945f3df222f51d40e69e387a142f87b44ce5d193b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 50b4fbd2c53813998f6d28457de3fa1ea71b038ab19a89da43cca0ee1fbe7112
MD5 be4d483e4d7c2598f7ea713a49223185
BLAKE2b-256 9e6e1163e87e6ed4a3decc729e1bf6fe2c08409e04b22d0ab19601c309aaf401

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fastyaml_rs-0.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 698.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastyaml_rs-0.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 25f48b78e6249b41cb9f6b87ccf7dc822971db15e0e8107b57f944315ccf5d7c
MD5 734742c7c0060a999a5e20c2662d69a2
BLAKE2b-256 e619ff83ae9c6246231d678cd3da73c8c5cfb3a7ecd3c465a8be8c4adf4e2712

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e17403d4494465ebf445dedefe21ad38cb16b4828f8775cb59bfbcfea84c413
MD5 f47c20e4a66f645c9a748bb2823851e2
BLAKE2b-256 a211e0662e15da367ba5d67baa1cb1989d3f8593f84c1d7fd0bd5be166427c58

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 635c30452b7937d24d89ddc027d31d62632714136567db12225d061d8703b5ff
MD5 f2695cb678983ea34d41538d149e2c84
BLAKE2b-256 d77d399d06353806178b5809539aaca683ff24e6f84919e4029a3b2206342911

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4257bad5ae9941d93ff7d3895046fe306f919c7fe5179b198cfd2843530c5ab
MD5 73d65b481fbdd7f77a0fc93870992b9f
BLAKE2b-256 2136daf47c48880aac0d359911d2bcb229b3284d33144dcbf34d9af6b7f3a08d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39e846d0ec3fe05eed220f2599f407df7854a363c6ee59dd3cc11a6e327c22ab
MD5 9077e0e7d29cdc9b3eb8b0bec92f2ba7
BLAKE2b-256 98024863be599201d7b4d053088ca93e7cae2b6bc8d13946b384ed825b117fbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d594b787ee020ed94204893afe7501f705a560fd6d53212740193c3ac2518eb
MD5 f147e2e064d2562343f40091db97c2e1
BLAKE2b-256 97c53d66ed780d47ea7fb6e9ae7039c871e08e351fd3c3b6eccc38670df25612

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c784ecf55faf499dab786d4751dd1e7f9fa388e3103a87ff757425d58b3a49d7
MD5 52f60fb32f5af33373ec760433719a7f
BLAKE2b-256 f1af8a4a7e4e5c5e8dcd90889677c8d3703f0d4e11797337ec39e3e83211e59f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fastyaml_rs-0.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 699.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastyaml_rs-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1b52276ef9d0c6a1b4784a7a07d25d4b09c1871ac644130667d77b0c8c8c37dd
MD5 c2ee22dbb05c5dcc29f17131ae752b89
BLAKE2b-256 bb454c0524c126e9f8e324ea89a190c931828e2451b9228050fa599bf19f2fe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f333e35d6cfa4faae7dfb13bdf3b83e1bedd1183907f2f952a8d574fde2c444
MD5 21e983c8a0db3f19c118f65f6e70eb1a
BLAKE2b-256 e34c2cf5689154623180a5f89be39ea539a8a0c6f7007165bb2b03d8d90af8e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b498646854b337a8b998c354ca989e0c69d1b5d0bda77ffd5acaed72d08ca128
MD5 9292c9cfc8a2fb783a4ecb74d42edc07
BLAKE2b-256 e5eb672418f5299d6439cd35659ca0c42076b479397cf3191071ec17629d6592

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 635ddb394b64090f4c15ea9a0aa4fd019060542e39228e0bb135a63a05c062e9
MD5 686065d18be9800d5b4d45bc997c02fb
BLAKE2b-256 661774ee7f132f36079413a2f4c51a51d91f403aba9bc00fad8923d6a1b2d6f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 874c22817b894450186b0b05df0a1d258a282ec06b01aef6b4a29167d11134ca
MD5 e834c793aacda385ecd0a6e8436f7081
BLAKE2b-256 f13a17b973057c8d193202025ebf3730c2485b2f4a726caddd220d1a1f5d644e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f59558dc8635ad2137a84130b5c1761e583d8f463bcce0c975ca533bc0e2357
MD5 c2a34e3941ed14de672bc96a87f7c7e7
BLAKE2b-256 966f7da17434202fd0041dc6394f1aace757d057607b3af825146aad2286136d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85ef68ac28a17fc75d26d8f4e7d820796da469be88d534f6ddc3387815ed4888
MD5 324c962c557045d0d02c328bedb24fe7
BLAKE2b-256 aeb98da03e69d3024856718d032b5cd1cc9b2ed0d3cc61d56a149e49d0d5bcef

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fastyaml_rs-0.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 701.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastyaml_rs-0.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 845237d5db99044c66883bb54b8b7ea9024f8f7da036d53b173aa3846999ad1f
MD5 f2d09cfcb28dd2bc19607901a77608c3
BLAKE2b-256 6ab1cde1993a237f2f641359df58c8f765036b1b211c8fa1cdc38d4cf61a1ced

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94e1ff55eedb02c46afc5ec75f4570fc1e0e2624d394e88eb5d80dc55d6dd692
MD5 9603d961d002ccb0812888a58b9f6fe2
BLAKE2b-256 f538500a6d017c574d3592c9d38df0533e12d3b505aa93d0c3e4f6da433bfb3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bc12e9b1457ab145f6256e79c20d2eff86bf9e0d20f4861a395d745bb01653a
MD5 cdb7f0934c4ffbc2b9b09a5949c6f6b7
BLAKE2b-256 536e468113d03c8af4d53fbae94e9b28eccd53a7da6d5769d9989822d764ec5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 effed6a4c0628b9a0539c733e82c4cbcfb369262669cac8ea40923a2bdcf28d6
MD5 a68f2c7ee8faf4d8961105894d966ea9
BLAKE2b-256 70e0d6f8f59296defdd5eb397a36e95fdccb8b62c81bde772f4173c4fe284c1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59e74fc8ebd87649c8e3c710aaa9c869ebb82221db7918553967173c0c155f93
MD5 9df9fc2cbe76642a6a7e7f382c665881
BLAKE2b-256 c8dd05e06cd44a190e1c8719d7ae5812b35c90b5a9aff8798566efde08ed067c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e0220be6f836fb9cb30a5b54111d8e235c7543b000784caf11c87a2f5f42490
MD5 179c48abde95325443959a68923e1769
BLAKE2b-256 85df89f49b75dbe221f89364b2ac6bd882c8cff7ed8207550616004e472ccab4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9d1203297d0b188c08f519ea68c1d7247500eea09f203953b643e8f0b09327e
MD5 44af97ca99608772edaeadaeb1308b1b
BLAKE2b-256 b7d7cbc68f67177cc844d76a7d88282de0dd792ea13b9e4097adcea9c23efdf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fastyaml_rs-0.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 701.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastyaml_rs-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 96428b30ff7f28d59f9c79a5bb4e68513e6423ff6a92a47ca80978e41b85da63
MD5 310b5961ee68f1db64202a7787d30dfa
BLAKE2b-256 253d5be79d0ee2cfb53757a1ca41e446cbdcc3819d3272c807d4fbe75ff5da2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca6928bb580a7fc65204c5138ecc2216bd737788dc2cdeaedadae300f7aa79da
MD5 727b980898612b1017aeabcca4dd58e2
BLAKE2b-256 036bfe8ee3aa87ab895b1651cdb372723be5e2f68da5032631acf26e4ca37e9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22fa66c135d0e72268a9552ef4dc02314190c17642a917af4c9f83fc7ab34316
MD5 4a4ae5830c4e6453e31b873f0b1c7216
BLAKE2b-256 05e40825a5aa9e501b6895434735c511418488337f8ded2f4a54ccd5052937fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f6ffe8666545634bd77af64e87e9428ee098cbb4580d8e068ba3e7e547a85bf
MD5 7ece3e186f34429628da01a3c696176c
BLAKE2b-256 168473cc9761eedc54da538d0ae507934f061adf9924ab69ab30280fb31101eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50d4bad2944f574e32a7193de700d74f42074bb7f621caf8d194c32cdab7f9b8
MD5 6758d7d3a260f375c9366738da704615
BLAKE2b-256 e2b05b668b4aacf9a8f03e8e46abdd1cb5b4018d15228d0a2dfe5b3b4aa861d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4620445a545b35bcd37a7aff898b73d2403fbae4b0b1dba52a5f1edc49c56fe0
MD5 264ed389f88e406d4539bc72308781db
BLAKE2b-256 15a1aef4acd62e47adf042c6bc570b90d55dbd8a000b2d3a56e71b6ebe2052a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastyaml_rs-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 28844079f0180ac5e4327c1100142ba220fed5b9d421ad11a4ac9e2f8586ae4b
MD5 b61808f8cb0f315ed233df024de7c29e
BLAKE2b-256 e5c38d40b85610972bab90baed4d0170f05ee8e176ddfd5bbb621963480389df

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastyaml_rs-0.6.0-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