(no title)
glitch273 | 12 years ago
Flask does have an admin plugin but it's nowhere near as good, polished, or documented as Django's.
Django does have the advantage of a bigger mind share, users and ecosystems.
glitch273 | 12 years ago
Flask does have an admin plugin but it's nowhere near as good, polished, or documented as Django's.
Django does have the advantage of a bigger mind share, users and ecosystems.
zalew|12 years ago
sqlalchemy is more powerful than django orm.
> I believe Flask actually has the advantage in the ORM since you aren't tied to Django's strictly RDBMS structure and Flask will allow you to easily use NoSQL solutions if that's your thing
easy there. you can as well use nosql with django (orm is useless then, by definition) and you are in the same exact situation as using nosql engines with flask. if you get rid of the orm in django (which is doable), you are just bringing your own batteries here, just as you are bringing them to flask.
excelMonkey|12 years ago
Agreed - we normally use flask alongside psycopg2 and postgres but recently we've been using it with NEO4J for fun
http://www.coolgarif.com/brain-food/flask-api-over-neo4j-in-...