Pandas in AWS Lambda | Rachel Bunder
rachelbunder.github.io › Pandas-in-AWS-lambdaFeb 07, 2020 · Pandas in AWS Lambda 3 minute read Lambda is AWS’s serverless computing platform: you write some code, set up triggers for when it executes and AWS takes care of the resourcing. Python is one of it supported languages, but by default it doesn’t include much beyond the standard lib. To can include other packages by using an AWS lambda layer.
Pandas & AWS Lambda - Stack Overflow
stackoverflow.com › questions › 36054976Mar 17, 2016 · The easiest way to get pandas working in a Lambda function is to utilize Lambda Layers and AWS Data Wrangler. A Lambda Layer is a zip archive that contains libraries or dependencies. According to the AWS documentation, using layers keeps your deployment package small, making development easier. The AWS Data Wrangler is an open source package ...