from flask import Flask
Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
from aiohttp import web
async def hello_world():
return web.Response(text='Hello, World!')
app = web.Application()
app.router.add_get('/', hello_world)
web.run_app(app)