Eurasia:修订间差异
来自站长百科
(→使用手册) |
无编辑摘要 |
||
第10行: | 第10行: | ||
官方网站:http://code.google.com/p/eurasia/ | 官方网站:http://code.google.com/p/eurasia/ | ||
软件下载:http://down.zzbaike.com/download/eurasia-5195.html | |||
==Eurasia示例代码== | ==Eurasia示例代码== | ||
第47行: | 第47行: | ||
[[category:框架|E]] | [[category:框架|E]] | ||
[[category:开放源代码|E]] | [[category:开放源代码|E]] | ||
[[category:Eurasia|E]] |
2011年5月10日 (二) 16:44的最新版本
eurasia 是一种纯异步超轻量级协程框架,或者工具集。主要用于高效能 web 开发,也适用于底层网络开发和其他常规协程应用。自带 wsgi、http 和 tcp 服务器,并具有将常规 IO 转换为协程异步的能力,可以让你用最 pythonic 的方式,编写出优美的程序。
Eurasia概况[编辑 | 编辑源代码]
授权协议:开放源代码
开发语言:Python
官方网站:http://code.google.com/p/eurasia/
软件下载:http://down.zzbaike.com/download/eurasia-5195.html
Eurasia示例代码[编辑 | 编辑源代码]
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()