Python relative imports in AWS Lambda fail with attempted relative import with no known parent package
In AWS Lambda if I attempt an explicit relative import like this
.
├── lambda_file.py
└── example.py
| #include <math.h> | |
| // otherwise C++ function names are mangled | |
| extern "C" { | |
| void float_multiply_array(float *data, int w, int h, int ncpp) { | |
| int length = w*h; | |
| int currentPixelIndex = 0; | |
| 更新: | 2024-05-20 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2024.1 |
| URL: | https://voluntas.github.io/ |