DockOfOurOwn/runner.py

15 lines
279 B
Python
Raw Normal View History

2022-07-21 05:42:38 +00:00
#! /Users/arianagiroux/Documents/Coding/owncast-obs-streamer/venv/bin/python3
import chevron
def render(data={}):
return chevron.render(template=open('index.html', 'r'), data=data)
data_constructor = {
'stream-title': 'a big test'
}
print(render(data_constructor))