I am continually running into problems importing a module to use on AWS.
Specifically, the Coinbase library.
I have followed the AWS Lambda docs, and have created a folder called packages, installed all the libraries into that folder, then zipped up that with my function.
I can get the function to work if I comment out all the Coinbase code and import statement, so that tells me that the zipping and uploading is fine.
Specific error is
{
  "errorMessage": "Unable to import module 'lambda_function': No module named 'coinbase'",
  "errorType": "Runtime.ImportModuleError"
}
I can see plane as day that the coinbase library is sitting in the package folder, so I'm not sure why AWS can't access it.
I've tried chmod 444, still no success.
Has anyone had any experience with resolving a package not running on lambda like this?

