Eurasia超轻量级协程框架

联合创作 · 2023-09-20 17:09

Eurasia 是一种纯异步超轻量级协程框架,或者工具集。主要用于高效能 web 开发,也适用于底层网络开发和其他常规协程应用。自带 wsgi、http 和 tcp 服务器,并具有将常规 IO 转换为协程异步的能力,可以让你用最 pythonic 的方式,编写出优美的程序。

示例代码:

from eurasia.web import httpserver, mainloop
def handler(httpfile):
    httpfile
.start_response('200 OK', [('Content-Type', 'text/plain')])
    httpfile
.sendall('hello world!')
    httpfile
.close()

httpd
= httpserver('0.0.0.0:8080', handler)
httpd
.start()
mainloop
()
浏览 10
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报