Module configy.backend.yaml

A backend that can parse YAML (and JSON) documents

This is the original backend for Configy: it can parse YAML document (and JSON which YAML is a superset of). It uses D-YAML as a backend itself.

Functions

NameDescription
parseFile(path) Parses a file at path and return a node suitable for parseConfig
parseString(content, path) Parses YAML content and return a node suitable for parseConfig

Classes

NameDescription
YAMLMapping
YAMLNode The base class for all YAML nodes
YAMLScalar
YAMLSequence