If running a web2py shell, how can model files within controller subdirectories be made available in the environment?
For example if we have these two model files: myapp/models/db.py myapp/models/acontroller/db_controller.py Then when launching web2py using: $> python web2py.py -S myapp -M Typing 'db.tables' prints tables defined in db.py Is there a way to specify a controller (or function) to execute models for in a web2py shell? Thanks

