from aiohttp import web
async def handle(request):
name = request.match_info.get('name', "Anonymous")
text = "Hello, " + name
return web.Response(text=text)
app = web.Application()
app.add_routes([web.get('/', handle),
web.get('/{name}', handle)])
web.run_app(app)
使用aiohttp建立最简单的web服务器
上一篇文章
lean towards 下一篇文章
苹果ppt_ppt制作苹果版下载 1.3.0
lean towards 下一篇文章
苹果ppt_ppt制作苹果版下载 1.3.0