Files
2025-05-20 11:57:43 -04:00

14 lines
228 B
Python

#!/usr/bin/env python
# (c) 2015 John Strickler
#
from pprint import pprint
import yaml
with open('../DATA/invoice.yaml') as invoice_in:
invoice_data = yaml.load(invoice_in, Loader=yaml.BaseLoader)
pprint(invoice_data)