Js2Py
Js2Py copied to clipboard
JS VM for Python 3
Running the example from the README:
from js2py.internals import seval
seval.eval_js_vm(code)
I get the following error:
from space import Space
ImportError: No module named 'space'
Oh, that's because you are using Python 3, VM is currently only supported by Python 2, but I will add python 3 support soon. I should have noted that in the readme.
Ok, thanks for your clarification.
Given the fact that Python 2 reaches its end-of-life in a couple of days, what is the status concerning Python 3 support?