SaidBySolo / boapy

A JavaScript interpreter that can be used in Python using the boa engine.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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)

About

A JavaScript interpreter that can be used in Python using the boa engine.

License:MIT License


Languages

Language:Rust 83.5%Language:Python 16.5%