|
|
|
|
|
by TazeTSchnitzel
4961 days ago
|
|
I'd suggest Flask. Flask is a very lightweight microframework, yet it contains everything you need to write a web app in Python. If you want to write everything in one file with Flask, you can. If you need several files, you can do that. You can use proper views if you want. Or not. |
|
If you want to use an ORM, or have database backed sessions, or user logins, you need to write all that yourself. For example: http://flask.pocoo.org/docs/patterns/sqlalchemy/
Depending on what you're doing, that might be a good thing - but I find writing things which are already included in Django pretty annoying.