Hacker News new | ask | show | jobs
by mattwritescode 3953 days ago
Flask or Django would be good options.

Django is very modular so you can pull out or change the bits you do not like (templating you can use jinja, orm you can exchange for sqlalchmey).

Flask, you build what you want (enough said).

2 comments

If you are removing Django templating and ORM, it makes completely sense to use something else.

Flask is an awesome option, I'm building things with it for some years now.

I have to agree with iurisilvio here.

If you are pulling out the Django templates and the ORM you should just use Flask. You shouldn't choose a framework and then immediately start taking it apart if there is an alternative that comes the way you want basically out of the box.