Comment on Pecan a lean Python web frameworkComments−pc8612yWhat use is a web framework that "includes no out of the box support for things like sessions or databases?"−pekk12yFlask doesn't include an ORM either, and it's very popular. For example.−jpwagner12ythis is where "light-weight" comes in. you could do something like use werkzeug's secure cookies and sqlalchemy for sessions and databases respectively.
Comments
What use is a web framework that "includes no out of the box support for things like sessions or databases?"
Flask doesn't include an ORM either, and it's very popular. For example.
this is where "light-weight" comes in. you could do something like use werkzeug's secure cookies and sqlalchemy for sessions and databases respectively.