Ask HN: Using Flask for the product
I want to build MVP and I'm thinking about the tech stack that I should choose. The app will be basic CRUD application that gather data from 100 e-mail and show a report to the user. Later on there will be analytics, sharing etc. B2B, max 2000 Users.
My first choice is Flask + Heroku + PostgreSQL. Ideally I want something that is very easy to build MVP, but not totally to throw away later on. Hoodie is interesting, but I need backend.
Any Java, Scala, Python, js, Go suggestion?
6 comments
[ 0.33 ms ] story [ 25.7 ms ] threadI am pretty sure that flask is not a throwaway framework. Lately on Stackoverflow careers, I see a few companies using flask in production if that's one way to measure it. See this http://careers.stackoverflow.com/jobs?searchTerm=flask
The nice thing about Python is that the library support is amazing, and there is a fairly easy path to performance improvements using PyPy and/or wrapped C code.
Obviously a JVM language will have a huge ecosystem of libraries and good performance out of the box. I prefer Python as a language but that is entirely personal.
While Go is really popular around here, the language doesn't have a very ecosystem of libraries.