Miki
Miki

Reputation: 1818

Is there a way to run Lua scripts in Google App Engine (Python)?

I have a bunch of Lua scripts that I need to port to a Google App Engine application. Ideally I would like to be able to run those scripts within Python, either through and interpreter or with a wrapper/bridge like Lupa. Any ideas about how to accomplish this?

Upvotes: 1

Views: 433

Answers (1)

Alex
Alex

Reputation: 5276

Set up a separate micro service in App Engine Flex so that you can do this:

Run Lua script from Python

Upvotes: 2

Related Questions