In app engine there a way to use templates a bit more like php/javascript(document.write)?
for instance i would rather do:
<html>
<python>
print "Hello world"
</python>
</html>
rather than all the {IF } {ELSE } django stuff.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The Tornado project’s template module allows the insertion of python code, and it’s very fast as well. It works well within App Engine, despite being designed to work with the rest of the Tornado framework and the Tornado HTTP server.