Parsing JSON data from AWS lambda functions in Python

1 · Marc Päpper · March 31, 2020, 8:20 p.m.
Lambda functions are a great way to put small workloads into the cloud without needing to care about servers or scalability. They work well with Python and the data format you’ll most likely be using to exchange data is JSON. This is a very brief post to show how to do this in Python, in particular how to pass JSON data to the lambda function and how to read the JSON result....