从 botocore.vendored使用的技巧requests
不再适用于 AWS Lambda 上的 Python 3.8,我假设它包括最新的 botocore-1.13。此版本不再嵌入requests
. 导入它可以工作,但包实际上是空的。
[ERROR] AttributeError: module 'botocore.vendored.requests' has no attribute 'post'
有没有办法requests
在原生 lambda 上导入?这是一个基础,为非常简单的 Lambda 打包代码的过程会很痛苦。
或者,任何人都有另一个技巧来调用 API-Gateway 没有requests
?