aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tests/lua_in_python.py
blob: eec2042bbff56f37de81aad8d15e30a499518b2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
try:
    import lupa.luajit2 as lupa
except ImportError:
    try:
        import lupa.lua54 as lupa
    except ImportError:
        try:
            import lupa.lua53 as lupa
        except ImportError:
            import lupa

print(
    f"Using {lupa.LuaRuntime().lua_implementation} (compiled with {lupa.LUA_VERSION})"
)

from lupa import LuaRuntime

lua = LuaRuntime(unpack_returned_tuples=True)
import asyncio

async def get_Dice_Dir():
    import os
    await asyncio.sleep(1)
    return os.path.dirname(os.path.abspath(__file__))


lua.globals().getDiceDir = get_Dice_Dir

print(
    lua.eval(
        """\
    getDiceDir()
               """
    )
)