Files
Mailgun/scripts/CreateRoutes.py
Iwan Clement 60b4ec8f0a More Progress
2020-06-12 21:27:08 +02:00

9 lines
139 B
Python
Executable File

#!/usr/bin/python3
import yaml
f = open('rules.yaml')
dohicky = yaml.safe_load(f)
for i in dohicky:
print(i)
#print(dohicky)
f.close()