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.2.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.2-cp314-cp314-win_amd64.whl (626.9 kB view details)

Uploaded CPython 3.14Windows x86-64

fastyaml_rs-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl (917.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastyaml_rs-0.5.2-cp314-cp314-musllinux_1_2_aarch64.whl (839.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastyaml_rs-0.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (705.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.5.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (662.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.5.2-cp314-cp314-macosx_11_0_arm64.whl (627.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastyaml_rs-0.5.2-cp314-cp314-macosx_10_12_x86_64.whl (674.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fastyaml_rs-0.5.2-cp313-cp313-win_amd64.whl (626.7 kB view details)

Uploaded CPython 3.13Windows x86-64

fastyaml_rs-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl (917.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastyaml_rs-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl (839.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastyaml_rs-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (705.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (662.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.5.2-cp313-cp313-macosx_11_0_arm64.whl (627.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastyaml_rs-0.5.2-cp313-cp313-macosx_10_12_x86_64.whl (673.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fastyaml_rs-0.5.2-cp312-cp312-win_amd64.whl (626.9 kB view details)

Uploaded CPython 3.12Windows x86-64

fastyaml_rs-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl (918.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastyaml_rs-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl (840.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastyaml_rs-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (706.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (662.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.5.2-cp312-cp312-macosx_11_0_arm64.whl (627.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastyaml_rs-0.5.2-cp312-cp312-macosx_10_12_x86_64.whl (674.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fastyaml_rs-0.5.2-cp311-cp311-win_amd64.whl (629.0 kB view details)

Uploaded CPython 3.11Windows x86-64

fastyaml_rs-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl (917.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastyaml_rs-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl (840.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastyaml_rs-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (705.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (662.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.5.2-cp311-cp311-macosx_11_0_arm64.whl (627.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastyaml_rs-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl (675.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fastyaml_rs-0.5.2-cp310-cp310-win_amd64.whl (628.9 kB view details)

Uploaded CPython 3.10Windows x86-64

fastyaml_rs-0.5.2-cp310-cp310-musllinux_1_2_x86_64.whl (917.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastyaml_rs-0.5.2-cp310-cp310-musllinux_1_2_aarch64.whl (840.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastyaml_rs-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (705.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.5.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (627.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastyaml_rs-0.5.2-cp310-cp310-macosx_10_12_x86_64.whl (675.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: fastyaml_rs-0.5.2.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.2.tar.gz
Algorithm Hash digest
SHA256 d5b5593b6345fb71b1cecf16a0209ef1a7ed47ac900c24e5f88c326d4738ac64
MD5 1523e1f92edf6174a06499219b3b263c
BLAKE2b-256 65afb5e53771c92fa91f4879383a6f4afdfd99f0a0d2b73fe738e1deacd74f37

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.5.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 626.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.5.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 28c098b143e54628a261fce3ba6198a57f575d7936f6503fb74bf8b661426fd0
MD5 d3898f5e97ad56aec4799890fd044ccd
BLAKE2b-256 1c06d52e4b9115a19fe67e2bb48fe331d35e093c44c2077615682489ba092810

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ddd6178efe5186daf108c881fbfa585786951cfe1034bf78b3a7cfba780be4b
MD5 955b650a6676cc955b3f7e77d1b01456
BLAKE2b-256 7ce09c682fadb81c0deb29830902187915995dcb11c573c462c9aee8c9e83eac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eaf1bfc53e77d88c002609b8a2ffa726360e46d579ee55e276c8329d832320f1
MD5 67420b112a2c4adcec0f51fe5672e359
BLAKE2b-256 14e793b93df3086bb4151e696119a012d3b2045f24746cf682cc7e8a1df22924

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cea23c472269fc4367a988bfa831852790859361dfc219e6d64c80f19c480389
MD5 ccdd9c3c28e000510fd94acc2151ee6d
BLAKE2b-256 98691307b6d32be5151bd9b3fea4c5dcf0358e30c26cdfbf4b9b928259a00bf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 adb283b2f8ea9e8470555990021093ee15b017eaf7f9d146f2e051ab0a95a044
MD5 b0943cdd0f8dc3ddb0bafac778408d82
BLAKE2b-256 1a2a4826d88d147aaac0e1db530a25e7f5e63ff191cf40f26efbef4ebb6638f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4bed59664775b79db94ec68a7ecf61e3d4dd3ed326ebeca294fc2d933a8eee3
MD5 0c3f543fea2c7651b8376c04dbf00d06
BLAKE2b-256 d22d5bb5e86b3373929c7a96f9dbf8466dbdc5f12e15afd15abf4f558f2908ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a102ac2ac3fcd537455138dad4d81a8f5c7108fcc6f718c79be3860c00e7f6fa
MD5 ee39ddddacc44401e597fcad57a7f4a3
BLAKE2b-256 55c5c301026fe9456268da0402f0f3a1d3bf3ddc73848c3856f26397848f9277

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.5.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 626.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.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f99f6f531efd9dab24434fffc61c94019f3723bad7abc2ba9e4ca4ee150f2c3a
MD5 ab6aa485573f0f1b29561d72468a8cbc
BLAKE2b-256 1a056c93b12aceae7b4d23727414a87de1ba36e93380c83d42762cc0f561a883

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f31122e94f2eb5deb2c6b1e67d027f63a84d61ac533924013828947e9f3e6bb1
MD5 cbb907a3ee834168516ee6a82babd4a9
BLAKE2b-256 595552de25001882c71ce4a93170d75dbefb182247689d30fa0dc52c0e0378ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b84fb078b76860a0015913c81414c54aa0a42877e3bf35524124bcd14a257af
MD5 3a09d0b62c45715d3f56fa45ad6e8e36
BLAKE2b-256 cb2c18ef13c96c87c0534d9c982c7bda0c2cfa4884496fcfecc7594bd905a8eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3d100e9ce3cb545ad0f658a644a568dab3d1dccc67fe6c37cb27da706af4e2b
MD5 6ff7a3b967f3ca7c52855cfd16cc871b
BLAKE2b-256 a13d63dc3f931681b367613174fa9b46ec0cb181b9f6b61d3697913b79beedb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd80816f94e1e8f84dabebbc315879fa327b9872a97fb028037e2b49246b52f2
MD5 50b020482df934f2316a099f0ba76182
BLAKE2b-256 6922dfc507ab6e52646392feccf8b5273b17032a64c570acfed5fac7ed5782b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fb0adaf49caeff2ac8a015a557464221961198004457ca79d789969f07e9b87
MD5 7f29693e80e06d49f3be3b7525a265c0
BLAKE2b-256 769576d4200a78a4418f4be18c17d59ac6f47e866d2faa829698b4150d470cc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 271b8a6fb20f5b3496530b10fd8c117b3ccaa4fdcf38cad2cf4c5ebc12d2786f
MD5 71b025cf6ea1f05c41fb2d3cd182b512
BLAKE2b-256 d24c03cf16875f979e8798fb71eb3e1fbd3984043571d225f419feedbe609503

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.5.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 626.9 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f16db8daf9f8b316deaf996f6d82e643dd6655fb865617fbd17595d1bc1f14a2
MD5 0cdd8db722916653920b21a768c20ded
BLAKE2b-256 8747739a44acc3ace77febf16951cc02290a636f54f0ece81df2a1ce739c6a44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72694e5b407dced37eb2c132959bef456e7496037dd4a0dadd170f77ca4713ef
MD5 8a138fa8b26560575f41935738c852e6
BLAKE2b-256 c4bbb64a43f606a4bf09110dc2a0a8d85650f6be73e25169cdc3f289a25d2e2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bc842f3049e9aff64ca296a4c32132c33534acd4fda2cc2cedd41ada7d53129
MD5 3cfcef9d26fc2631580165a7cda1ca6f
BLAKE2b-256 23f6f2bdcfd890e5051dc162d0b444731c7662d980100e9e9fe9047a9191d152

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 845842ef6001fec0cf884326025755870c18f9abe3b22a2dd460b2e79fb65122
MD5 a957538ab0a4d073b367d7ad9504dc70
BLAKE2b-256 6c41816d3862bbed007afbde8a650d316de40c8b9f427f9127ca549e5f8b5343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e93b76c77e2edeeb0e3320c97afbed5e7c8a664d291ed57db024bc8a79fc451f
MD5 d37acabb3492cb86b737f5b10481ba37
BLAKE2b-256 d98bee392d593f13cbb032db0ed7fcd09a87ed456c1126cded97db21ee3b816d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbca2948db408b7c734daaa288932d92e164d8bf4a6e2125cdf7689575e84576
MD5 82166ed4e02b052c50b66fb4a80e7c3d
BLAKE2b-256 658de81f0ea091ed6952dbd7e7ff21bc8f316b1ef344c6c6fde0138e4b9dd09e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 81a6245abc8db329043dddc53a54e9c4645409fa1087e5a4f3f9ebe061085a9b
MD5 087cdca8a5c3c5f488cf54dcfaed6378
BLAKE2b-256 85f58207589aaa20a02e4d2fa101e7d933426070883aa756f3cda3d14d94e9bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.5.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 629.0 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e5997775cb0ac6624660bbb6a9090dec6dcfc9779e11e2b9d08cc95ead4926f4
MD5 cbe0f0ec2fde95f37577f03ca6691046
BLAKE2b-256 de96748fd11e5e4cd982f7a8e30b3385dbe0d348f08d7b021f1fb7283c5f54f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a7f054bde71ff0fba7db8c0d6af67e632807044d9444eee0f422fdaf7dfd883
MD5 eded91ec141ff5c8e973313ffe346fdd
BLAKE2b-256 fff55c1f8db6caf26108cfb52de93827a61d0db16efebc1d7f124fb0c3447ceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b5b69e4857ae896092a393aa7cb4e73924d9f7c119586a83f878138096cd9da
MD5 17d55fd9077488e99ef537d67cb00683
BLAKE2b-256 41165723f45487b04ed7d624c5657bde9d93ec3cdecabcfccb812c8ceefb52d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66de79e0e456d1edd582aa97e734bc5743c09158f85cb48e668ad4ef75298f4a
MD5 0a4993ae8fc3402bab7d3e639034f996
BLAKE2b-256 330f229e1a3eee701bfd548ee0b6c64a3e9de4781374193460a403c403e36f27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b96ed10798cfb24f27d280ffa494c1f672e30bf21f2fb13623d7a24f88a7a33
MD5 ce865ee32d7db8433024aadd2461dc6d
BLAKE2b-256 caf01ec39d62b94bbbbd95235a8a60f82c1286a3014ba08c8651601e2a42ecef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24d80ae96ddbeeddbba22eec88eaa23a584ab651479f8a765e5a2befce0ef3e9
MD5 4e14e119e742506b30ff30f81d2522fb
BLAKE2b-256 cecc62f6026d0b6475c1918f30fedb0aeceb52eebf4d08818c825ed9772e4f8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8681c771c316c036371580c34ba08cf1ffba2b57424b2fbce3215400461d7e83
MD5 37e031e5380ebb52e650fcada646502e
BLAKE2b-256 e1b4c09d5330aeb97417414b4206d44ded9a610d081ad7067ee86bb4533e3a25

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.5.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 628.9 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 71b859ec2eecb1a51c6b059d612d50c7b111d063cd08d4028b67b52696ee79dc
MD5 688ed5af3ec4d08ff15728180c4ad45a
BLAKE2b-256 b8707d2fb24b847b7c2ba6e83b96b9980853314de1c7f378960b1e6d90951702

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a44d9f6e86e48dd055b72a5ffb41e7280975095b19037aea58e5c553b8cb004
MD5 1ceba3c9da188ab46c30930690bb17ad
BLAKE2b-256 9a613e3fbdca9023e58d4a0bdcbc949bee00f5ace9bde96fdb3effd219014301

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e991b6329dedd911ef702c2880764ba19a10e7fd4f130cd35416f0a61df688c0
MD5 71c725fb3608eceee3c1f0f43289dc8a
BLAKE2b-256 519657a159d7bb000f9da5d54d1b67dac267e86be762d360bce761b84663fb18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35ff0cf0e5730b9447880d6d6edddc64913b5c3cd607680f5045988735656362
MD5 f85b2f2b9c9a5532a74b07973568a9f6
BLAKE2b-256 85bbc1d3d86f969f955435bd57e7a21de76d0bd344b1771d84ca57345fe0149d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9d4b665fdda565404c9b21284ceafb48679b241e93b52aef5570cde3cd4fed9
MD5 0012e38cfecbdfb07fb4527c4523536f
BLAKE2b-256 570a74a67353a14669f5963064cbe1032d7e25ef0ead871219ed8183caa68644

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 121932e5d044d164217bb533ece622eb2357bed0838de3ddee96bd4d16403d09
MD5 3e5698597ce8f16d1c86e65b700834db
BLAKE2b-256 77c2476e97467814c7008574989f683f9310090b93698b58dbdc265ac371eb86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.5.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f456a7036663b8f0f0f08e080dc80085ba29e840af11864bde9faf6330bbe2ec
MD5 e2d0feabcc852e033cd6c7ba6d067c87
BLAKE2b-256 b32c7f4f7739d69af9906a6d4d4e648181bc1b4557a9e46761d4e93a42bb4f13

See more details on using hashes here.

Provenance

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