DEBSOURCES
Skip Quicknav
sources / python-aiohttp / 3.5.1-1%2Bdeb10u1 / examples / static_files.py
123456789
import pathlib from aiohttp import web app = web.Application() app.router.add_static('/', pathlib.Path(__file__).parent, show_index=True) web.run_app(app)