from microdot_asyncio import Microdot app = Microdot() @app.route('/') async def index(request): return 'Meow, world\n' print('[main] Running Microdot app...') app.run(port=80)