Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 968 Bytes

README.md

File metadata and controls

48 lines (37 loc) · 968 Bytes

Fast YAML

A fast YAML parser for Python.

Dependency

  • Python ≥ 3.10
  • Rust ≥ 1.63

Installation

1. Build from source

git clone https://github.com/MINGtoMING/fastyaml.git
cd fastyaml
pip install maturin
maturin develop --release

2. install from PyPI

pip install fastyaml

Usage

import fastyaml

if __name__ == '__main__':
    with open("path/to/read.yaml", 'r') as fp:
        tmp = fastyaml.load(fp)
    
    with open("path/to/write.yaml", 'w') as fp:
        fastyaml.dump(tmp, fp)

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.