mirror of
https://gitlab.com/openlp/openlp_api_tester.git
synced 2024-12-25 11:14:08 +00:00
7 lines
226 B
Python
7 lines
226 B
Python
import json
|
|
|
|
with open('/home/tim/Projects/OpenLP/openlp_api_tester/scripts/alert.yaml', 'r') as file:
|
|
commands = json.load(file) #, Loader=yaml.BaseLoader)
|
|
print(commands)
|
|
for step in commands:
|
|
print(step) |