#! /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))