Represents YAML nodes as scalar, sequence and mapping nodes ready for output.
Exception thrown on Representer errors.
Represent a bool _node as a bool scalar.
Represent a bytes _node as a binary scalar.
Represent a long _node as an integer scalar.
Represent a sequence _node as sequence/set.
Represent a _null _node as a _null YAML value.
Represent a mapping _node as map/ordered map/pairs.
Represent a real _node as a floating point scalar.
Represent a string _node as a string scalar.
Represent a SysTime _node as a timestamp.
YAML node representer. Prepares YAML nodes for output. A tutorial can be found here.
Code based on PyYAML.