Code ▸ Projects ▸ webint ▸ Files ▸ tests ▸ example ▸ subapp ▸ __init__.py Raw 1 2 3 4 5 6 7 8 9 import web app = web.application(__name__, prefix="subapp") @app.control("abba") class Abba: def get(self): return app.view.index()