Pyyaml

import yaml
with open("example.yaml") as file:
	data = yaml.safe_load(file.read())

Backlinks