Python#
Credentials#
account:
username: username
password: password
import yaml
file = "..."
with open(f"{file}}", "r") as file:
credentials = yaml.full_load(file)
username = credentials["aviso"]["username"]
password = credentials["aviso"]["password"]