轻量级异步 Web 服务器

lightweight asyncio web server

据我所知,aiohttp is currently the reference for web servers built on asyncio。虽然这是一项令人印象深刻的工作,但它不太符合我的特殊(特殊)品味:除了作为 Web 服务器之外,它还是 Web 应用程序的框架(具有路由和所有功能),加上 API相当 class-重。

我更喜欢 只是 HTTP 服务器,提供最小接口(基本上是异步 WSGI 等价物)。已经有这样的东西了吗?

好吧,你可以试试低级 aiohttp.server 而不是 aiohttp.web

它没有路由、中间件和其他高级东西。 但是您必须使用 aiohttp 低级抽象,例如 messagepayloadresponse.