Ergonomica, being a Python utility, is easy to interface with Python---both as a utility used in Python code as well as a lg
Interfacing with Python
Assuming you have installed Ergonomica through pip
, in Python simply import it
from ergonomica import ergo
Then, the ergo()
function in Python will execute any strings passed into it. For example,
>>> from ergonomica import ergo
>>> ergo('print "hi there folks!"')
'hi there folks!'