summaryrefslogtreecommitdiffstats
path: root/yaml1.py
blob: 30feff3134432e5bb93d73710c35c8ebb0fc5280 (plain)
1
2
3
4
5
6
7
8
9
10
11
import yaml
import pprint as pp

with open('config.yaml', "r") as f:
    yamlconfig = yaml.load(f, Loader=yaml.FullLoader)

#pp.pprint(yamlconfig)
#for i, d in yamlconfig.items():
#    print(i, ":", d)

print(yamlconfig['server']['users'][0]['ssh_key'])