TOML data reader#
galactic-io-data-toml [1] [2] is a TOML data reader plugin for GALACTIC.
GALACTIC stands for GAlois LAttices, Concept Theory, Implicational systems and Closures.
The file extension is .toml. The individuals are represented in named
sections by key = “value” pairs. For example:
[i1]
    name = "Galois"
    firstname = "Évariste"
[i2]
    name = "Wille"
    firstname = "Rudolf"
This reader uses the toml.load function of the
toml library.