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.2.tar.gz (266.6 kB view details)

Uploaded Source

Built Distributions

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

fastyaml_rs-0.6.2-cp314-cp314-win_amd64.whl (709.7 kB view details)

Uploaded CPython 3.14Windows x86-64

fastyaml_rs-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl (989.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.2-cp314-cp314-musllinux_1_2_aarch64.whl (910.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (778.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (733.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.2-cp314-cp314-macosx_11_0_arm64.whl (699.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastyaml_rs-0.6.2-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.2-cp313-cp313-win_amd64.whl (709.2 kB view details)

Uploaded CPython 3.13Windows x86-64

fastyaml_rs-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl (989.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (778.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (733.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.2-cp313-cp313-macosx_11_0_arm64.whl (699.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastyaml_rs-0.6.2-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.2-cp312-cp312-win_amd64.whl (709.4 kB view details)

Uploaded CPython 3.12Windows x86-64

fastyaml_rs-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl (989.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl (910.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (778.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (733.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.2-cp312-cp312-macosx_11_0_arm64.whl (699.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastyaml_rs-0.6.2-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.2-cp311-cp311-win_amd64.whl (711.0 kB view details)

Uploaded CPython 3.11Windows x86-64

fastyaml_rs-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl (988.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl (910.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (778.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (733.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.2-cp311-cp311-macosx_11_0_arm64.whl (699.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastyaml_rs-0.6.2-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.2-cp310-cp310-win_amd64.whl (711.0 kB view details)

Uploaded CPython 3.10Windows x86-64

fastyaml_rs-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl (989.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastyaml_rs-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl (911.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastyaml_rs-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (778.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastyaml_rs-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (734.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastyaml_rs-0.6.2-cp310-cp310-macosx_11_0_arm64.whl (699.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastyaml_rs-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl (750.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: fastyaml_rs-0.6.2.tar.gz
  • Upload date:
  • Size: 266.6 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.2.tar.gz
Algorithm Hash digest
SHA256 0c01779a8877a688b68184ff92546b26ca1a49ecfae029db2eb127fb1f422090
MD5 0f411ef9673512cb56160f27d0cfc77c
BLAKE2b-256 ba2bbd47b3f3e8f672c88149b3dee7657e7c7818aab70a1b541ee5b480bf10af

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.6.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 709.7 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 32c8674acd824876d0609a4bd07a4e2c1d9ec4241b7f52c55817be208d990f1b
MD5 1d452a6e5cc7c5c17eaccca49007b366
BLAKE2b-256 987952b7a5fdc4544f22a74711baa59e2e7e8794893b136378b88cfbb0c78690

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dca9d98ef8025b018ee24f3979bd095d0ec1af2cd0c277c50062aede257a5bcb
MD5 040efca5a95e13086cfe4655adb73401
BLAKE2b-256 393a9eaa188eb5f7e9906c15b7ad073fae3b644bb7d29f1616413d18cf8a48a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b500e891b64e8f4ca7ebdce2ef5d26ba8660d18609e81b239948ef96c3f52eb
MD5 9a585294354acc9df5ad6eaa5528c8f2
BLAKE2b-256 acaa1ebe70123b94714aed5037a10c0323f540be6d54748eed3d5c692ddb21d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ccac78183f83e5eff1d780a2be9561b5b45c9a289ba6d990ca1c501fda52c9f5
MD5 66a72c90d015d362dff4319959088f95
BLAKE2b-256 f94436946c447cc39a2a9b411aef58821e5672ae57656179dd89752ae1369293

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33429b80f060632a24e573afffec1a336014fb2f7dd4075e8c03f7352cfc7b05
MD5 d9fdbd763308797648b0b7871c34ca8c
BLAKE2b-256 480e668c736388e1e7cbedcc86fb7b979082c0de0c0c98345cae860b8e91d050

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 beac62848f17dee80ee3496c84c98870c32c986a832bbd7a08425550ef0c6e0a
MD5 e1d3b5268feed39678855f0988f46d09
BLAKE2b-256 5c24073bea16ae0d51c53eae4c24bc64d4eb7fc23aba570f68f69891540963e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e4714b7a65a345f74e2507bf0c09fcdf43818f325eda5e81d01279a7af6368f6
MD5 9dcb8f64673e2aee76606f6b5623986d
BLAKE2b-256 3d829fc040cd5446839660ab40e383f51ee69b531ea373636d2d5cc357f92867

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.6.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ffcd4d43c2bbe7788d206236bb3b6a550a0b1e645d9172ab041eb9294749918c
MD5 c72589b19efb59ea8af58bb86a1eda04
BLAKE2b-256 beeeec47458b171c9b716e437dfcae72c79c9f6152f7b5ad79e1cc1ab3a5cb5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4eba707c84d19d979468b118504b144ccab048d73d4f5bbfdfec2ca28f2c481
MD5 68823b743c9c50e075569bafe6d5024f
BLAKE2b-256 3b45c6177fbeda1cbf558325d9a39bdf1ba3a4849406af7f352e7cd92ef03bba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85c98b2403597db860eeb8cbc8500f2d845e0f0944e6001e1840460d802f8662
MD5 524fcf8f6143319f6abc0249b287bd20
BLAKE2b-256 6fa9fe1b5a3172ed8e9bc11e45cc14ffdae6e797781322921746b499b885ee6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f216d25b910c121f4518014a8655ed8664b86b9d8a31804148e5e73e9b6869fb
MD5 7cb72d55729190906da01698a22783ef
BLAKE2b-256 6821eeddb51bc06782a8229e484dac1b9426952e06900cddc425f293e21f4647

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b227179085f80b5b3d8f115c68cec872b2ee8325dd7bfd4171d3251d45ebddc1
MD5 0be0bf53ccd262493d99f9fb9daf9982
BLAKE2b-256 25e4a1efcc3310613c897329d4ffdca7e073a7d9179bbd4da2cba63ef638f7f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 658cac921e08d2394fa42c0e6afe315ded069750c693d869db93d2d56608e439
MD5 3da8532a867cf879522fa56697157858
BLAKE2b-256 f3846d8dc446694758ead7f34a24bfe274316f10a677117339c7b029321e2623

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c62c71f64154c1839cc86175a00e22f2faeacc761bbf055090ee2e7d2554476
MD5 2d15412827d6177cb78ec42c9e29df61
BLAKE2b-256 930c07e4a0e828d9aa0366a6cada03e5db68d803c51c78a2b3235e8ce47e1b69

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.6.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 709.4 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5e4bfcf36ad543260d9362cfea91c733ec6a47b75af86f1a9598f56d85537203
MD5 b1167e5f7a2a985e8e9ad3165e4e1f2c
BLAKE2b-256 9b18da9bf8b629fd9f6acefc688c61fb21af7267386a400e35dc51afd562346d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de65078cc5a3145f851f5a16c0e3f723ad7120a8a18c3882e9c27119355171ed
MD5 ccf217c9916720cbf7304f37edf06dd6
BLAKE2b-256 3e49499443e47445738f17cfb22f7b601dc4cb0b57d17a5cac017d0ca5a4c9d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d69f717da474d3fc93233cc004d4c92586a24fcdbfabdd18515657b71f58221e
MD5 18d99872b66716d9bd1bcc8a3e0b4a95
BLAKE2b-256 3db196c2059a8e6a5f582773f7612795d86063413f8e74fc654826dc3ab8f684

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 420fa7820f2acf0e7fe88d3043ddc32d4c45ef91d40a71304e552c33cd754354
MD5 0c280dd6a6a41ab8b271678aaedb8490
BLAKE2b-256 cc32e324cbc6aa0d95d8fe713f6aadb4317c6b3a2cf714be8844c7d26bb1ddd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba77e18e6a31b2c995878aa3319390dac36904f5e57e94ea21c8975d69dac315
MD5 8d462194c88da1590c74913b3620be7c
BLAKE2b-256 638e86e689ecbbe2278ba490977fe7854cd66333b7190daa972098a15b303a48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de5d4d40340c80fc0b1e7fef1899c6368627b077fa831441c1ba98a9aa81d3ef
MD5 690fafa1fa88a8cdbf1efd1f6fb2da43
BLAKE2b-256 ea9531120c580ecf9372e58c93511a7e7759ae42c2efa62efd96b5d607754c13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 432caefcb15e9a4cb7d747e28a071672bfcffe68c35ba38d5e19c03dec64076f
MD5 d20172ebc66cda772473b1f2ecfb111d
BLAKE2b-256 d36cc5bbc2887c12b10cf5ed339d8acf3662505a885cca40b10df4fa7596c30d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.6.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 711.0 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4753bad085302fea721bdd6767137edd2c3ca9f4b9ee2df02b6d55a729f818c5
MD5 fbc859fee91ad9cbb94fbc809aa8cbb7
BLAKE2b-256 f17685ad8ffc840a917f0b9648c10bf2a39cf80b556a389ace4afe4ed215ae90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b7341a420aa5c50697f13edad2007cc2a53f06009a5a29cfe523f8c51869c0a
MD5 f9bf88c73d3ad366434da91fd105e244
BLAKE2b-256 5f41a38aea4a70c6678df9a482893dbd6463ea135db5476998b3c1ecdb7349de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b5c7fb0a0da2f23e3f3f29742f85bf3d635673f502bb569ac957365769957a3
MD5 dc39ae1277d3392bf86b4adecd50af72
BLAKE2b-256 2e5a726a89d7df709cc772790b9bb6c710c48c53d1c7ad33336cc94fc750aada

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d49b623157ddd805910426b713e5dbd212983b4d1e4996e688da603286e6d60f
MD5 fe195cae4f1d3b7933a2a7da5ca0a704
BLAKE2b-256 cd861de7edc14abcb94b50a87583107084913429acb66ba987680af7c84f1d15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d25cde016a9109c4f3669b0579bee0ffe608b999aae531441f9d266ebf035110
MD5 93173071da8c82a57adf6e67719fa520
BLAKE2b-256 ccc7ced38287876ca64fcd4266e35fae835f76d3ccef294e141f36c72489b02b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e093abccb9e0bb8fdb655395c6d3208e7482fb60aadebea7ba4e441f301bcc11
MD5 3b7c68cfd2938e58621b102dff16e558
BLAKE2b-256 58620fac7ef2503eac07e41bff93de6395ea44c104883c90b3f39ed339a07d1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e0bb38e2fca8df0360cf2933a00111605e3efc150d20d0b62810825a87a2d64
MD5 91692067b847be48707d7c9fb5ad40ad
BLAKE2b-256 a0c11b947aea03aa8cb703ff1edf57115f46d031ccb49d364c654e6a6898a24a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastyaml_rs-0.6.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 711.0 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a85706f9d2f8c148e29b1664a849f7e2f571bcfacc463f47b3d0d8538971caeb
MD5 1d97564ebae11e24de13012e8b80dfd8
BLAKE2b-256 6f9ec4f128cada2b7f5205fcc7e3967f9386d6ff7937aa38cc2f291890413a01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adedbf60acbe2641d0dd08aa5af8bba1f4fea3bfc2d89d2c6be92e0b0cf3bbb4
MD5 da6841507d56212c7583869f8ab219dc
BLAKE2b-256 9b61c2f9dd6718ac3d5110daa191d277466e8f0b81b92d7dd8c0e8327b3bc9b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 134583123e139cb321a0a4bf6715c228ad6f9a76fa8055bdf19f6397b3f7d0f4
MD5 8aec6a8e96a8554d36a9c43f8db28c43
BLAKE2b-256 fe59cb8b7c16826cd9a836bc0f1312308b2bf714c8e6e457127cb062d81e3f6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ac23e178e39a6aa197b6942b092e0cd818624854748656a2bbb4903579495e5
MD5 a802f2c6cb0b9d7e49fa1ead4023ea12
BLAKE2b-256 67473d535534c8f7ab6832dada40ea7ce8edabbbbb79cad2fc65730f5c763458

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52c304f0bae072da4867ac429579a5cfc863e2f84da80f0507178681fef5e729
MD5 f79d602b8d6f4b8b49979ce336ce0684
BLAKE2b-256 dab90489e97c6271ba679a1f4eddbb71160250fd4cfe23d8f70af616b9f3770e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fb85a9bef9b729ce8389348edafa608a961cea813083bc38fad09de7edaf024
MD5 89f62412a2ea5dc96e8d9832e4f966ee
BLAKE2b-256 3365848259ce796574a1af8c57a7e8b57eaea5265c1c743293a46df5366f7c5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastyaml_rs-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bdc4ac90884f6d367897a3d678c692b7a98fcb3e2ce6c69a62d5b7aaa778ac59
MD5 58bf5360f2a265b2e5b5bc63200c84ee
BLAKE2b-256 3a44d6052bb848aa0f49c50db229ab038d1a48ac912d6d67aff8e8cd051ce5be

See more details on using hashes here.

Provenance

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