1. 程式人生 > >Python程式設計:aiohttp庫伺服器端簡單使用

Python程式設計:aiohttp庫伺服器端簡單使用

通過flask和aiohttp對比著來看

flask

from flask import Flask

app = Flask(__name__)

@app.route("/")
def hello():
    return "Hello World!"

if __name__ == '__main__':
    app.run()

aiohttp


from aiohttp import web

routes = web.RouteTableDef()

@routes.get('/')
async def hello(request):
    return
web.Response(text="Hello, world") app = web.Application() app.add_routes(routes) web.run_app(app)