Implements TOML serializer.
It's just a wrapper around pytoml module.
salt.serializers.toml.
deserialize
(stream_or_string, **options)¶Deserialize from TOML into Python data structure.
stream_or_string -- toml stream or string to deserialize.
options -- options given to lower pytoml module.
salt.serializers.toml.
serialize
(obj, **options)¶Serialize Python data to TOML.
obj -- the data structure to serialize.
options -- options given to lower pytoml module.