Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upSupport for Python 3 relative imports? #66
Comments
PR is welcomed. Thanks! |
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up
PR is welcomed. Thanks! |
We're currently running multi-package code on AWS Lambda, eg:
On AWS Lambda, we're able to use:
These imports don't work locally, presumably due to the way that
python-lambda-local
calls the handler as a function directly? So locally, we're using the following boilerplate in each handler we need to directly call:Are we missing something obvious here, or would a PR be welcomed to either inject this boilerplate automatically, or have
python-lamba-local
call the handler from within a package as AWS Lambda does itself?