Created
April 7, 2014 12:17
-
-
Save aruseni/10019214 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import ast | |
from subprocess import Popen, PIPE | |
from django.template.loader import render_to_string | |
from django.conf import settings | |
settings.configure( | |
TEMPLATE_DIRS=(".",) | |
) | |
template = sys.argv[1] | |
if len(sys.argv) == 2: | |
context = {} | |
else: | |
context = ast.literal_eval(sys.argv[2]) | |
process = Popen("bcat", stdin=PIPE, stdout=PIPE, stderr=PIPE) | |
process.communicate(render_to_string(template, context).encode("utf-8")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
preview_template.py allows you to test a Django template located in the current working directory (first argument). The template is rendered with the given context (second argument, optional), and the result is immediately piped into the browser with the bcat utility.
Usage:
Example: