Build Your Own YAML Parser

This project is to build a YAML parser. A YAML parser is a tool or library that reads and interprets data written in YAML (YAML Ain’t Markup Language) format. YAML is a human-readable data serialization format commonly used for configuration files, data exchange, and data storage. The parser processes YAML files, converts their content into data structures (like dictionaries or objects), and makes them accessible to programming languages for use in applications. ...

Build Your Own yq Command Line Tool

The command line tool yq is like jq but for YAML data instead of JSON data - you can use it to and filter and transform YAML data, much like you would JSON dats with jq. ...