lupa (LuaJIT/Lua-Python bridge) on AWS Lambda

Last post discussed launching LuaJIT from Python on AWS Lambda. Suppose you want to receive events from the Lua code in the Python code that invoked it. If you don’t have a Python-Lua API then you are left with either using sockets, files or even getting feedback by reading the realtime output from the process …

Continue reading ‘lupa (LuaJIT/Lua-Python bridge) on AWS Lambda’ »

AWS Lambda – running python bundles and arbitrary executables – Part 2

In the previous post I explained how to create your AWS lambda environment using Docker, and how to package a python bundle and launch it on AWS Lambda. In this post I’ll show how you can launch arbitrary executables from an AWS Lambda function. To make this tutorial even more useful, the example of an …

Continue reading ‘AWS Lambda – running python bundles and arbitrary executables – Part 2’ »