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.3.tar.gz (266.5 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.3-cp314-cp314-win_amd64.whl (709.6 kB view details)

Uploaded CPython 3.14Windows x86-64

fastyaml_rs-0.6.3-cp314-cp314-musllinux_1_2_x86_64.whl (989.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.3-cp314-cp314-musllinux_1_2_aarch64.whl (910.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (778.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (732.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.3-cp314-cp314-macosx_11_0_arm64.whl (698.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastyaml_rs-0.6.3-cp314-cp314-macosx_10_12_x86_64.whl (749.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fastyaml_rs-0.6.3-cp313-cp313-win_amd64.whl (709.2 kB view details)

Uploaded CPython 3.13Windows x86-64

fastyaml_rs-0.6.3-cp313-cp313-musllinux_1_2_x86_64.whl (989.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.3-cp313-cp313-musllinux_1_2_aarch64.whl (910.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (778.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (732.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.3-cp313-cp313-macosx_11_0_arm64.whl (698.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastyaml_rs-0.6.3-cp313-cp313-macosx_10_12_x86_64.whl (749.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fastyaml_rs-0.6.3-cp312-cp312-win_amd64.whl (709.3 kB view details)

Uploaded CPython 3.12Windows x86-64

fastyaml_rs-0.6.3-cp312-cp312-musllinux_1_2_x86_64.whl (989.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.3-cp312-cp312-musllinux_1_2_aarch64.whl (910.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (778.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (732.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.3-cp312-cp312-macosx_11_0_arm64.whl (698.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastyaml_rs-0.6.3-cp312-cp312-macosx_10_12_x86_64.whl (749.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fastyaml_rs-0.6.3-cp311-cp311-win_amd64.whl (710.8 kB view details)

Uploaded CPython 3.11Windows x86-64

fastyaml_rs-0.6.3-cp311-cp311-musllinux_1_2_x86_64.whl (989.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.3-cp311-cp311-musllinux_1_2_aarch64.whl (911.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (778.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (733.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.3-cp311-cp311-macosx_11_0_arm64.whl (698.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastyaml_rs-0.6.3-cp311-cp311-macosx_10_12_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fastyaml_rs-0.6.3-cp310-cp310-win_amd64.whl (710.7 kB view details)

Uploaded CPython 3.10Windows x86-64

fastyaml_rs-0.6.3-cp310-cp310-musllinux_1_2_x86_64.whl (989.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.3-cp310-cp310-musllinux_1_2_aarch64.whl (911.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (778.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (733.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.3-cp310-cp310-macosx_11_0_arm64.whl (698.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastyaml_rs-0.6.3-cp310-cp310-macosx_10_12_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for fastyaml_rs-0.6.3.tar.gz
Algorithm Hash digest
SHA256 c74363052a44e0266b5e42349887bb638a67c83fb3aea35bbf70799f23784fb0
MD5 e99ae5c62a3e4c1f7c54b108459ab3b1
BLAKE2b-256 8a3cef16b75a8536a63b5f085b673b09c981de23912b60ef9b5db8c0512e48d5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastyaml_rs-0.6.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 34c29f4bdf4a7e21ee2e3188f2c02c4b731be7169fcc3786e221c2bd6c13d33c
MD5 16eba4b843367de9de572c095dff09ca
BLAKE2b-256 949307e1072a5d793f92e32796fc54a2114d813fda5f50573a0d8e62e2e12a6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 daad00e2472a4cc3f12c365440a97cd667ca7315aa04352c05ac0005fda3e118
MD5 5a8c850b00045f506c3ebbd4f82c26f4
BLAKE2b-256 266388102585ca9b8f1397b6520a22ebbc66200d12d3730c4e9431c00c12c6d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0e6db48b5a46ead01e16d6cf83bb6999dff2786f2747e00602a8dd8cc6b5870
MD5 56f4781bddb6b9db281d0fc59de904a1
BLAKE2b-256 8610d75a2823cae6ca31cb792a8f4ac24603cadb58b5d7e2509b81d686ac8775

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6cd7b387758a4dc240daf42292a25996d993e7ef9d7ac5291eacb9a557f3892
MD5 ae69ba3cbab2edaba645eb138cd6eb2a
BLAKE2b-256 356aebcf28b2731486a30f93d25fbbe80ed926bda9e16d2110e27543667cd426

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ce61fa6406b85506aa35babc54b42411badb961a5deedd2f9e3de62082d7584
MD5 722f5571ceec2ad5e38ae8e9f25fd426
BLAKE2b-256 2fb6f8decc0b1d0b0cfbc274545e36edbea0a8a156979dedf638bb8a29f4080c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acb862768dc0979006d2c13bde346433875b8901464117bdd5b7cd6af53571c7
MD5 a7c98ff1d262ef746365c4171775ced3
BLAKE2b-256 4e95a0ca82d62918e53bb39e2d9ef1663ae8e3d1ffe364924d8aecec9dd59347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6710892a260b42b689186926ba7fee7e6a71132a89e2ff34369c127ae1fe70d0
MD5 15973a0aeeb6dc5441b1ac91de116683
BLAKE2b-256 44f2ce6c248ebacc6f019411928d9ab4592abdddb5198e90116308e5c2440fec

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastyaml_rs-0.6.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8f2c0828c4c742a93df02e182d02ecc8ff5ce1aaa34a3dbdc193a1f76242425f
MD5 4550502a33496535c14b0a4a9759626e
BLAKE2b-256 89b0ac487c955b7265c4ebc91841be9686e9b3f4a218a5588dc8a00d845a51a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca355019e655a4509b3f44d878b760a682fe68d391e42aebc40c1078fa8bfb70
MD5 f63ffcf0ce37aee5ef5a18ecb05509bf
BLAKE2b-256 4d5a4cfd6b68d1e154a1a8c1e2af81a510a99696c6a287b892cb9efe686899e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66a0b410c1835a945381987413d79eecca81bd31bca87e861ba6100c99b1f606
MD5 88c78aff3a809420d675224cd6e4a118
BLAKE2b-256 b419c4cda6d95800f0be6c3f755a8681bd413ed8e94fb3fcae530bb692e2c69f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec3a4eca8c82b0395bd711f5089980735a8bb5ceb362adcb9f99bb7f40099fef
MD5 31a1399fc5a6de5bd23c78880296a9a0
BLAKE2b-256 1c1dbed549db62d0fdab8b5e2dfd08d505017396e84a0cb981018bcaf7a9e0d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9dc62b65bbb776627535db73f40b2c9725ef6dfaaf6593269329b20ab787a1f4
MD5 fc7f3c0c43c781143b099c3eba38d5dd
BLAKE2b-256 ca375dd263bd189860c3522ae22adb6f624968a0cf0474fe4f585b77b5fd6786

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd42247d88f91c368672af37799c0d7005089d662ea77b81f3a0c6d88518e33d
MD5 18bef37d6c7d61213386ffad9524c8ea
BLAKE2b-256 e4704098e899fb41de2576057f424663fa94b2657c7de1ac07e01e3f81b10fc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04e3e935006db915afb7b1155597b93a5ea5b3cf562e94ebf7a18f62b3485b81
MD5 7ac8ac2810d84a1a1006929810e90f37
BLAKE2b-256 dabccc52137f257d35999fed0a71f79de527630c6ff90b41322e762172e11394

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastyaml_rs-0.6.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 750e6aebdecc1ef7edc449cdf63b31a7cceb1f400860d17685877d2575d8729d
MD5 9bfa1982dd86ad9fb33c448c06798bb6
BLAKE2b-256 c14bd388018906a9918705671791000a88a88e6fafbe3de431acacb191cddfb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eadca6e74c54dd76c54e5fee5914db213d43e134e6a96678543650ecf9961f9c
MD5 f6304de0aeb2f3de24d619b05f7e5882
BLAKE2b-256 dbafe31b27bf1360be09fc9d3f1a455ee6410e436a8a0989c87b25abfa3dadac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c717dc4b9e4889fcac8d7c503644ac125b4db4216253571eec8104bb22beb87
MD5 80bb28fb04ef546cb157ff94cb465cac
BLAKE2b-256 52f0573e5ac3ea7a1963fb2ac814eca8a105c8a4d56b88866810ec8e4fa31afa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b09a26ee9ba9951f24750cd8aec9ff6d535cbfd0802ba231e00d842944d668d8
MD5 2d08b892432061bce78513efc03b3836
BLAKE2b-256 4e52aaf122b105b69ce970843da4b9009ce723374aa3ab58542dd4d01559c217

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0b7e95ee93438d423bca2f95f4f3b49786cc99c18b120ad99c5cfd0c6a6f0df
MD5 284c1bc72ba91d2886c014f5f718788a
BLAKE2b-256 7fa1c85db4c0f35bdf235642f6678bea3e2e0c6b1ed5b9101fb5e45cacce11d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1edecdbb8ec05c09b6968ab2673108015f922a8d9e1282e037b24bd94c548cb3
MD5 dfd71885565a2e96bf39feb1180125b5
BLAKE2b-256 eece5c3af5c5dd843c56eb0d5e8b1ed2b32d8f0efafeb895c6a3646e980bf694

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 023f79c08b8248230262bf23f4977bb981a2abc37c83657b3cff71eb4c09b234
MD5 6cbc2c97b7d0a6643c77eb73319923ff
BLAKE2b-256 bf7cd6166052a32bb1ef4b20f07535a25164da35cea3051b9fd7d53bd003b045

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastyaml_rs-0.6.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 75ed8f6b38dc121b9f3c9b3255ad4c1354d5d7b4c03739f1d49f4be97b1321eb
MD5 bdde04ee352dac41606af6c65e83702b
BLAKE2b-256 8f26096ebbb63b20b7818add93cc70c12613356ad0e7259481d780e5a672fd55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e42ce7299fa227f49c688f3ce45b706c8ee8c20052bd728e4e66a232e2a415d2
MD5 36e05685a94947a766a1a797e0fc9e28
BLAKE2b-256 80ebc1437c43ef72ee72b1a7db07b810669afc5baa0fd3c2f14a558a3d3ed9f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9aae0dc30e99a9afa1d164221af9030ca8e3952736139815fa3fef406ac22834
MD5 453153259df1f5c46d8e60da75f6527a
BLAKE2b-256 adffe2c53e6f7e680a263b0b4a3cf9bb26bb9f3101d716d6cb2cfa25e0d0fa5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15d93c88e046de358b91c6d15abb8bc8bd438525a559495ee2d48a124ffc4f77
MD5 8693e24a27bafb3210bb26a67610eff4
BLAKE2b-256 15fa0b1579975bac9850641b4e6d40dcc89dcc299f8df8c93cd4e571c9ce6071

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0655a30fdb954b246381dabc7dd66db04a1c2099c84d05ce49275c226ba5b926
MD5 026d848f41d2ddef14009b6388fee506
BLAKE2b-256 04edf33d9d84f208c6f3988e857ec8b47ee9871e5c4911f504bdc990a289f0d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24923d40ba59a5280b4778b256492bfbb2c24c5eece59562dfb21e7b34c6c0a6
MD5 be8a2460007ea03fcdf9dc4d698143f6
BLAKE2b-256 3af174fcf7a2f5c5e440d8ff50ed47946ab988499c63bca18d8179ad465941c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9d6fb49d0b0901ea52ce1879ed981049f037449572df94f885e8dd47e47eb18
MD5 0fcf01c6d9ec12a1e36c47f93d5acab9
BLAKE2b-256 4bb098a35d8d5428dbdce9359af83e22f5717dccd0f6a785c120fffe5c941e86

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastyaml_rs-0.6.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9e52c7571c4fe6db6754c299fb0af6fb8fec983ffdfefe1e0bbbcf740c06d318
MD5 96489e208f3f1650ef803255ec23e7af
BLAKE2b-256 db19fa584fcea896821a246f22e88b6ff69d2b1a14f3c348de1d8c2f1a6ae4ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8903c5e4fe56635db324e1b1bbc824c796bce31a243b4156e7f22a093e5a15e1
MD5 fb2b404d27778a3203aa38d9cee9e6b6
BLAKE2b-256 17927eced19a292da7bf98a4b76fc1178a32fc74a2c868c5155de89705e1a9d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 078502f605d5295f8f1953094e32ef3e4ac47528dbd5173528fe5fc24efa91d0
MD5 e08113b4f6e24fafa557dcb26eccb2af
BLAKE2b-256 a337345288c795bebb7d2c71e459062915a94fdaca4d0e02f5c6f18513227b62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ff2cd343523a962f56cabd9dd4a1e1ccea49d301460157ec59a339b748397ac
MD5 06edc2507019ffc5845a187bece3f6a3
BLAKE2b-256 56e6aed9a01c25d1c402bdf5b5476d04c7cacd6ba608524ab150c54e9dd8f876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca3e28b49640007cf2273f23985325bce6c3e6778f547b09ec19bdf3f4864899
MD5 53c48c627c9ba9b123fb1843187c34ad
BLAKE2b-256 54a64d888986afe46eef2bd1c821c42632d596f56f252afea9e2800f011a814d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 737f5af6c17a086870a81a2e1c91e59fd8dda781b60bede15ab8c20477359f3f
MD5 85b9feecca1f3783ee18b488e2de7c0e
BLAKE2b-256 745111a1c5a10b5825147b209aa95a298f64b7bf0026f9f16bb11ab780cefd14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db86b11db247cc4b091a98145236dff0cc6eba7dde36f760536dbdd5deb2b530
MD5 025ec87e780e0affd5dccbc5013f48b1
BLAKE2b-256 028d1340da907d8a0297de31b9ddf842f6e0c6784d0f40df890be99efb424558

See more details on using hashes here.

Provenance

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