Running JavaScript in a clean Python environment

I want to run the existing simple (without special tricks) JavaScript code (several thousand lines) in a clean Python environment (Google AppEngine).

The code works fine with PyV8 (but this is not pure Python).

Is PyJON mature enough for this?

Is it possible to define custom objects in Python and use them in JavaScript (e.g. in PyV8)?

+5
source share
1 answer

You can use gae-init , where you can access data warehouse objects in JSON format.

0
source

All Articles