Eurasia是一种纯异步超轻量级协程框架,或者工具集。主要用于高效能web开发,也适用于底层网络开发和其他常规协程应用。自带wsgi、http和tcp服务器,并具有将常规IO转换为协程异步的能力,可以让你用最pythoic的方式,编写出优美的程序。
示例代码:
fromeurasia.webimporthttpserver,mailoopdefhadler(httpfile): httpfile.start_respose('200OK',[('Cotet-Type','text/plai')]) httpfile.sedall('helloworld!') httpfile.close()httpd=httpserver('0.0.0.0:8080',hadler)httpd.start()mailoop()






评论