Skip to content

Instantly share code, notes, and snippets.

@balkian
Created January 19, 2016 18:57
Show Gist options
  • Save balkian/d08fb2dd1b01cb8b46ac to your computer and use it in GitHub Desktop.
Save balkian/d08fb2dd1b01cb8b46ac to your computer and use it in GitHub Desktop.
from __future__ import print_function
import csv
from jinja2 import Template
with open('PC Members.tsv') as f:
contacts = csv.DictReader(f, delimiter='\t')
with open('index.j2') as templatefile:
template = Template(templatefile.read())
with open('web/index.html', 'w') as web:
web.write(template.render(contacts=contacts))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment