Python Read Toml File

import toml
parsed_toml = toml.loads(toml_string)
Shanti