crane/test_toml.py

6 lines
128 B
Python

from tomllib import load
with open('./config.toml', mode="rb") as c:
config = load(c)
print(config["containers"].values())