lunatic-python icon indicating copy to clipboard operation
lunatic-python copied to clipboard

A two-way bridge between Python and Lua

Results 17 lunatic-python issues
Sort by recently updated
recently updated
newest added

Let me start by thanking everyone that has worked on this effort so far. Having said that, the documentation certainly could use some work as it's an uphill battle to...

There isn't any installation guide in the README file. I've tried to use pip install lunatic-python but it didn't work. Could anyone provide the necessary guidance and hopefully update the...

python ./test_lua.py Traceback (most recent call last): File "./test_lua.py", line 89, in import lua ImportError: /data/lunatic-python/tests/lua.so: undefined symbol: luaL_setfuncs

Hi, I used Lunatic Python to make the Love framework compatible with Python, but right now I want to do the same but instead of Python with Ruby, it has...

I am having a similar issue. I am working on MacOsX with python 2.7.13 and Lua 5.2. I am trying to call python from within lua. If I try `py...

Is there a way to call a python function from Lua? I've tried the following: ```lua -- main.lua py = require "python" my_lib = py.import "my_lib" print(my_lib.test) -- nil, so...

I try to install lunatic python on Windows Server 2016 Already installed: Lua 5.1.5 Python 3.7 Here is a problem: > C:\Users\Administrator>pip install lunatic-python-universal > Collecting lunatic-python-universal > Using cached...

i use a raspberry pi 2 and 3 if i do py = require 'python' this is what i get > py = require 'python' > stdin:1: module 'python' not...

question

It seems the 'in' Python operator has non predictable behavior on Lua tables: ``` lua.execute ("aaa = { a = 12, b = 13, c = 14 }") aaa =...

bug

Hi, We are working on an implementation of [mockredis](https://github.com/locationlabs/mockredis) which requires mocking the behaviour of Lua scripts (as executed by [Redis](http://redis.io)) We would like to use your project for the...