Conversion from JavaScript to Python code? [closed] Conversion from JavaScript to Python code? [closed] python python

Conversion from JavaScript to Python code? [closed]


You can translate JavaScript to Python using Js2Py. It supports whole JavaScript and you can use it to translate large JavaScript modules like esprima.js (a JavaScript 6 parser).


Short demo:

>>> import js2py>>> f = js2py.eval_js( "function $(a) {return a + arguments[1]}" )>>> ffunction $(a) { [python code] }>>> f(1, 2, 3)3

This is how the translated function looks like internally (it's rather ugly):

>>> print js2py.translate_js( "function $(a) {return a + arguments[1]}" )from js2py.pyjs import *var = Scope( JS_BUILTINS )set_global_object(var)# Code follows:var.registers([u'$'])@Jsdef PyJsHoistedNonPyName(a, this, arguments, var=var):    var = Scope({u'a':a, u'this':this, u'arguments':arguments}, var)    var.registers([u'a'])    return (var.get(u'a')+var.get(u'arguments').get(u'1'))PyJsHoistedNonPyName.func_name = u'$'var.put(u'$', PyJsHoistedNonPyName)


Updated

Now several (4) years later this (almost certainly) can be done; though certainly not with RegEx.I suggest future readers look to @Piotr Dabkowski's answer..Or some of the other answers. (I don't know having not tried them)


Original Answer

Hm this is a hard one.The definition of a compiler is translates from a higher level language to a lower level language.eg python to machine-code.or java to javascript (google has a rather famous compiler for this somewhere - its' what makes google doc easier to make)Python to javascript compilers abound.technically javascript to python would be a decompiler. (afaik)

I found some speculation about a javascript-python converter here: follow the tread through. it mostly speaks of how it wouldn't be too hard to do.I can't find anything , but that doesn't mean it's no out there.

Regex is not suitable, regex is suitable only for regular languages.programming languages are not normally regular languages. see this


This answer might be about 2 years late but how about js -> CoffeeScript -> python? If you use something like http://js2.coffee/ to convert to cs, then things like indentation and lists are already done for you.