您会推荐哪种与 Sinatra 相当的 Python 版本?
我喜欢 sinatra 框架,但可能必须在 python 中工作。快速的网络搜索发现了一些 Python 等效项,包括 itty、< a href="http://flask.pocoo.org/" rel="noreferrer">flask 和 朱诺。
我想知道人们对这些或其他 sinatra 同等产品的体验。您会推荐哪一个?
I like the sinatra framework, but might have to work in python. A quick web search has uncovered a few python equivalents including itty, flask and juno.
I'd like to know people's experience of these, or other sinatra equivalents. Which would you recommend?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的。所以我有偏见,因为我是 Flask 的作者,但这里有一些东西可以帮助你做出选择:
除了你提到的那些之外,还有 Bottle,它与 Flask 类似,但更简约。与 Flask 不同的是,它还从头开始重新实现所有内容,而不是像 Werkzeug 那样建立在独立的基础上。
其他替代方案是 web.py,它是有史以来第一个微框架之一。与 Bottle 相同的规则:从头开始重新实现一切。
Okay. So I'm biased because I'm the author of Flask, but here something to help you make the pick:
Besides the ones you mentioned there is also Bottle which is similar to Flask but more minimalistic. Unlike Flask it also re-implements everything from ground up instead of building on an independent foundation like Werkzeug.
Other alternatives is web.py, one of the first microframeworks ever. Same rule as bottle: re-implements everything from the ground up.