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.5.1.tar.gz (214.2 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.5.1-cp314-cp314-win_amd64.whl (627.2 kB view details)

Uploaded CPython 3.14Windows x86-64

fastyaml_rs-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl (917.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastyaml_rs-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl (840.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastyaml_rs-0.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (705.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (662.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.5.1-cp314-cp314-macosx_11_0_arm64.whl (628.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastyaml_rs-0.5.1-cp314-cp314-macosx_10_12_x86_64.whl (674.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fastyaml_rs-0.5.1-cp313-cp313-win_amd64.whl (626.9 kB view details)

Uploaded CPython 3.13Windows x86-64

fastyaml_rs-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (917.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastyaml_rs-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (840.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastyaml_rs-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (705.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (662.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.5.1-cp313-cp313-macosx_11_0_arm64.whl (628.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastyaml_rs-0.5.1-cp313-cp313-macosx_10_12_x86_64.whl (674.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fastyaml_rs-0.5.1-cp312-cp312-win_amd64.whl (627.1 kB view details)

Uploaded CPython 3.12Windows x86-64

fastyaml_rs-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (918.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastyaml_rs-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (840.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastyaml_rs-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (706.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (662.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (628.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastyaml_rs-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl (674.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fastyaml_rs-0.5.1-cp311-cp311-win_amd64.whl (629.5 kB view details)

Uploaded CPython 3.11Windows x86-64

fastyaml_rs-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (917.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastyaml_rs-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (840.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastyaml_rs-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (705.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (662.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (629.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastyaml_rs-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl (676.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fastyaml_rs-0.5.1-cp310-cp310-win_amd64.whl (629.5 kB view details)

Uploaded CPython 3.10Windows x86-64

fastyaml_rs-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl (917.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastyaml_rs-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl (840.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastyaml_rs-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (706.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (662.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.5.1-cp310-cp310-macosx_11_0_arm64.whl (629.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastyaml_rs-0.5.1-cp310-cp310-macosx_10_12_x86_64.whl (676.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: fastyaml_rs-0.5.1.tar.gz
  • Upload date:
  • Size: 214.2 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.5.1.tar.gz
Algorithm Hash digest
SHA256 65ad400ca4d976cab3dba3f4c9f654ae4364bfd7f2e811ff9d16e04259b88f33
MD5 1b83532e01fd01634b46897eae349f9b
BLAKE2b-256 3540208bdfb8ace672973a9300ef194e35c5b33fbc0225c353ae8409277959e7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.5.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 627.2 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.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 effba085a195c63b864272db1b67cb48d622eb7c95fc517d807de71399929fc3
MD5 0a338b15e1aa63134234788c53968c03
BLAKE2b-256 763afb3136d2112e51f1d814f772007e6d824a5a9401dc1b3486e74275067701

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61eff1af347aefc38833466c140f320b2106e088f0d59518344d7bc715711ab7
MD5 af27c39f227ad103dd29286346ab0ba2
BLAKE2b-256 ef187040d21e87640e3c433c34d427d2171b0f8a1993b4a236219f5d1f74878b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33d1721f36544d76e4e132760964fe4e89215dccdca66c9b688e1a1312d0d9e8
MD5 9b4a1bd5c21abb859f54f1389e1184e9
BLAKE2b-256 d1109dc9681f66e362a394672b67c5d0175555f02094d9e1dc2597413d5a60e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee802ddbd3fdca1ef07a4cd674e428377d4d2e7ec0c52f145ead035ccd0a32c1
MD5 2834dd7cf77c117c760bd70b9fcaa307
BLAKE2b-256 51cb136f7f57b71e805ac9d905a808f9d152f6cc7c544c2a25fdd1f08f8ad2bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c4adcd5c9bc48ac0c17eea815ed2b6be3e167c95c2be35ddc841487c8480126
MD5 94488968458184cde82855d3a453b55a
BLAKE2b-256 fc1e3ecb5b46f8cae2179693ffaf980697f492afe6dd423c9bc8b3e2ab2867b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 663c54977d4440263c9fee7aa5cc8f36b5199a348233bb7f88c2045cc804e7b9
MD5 63fae87b4c038c47d58ccbbebeb9dc59
BLAKE2b-256 53e0e5795811225aba7f001e933e4f0807be154450caa417fb4c2eaac54ee62b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 424a81674a6dff63810fd8a3363e74605c93fb4471a8779af073fd2306cd99c1
MD5 adc5c122ed2d5172cab7dd27e5a8c965
BLAKE2b-256 3af71468daee5dde01a69d7a75041f6a7c086d9d2976926c2e64b76421f905c1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 626.9 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.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 966352547db39d780a3af3bb6aa2caa18e7ef44acbf217cac457c7cffdcaa419
MD5 51717f6931fa8d914779ce1ab153dd32
BLAKE2b-256 05fff8fb85eed5e9f995b335739e4469d2201b22076e226e0e96dc8560c24df1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a483e3643f41e1713d5a0e063095108e1b800fd15427d1ca3a50116623660a4
MD5 8dc69e779ea697809dc203bda2b27f8b
BLAKE2b-256 8fd53ec59879aab2bd184ecde9859a92258ecb8095d745b9a5b93d5acf1a2320

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b939b6cf04d20d0e08252ffb961639d9c19c1569ceee88b90fe36532abf96c8
MD5 3564d736ce4ebe2e30d5f6657746c4eb
BLAKE2b-256 491fde22951f1961f449d34517756891ef0280f6308bdd92931b127319e267e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecfcac4a02de98523f3792e7b50b95af16111f9e0f862773a9bafaf57654b43d
MD5 38720c1f5cde6daa0a2f8b3ca8475fa2
BLAKE2b-256 d20ba78587ad4380ebf7ac57631ab11738c45277d4d25ddb4247b6966c971960

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28542dfce11217d6df6f5eeab4cb70818944e0854f4e0cf99233b93a464d9a4c
MD5 51937bccd31f7790a3f31d17344d30cc
BLAKE2b-256 e97209c2b1477fe2b46fd173d5132842a28aa29a4930b9e2c41ec3d5f67ffa0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be657cad7430bd326ef6d79ea4c0246b8e6adc8f0aa132cf6a61298713e87c67
MD5 6fc4ce6d33707432a7bd97ff74ae1850
BLAKE2b-256 455855aa027572af6fd6fe24934503ff843e9f1d1cc2231958b81c500b8bb2ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a3f585089e6551639cf7fe1921993072a5c631fc3a06057a31a46eed9f23825
MD5 62e6ddf9b758d3ceb185278677e3a9c2
BLAKE2b-256 18853faf15bc1ace205d7f0edb94648c8eb8eb8de1eea2f36cc1c0b64415b6ca

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 627.1 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.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 080c369d9718eee970d22ecfe9688b1402102988866a80b2b14b82977ac07c46
MD5 24d029956108a25cb26108f31593209f
BLAKE2b-256 9e37212198967cdb0f2c94fbd9fae40f722e8cc94f7c41ba8aec9c946965440d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f44086730a0997c6b212b0ead8f620087559448de625da2be23f4f9ea05e4bc
MD5 aeca31710685a5290ea83133a80a0047
BLAKE2b-256 c6b19ba4ad5275fdb9e7fbf1bbb08b9007ca1bc75118376e9014caf83e828a32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7bdd8903b751d155e4954fa266752714485639839654caee25fb9599b252f12
MD5 6eec81160d0ee7d54d74673b0225be0e
BLAKE2b-256 bad58cbbaf12661459018ecbc4194b25e21a36a7ab8a75266e68d8c733791328

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d70adea6346231068fedacd0b7b7ff588fcabefa75ef51911b7ea9a24cf4c321
MD5 0021258f2f29b913c3e9f54d19668f49
BLAKE2b-256 e3389285b54e9371972c263ebaa513ef47620e2a7a41b2f5e583335c72bbcdc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d64109dd0fd66e977e0f666a2cb94adf453e547108558ce5761461860165b1b6
MD5 fb092f805cf99f9260c273400312b87b
BLAKE2b-256 9b6552c3671b0f73165a7d54b42f33a6fc332119a12ad21e86cd7faaeebf8525

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 685d72bb6de3a44897c7bfe567486c8bdcf912295b72e8fd6c9843d8b75f4b70
MD5 a8acafe3a320d62fc9303e1e161db27b
BLAKE2b-256 99b07d2c05644cb3d25091b821be6d9fb366b1f1932c16a7929183e65449e6d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e389ada846910048672913d35af9e5c5603626f6a6cd36e891886ff5b05495f6
MD5 4945fca7bc2a8cb9bb64ba150243c946
BLAKE2b-256 a58d54167befa395671ccfa885fdf6ab36944cf3a9a80c08b5c0cbaf1b36e68b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 629.5 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.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9392ab959cc593af159bb6fd2c90b65e7b0ecbb7320e63ea8933c8ede8604851
MD5 9778f2a1d2b30cebac1b7ef01d10e1ac
BLAKE2b-256 848d7a94d5301b5cd0296160aa1472c8c04170b0490c19a1ef453c01d64e2d5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a85152903c83aeceb2fc8550129c05b7c67e22adb2e9eb9bcc744ac6cd53ee8
MD5 0258bed4b870869bc2cde97596aa58e0
BLAKE2b-256 90298a4c530c87f5e3ed83b72aea648e6728ec964a6dd7a36ac068e8abe92c43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd82cbcccc299502bbad1d0cdc736c558e0e86c931734e5f5c915f87f70e6b4a
MD5 55c5d95799b5151493139a09c3912dd9
BLAKE2b-256 3752c9e00359118d4c744e7b92f5d6eaa2caec77b5698e258fc90e1a17b6c595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c06fde77306b181ff179a77a1bfa8861cc63ef2e7959ee0c25ca30894eab88d3
MD5 4d0ef24847af7006c8313ddf35986214
BLAKE2b-256 78c42399552a3ba31f13b830dc07b0e5cd84f35fa4c53df212bf911a6ca42867

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 033a347919db414f797445d068b216fbc48eb4ffa84d31624b618e09e4d6f36c
MD5 56a24b9edf9b53222f6f64570e395e6d
BLAKE2b-256 3e41d818e191ea3dcc399b963f1678698888d656ece849ed1f49969809f3d743

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 936183a0e0d51fbdad67e73a28bcc168b360865fe4ee08cbb2d0322e18c1105b
MD5 0514c4668c133343b63fbf26597a4f4e
BLAKE2b-256 cfbf5560d4dcbc15023fd3beeae9e1692fa2a5986a940f36262442adf42a99fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 91abf280173242c591e5cf3dfe404ff3273bf9fbfc86b4d44b261cbeb218b4aa
MD5 59bf6997645f4d9f990f29df0a82c3de
BLAKE2b-256 8575adae8ec2b77588381a97194e66c9560033a25068a5b20ea83c2204f657b6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 629.5 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.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a51a3ead95e21b7ae63bb3a3d38fa2db58ce70195e38a34e061892059dc9752e
MD5 5cb31e53a2c38d431ae5d4c01da0f9ca
BLAKE2b-256 6183234fdd73ef8f73eb00524cc28547398fee84f27db0a9da9e277a49551b9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dde4bc2bfb6f1a939b12cdaa07d77c92c40cffb2448a2333441358d289df9f10
MD5 982e61180467c389f1cecde7c58c9ab9
BLAKE2b-256 90a101077df122aa4a521375725891d23cd20fb53a24eedead5587b386ab4569

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e4538a369b793ff76c543b0fd954172f9ed7a6dba1f540713d41792c2cecb79
MD5 3c4910ec5766007022efc06b9589e1c6
BLAKE2b-256 f90072702043f86ed35ab995e97d68a1c2fa099ea04242bf768572933139db90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d551784dfe5443b1a3cfe07443b0a89d9c1cfd067c130d4efa35934754431d6c
MD5 d6baa70441d9965590590038c52063d0
BLAKE2b-256 c6e744bcf0d0204947fb455fcdc26b8bd3995618ff1380fc665d2447b43ba431

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 666146cc411ea3522cc3b674eb5310a3f0cf3d50224f54b29df38e95cdc8e122
MD5 7deaa8cb8ae1276f0ab54838b6bd775f
BLAKE2b-256 c4707222fa53a1e2e3e34e5e6422a256e83cc9cb3371ba6e003d41f37c6ba649

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5af606deaec2aca08d5074014b83caf85d7a5c365d8b7104ee3c6733350466d
MD5 0ca4816fd036d3570124e438e7bfb125
BLAKE2b-256 8d67dbca7c0dea2208ddfb45dd7155c7748fdf3f5159c4dfeab1db6c8362c0cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5dc6c5412ef96c83bf9336335120439e142e07b1820a0052ecd1d0f537a5451
MD5 f7d353390dcf2bc5af74c6aaa9eee3dc
BLAKE2b-256 8acba82f89c5c73059828cec092a70d42ea4663174fc9f3d14eeae8b7a028e0f

See more details on using hashes here.

Provenance

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