建议一个独立的python web框架?

我有一个
python程序,我想作为一个简单的Web应用程序.该程序目前使用sqlite进行存储.我还需要将整个事情分发给同事,因此有一些独立且易于启动的东西将是理想的(如果可能的话,不安装).此Web应用程序旨在在本地使用,而不是由网络上的多个用户使用.

是否有合适的python框架可以满足我的需求?到目前为止,我看着Django,但对于我需要的东西似乎有点沉重.

谢谢你的任何建议.

最佳答案 我自己从未尝试过,但你可以试试
Bottle

Bottle is a fast, simple and lightweight WSGI micro web-framework for
Python. It is distributed as a single file module and has no
dependencies other than the Python Standard Library.

点赞