Reputation: 262794
Google App Engine supports both Python and Java application development.
Can I have both in the same application?
Upvotes: 9
Views: 2176
Reputation: 897
Just to have an updated answer for this question,
From this answer on GAE google groups, it looks like it is possible to have different modules in different languages.
Upvotes: 3
Reputation: 756
As far as I know, there are two ways:
Upvotes: 5
Reputation: 344511
Can I run Java and Python code in the same app?
Each version of the app must specify a runtime language and it is possible to have version x of your app running Java, while version y is running Python. It would also be possible to use Jython.
Source: Google App Engine for Java FAQ
Upvotes: 10