def get(name):
section, option = name.split(".")
try:
print(cfg[section][option])
except KeyError:
print(
"Unknown config option {Style.BRIGHT}{}{Style.RESET_ALL}"
.format(
name,
Style=Style
)
)