I am working on getting Jinja2 to work with Google AppEngine. I have the following for my main.py code:
import os
import webapp2
import jinja2
jinja_environment = jinja2.Environment(autoescape=True,
loader=jinja2.FileSystemLoader(os.path.join(os.path.dirname(__file__), 'templates')))
class MainPage(webapp2.RequestHandler):
def get(self):
template_values = {
'name': 'SomeGuy',
'verb': 'extremely enjoy'
}
template = jinja_environment.get_template('index.html')
self.response.out.write(template.render(template_values))
webapp2.WSGIApplication([('/', MainPage)], debug=True)
This has been killing me for hours I would be grateful for some help.
UPDATE:
I have changed the code a bit to update the situation. The logs are telling me:
ImportError: <module 'main' from '/base/data/home/apps/s~devpcg/1.359633215335673018/main.pyc'> has no attribute app
and the above code is all from my main.py folder. I have a file index.html in a folder called templates that is in the same directory as the main.py file.
app.yaml? Thejinja_environmentline is just telling jinja where to find the templates directory relative to the path of the current file. So if you had that code in amain.pyfile, you'd want atemplatesdirectory at the same level as themain.pyfile. – bernie Jun 15 '12 at 4:26