Code ▸ Projects ▸ canopy ▸ Releases ▸ 0.0.88 ▸ Files ▸ canopy ▸ __init__.py 1 2 3 4 5 6 7 8 9 10 11 12 13 14 """A decentralized social web platform.""" import web app = web.application(__name__, automount=True, autotemplate=True) @app.control("") class Home: """Your homepage.""" def get(self): """Render your homepage.""" return app.view.index()