crane/test_toml.py

6 lines
128 B
Python
Raw Normal View History

2022-10-28 01:44:29 -05:00
from tomllib import load
with open('./config.toml', mode="rb") as c:
config = load(c)
print(config["containers"].values())