I'm using chalice for an application with a lot of endpoints. I don't want to separate it in several lambdas, because they share the same code (which is in chalicelib), but I want to separate somehow my app.py
(e.g. I want it to be like app_user.py, app_sessions.py etc.) I'm not very good about Python core, but I think it should be possible to do it somehow using __init__.py
to say the Chalice to glue my files together on the deployment.
tl;dr Is it possible to have something like #include
from C in Python?
Thanks.