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