Mercurial > hg > GlobalNeighbors
view globalneighbors/template.py @ 10:21ed15391e8a
add a placeholder view for a city based on geoid
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 25 Jun 2017 12:28:36 -0700 |
parents | 316e1d54ffd4 |
children |
line wrap: on
line source
""" functionality for `jinja` templates """ import os from jinja2 import Template # default template location here = os.path.dirname(os.path.abspath(__file__)) template_dir = os.path.join(here, 'templates') class TemplateLoader(object): def __init__(self, template_dir=template_dir): assert os.path.exists(template_dir) self.template_dir = template_dir def load(self, template): path = os.path.join(self.template_dir, template) assert os.path.exists(path) with open(path) as f: return Template(f.read())