boapy A JavaScript interpreter that can be used in Python using the boa engine. Install pip install boapy Example from boa import execute execute("function add(a,b){ return a+b}") result = execute("add(1,2)") print(result)