Reputation: 14864
Can I use Python code in Java on App Engine? What I mean is I am using Java to develop my App Engine cloud, but I need to include some Python code in it. How might I do that?
Why?
I need to Generate Dynamic Content using Jinja2. There is no equivalent in Java. So I was hoping to be able to just do it in Python and include it in my Java code.
Upvotes: 0
Views: 50
Reputation: 21835
No you can't run Python code if you are using Java, or vise versa, since App Engine is running in a sandbox and you are not allowed to run anything else other than Java in your case.
Upvotes: 1