使用aiohttp创建最简单的web服务器

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
相关文章
相关标签/搜索