maci.tomlloadstr
loads toml data from a string
loading a string
Loads toml string data, and returns a dictionary.
maci.tomlloadstr -> dict[str, Any]
Basic Example of loading a toml string using default positional parameter
In this example, we simply load toml data from a string using the tomlloadstr function and pass a string as an argument to the function to load the toml data, and assign the returned data to a variable.
parameters & arguments
Describes all parameter functionality and accepted data types
This function uses the tomli library installed as a dependency from pypi for its underlying functionality. For more information on tomli, visit: https://pypi.org/project/tomli/
Last updated