Recommended python library/framework for local web app?

前端 未结 10 1844
生来不讨喜
生来不讨喜 2020-12-31 07:33

I want to create a simple LOCAL web app in Python.

The web server and \"back-end\" code will run on the same system (initially, Windows system) as the UI. I doubt it

10条回答
  •  温柔的废话
    2020-12-31 08:30

    Bottle is a very lightweight micro-framework. It comes as a single .py-file with no external dependencies, supports routing, a small template-engine and comes with an integrated webserver. It is easy to use and slim.

    This sounds like a perfect match to your requirements :)

提交回复
热议问题