It seems that it's possible to have both Java and Python modules in the same gae App - see the answer to this question. Various browsing and searching indicates that not only is it possible, but that it's been done, but I can't find any details.
I think I understand how to do it, but I can't work out how to use the Java and Python SDKs together to do the development. They seem to be completely different. Does anyone know how to do this?
(Why do I want to do this? I've got a reasonable front end developed in Python, which I really don't want to have to re-implement, but the heavy numeric calculations are just too slow. I'm seeing huge performance gains, as expected, from re-implementing the calculation engine in Java. All I need to do now is to hook it in instead of the current Python implementation ...)