Cloud 7: Building an API with Lambda, Docker and CloudFormation
Cloud 7: Building an API with Lambda, Docker and CloudFormation Antony Gormley’s ‘Bind’ at White Cube Managing Python dependencies with lambda functions in AWS I recently used a serverless approach to build an API for a project I was working on. Each API call triggered a lambda function to process the data from the call and the returned a response. This had the advantage of not having to maintain a constantly running server costing money when unused. However, the Python dependencies I used in this case pandas, numpy (and associated C complier) were not completely straightforward to include in the Amazon Web Services (AWS) lambdas framework I was using. ...