github trending: https://github.com/trending/python
xweb 项目地址:https://github.com/gaojiuli/xweb
特点
- 无第三方依赖
- 彻底放弃 python2
- 人性化的 api
hello world
from xweb.application import XWeb
app = XWeb()
@app.route('/')
def hello():
return 'hello world!'
app.listen(3000)
有兴趣的朋友一起参与进来吧