14 lines
228 B
Python
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)
|
|
|
|
|