How Could I Embed Lua Into Python 3.x?
Is it possible to embed Lua into Python 3.x? If so how could I run and execute Lua scripts within my Python program? How good would the interaction be between the Languages for i
Solution 1:
Try Lunatic Python, a two-way bridge between Python and Lua.
Solution 2:
In addition to Lunatic Python, there is Lupa, powered by LuaJIT:
http://pypi.python.org/pypi/lupa/0.9
See the link about advantages and reasons to use it.
Post a Comment for "How Could I Embed Lua Into Python 3.x?"