I am about to get my hands dirty on building a application for one of the trading company entirely on python. I have experimented with django and flask. Here are few of the things i have come up

  • Django is far too easy to develop an application but i feel that the ORM is limiting me in several ways
  • I was very impressed with flask and how we can combine it with Jinja, SQLalchemy and Twisted but it lacks a lots of documentation and support like Django has (Seriously Django documentation is totally awesome)

So i am kinda confused as what shall i do. Should i go with Django or Flask + Werzeug

Thank You in Advance

link|improve this question

50% accept rate
feedback

4 Answers

up vote 20 down vote accepted

I've used Werkzeug with Jinja and SQLAlchemy for two years and can only recommend these three libraries. Werkzeug might be a little harder to learn than Django at first but the docs are actually extensive and well written. The included debugger is extremely useful.

Unlike the Django ORM, SQLAlchemy won't get in your way. The programmatic SQL generation has very few limitations, with or without the ORM, and in the very rare cases where you need it, raw SQL is available without abandonning the benefits of wrapped query results, transaction management, connection pooling, etc.

As for Jinja, it is very similar to Django's template language, only without the limitations (you won't have to write template tags).

I haven't had the chance to try Flask yet but it's likely to be the best way to start a new project based on Werkzeug and Jinja.

link|improve this answer
How was your experience in developing applications based on Werkzeug, Jinja and SQLAlchemy. Did you faced any issues ?? – fear_matrix Feb 15 '11 at 16:47
1  
I never had a major issue or one that required patching/forking one of the packages. I did with Django, where everything is integrated that you often need to maintain your own fork with several patches, which led me to trying out something else. – jd. Feb 15 '11 at 17:59
1  
There are several answers that you may want to consider here: stackoverflow.com/questions/3005319/… – jd. Feb 15 '11 at 18:01
feedback

I don't think that Django documented better than Flask, because of the latter is microframework, not a full stack framework — Jinja2 and SQLAlchemy have documented separately and its docs are very well written and complete.

Regarding using of ORM in complex projects I can say that any ORM is limiting functionality of specific database engine but SQLAlchemy is really great piece of software — very flexible and powerful. I advice you to start use SQLAlchemy and see how it goes — at any time you can scale down to raw SQL if needed.

Also, I can suggest you to look at Pyramid web-framework — it is also well documented and powerful.

link|improve this answer
yes. lately i am learning about SQLAlchemy and i am pretty much impressed with it. It sure is a great piece of software. I wish SQLAlchemy was in-built in django then it would made my life more simpler. – fear_matrix Feb 15 '11 at 16:46
feedback

The core of this question isn't really technical, but rather your goal with this project. If it's a project that have an element of developing your skills then you should choose the option you don't know (Flask etc in your case).

If on the other hand you need fast, reliable results and it's a bit of a 'write-and-forget' project, you're probably better off with the option you already know best (Django in your case).

link|improve this answer
What i am really afraid is that i do not want to be limited in any ways. I dont want an application written in a framework and then re-write it again in a different framework. – fear_matrix Feb 15 '11 at 16:42
Then you should definitely go for Flask et. al. (or possibly try @Spacedman's third way and try another ORM with Django, but my gut feeling says that'll be harder) – Jacob Oscarson Feb 15 '11 at 20:02
1  
Thanks for your response, you were right its hard to implement SQLAlchemy ORM with Django. Infact i kinda messed up my django. After experimenting with both (Django and Flask), i think i am in love with flask already. It's that SQLAlchemy & werkzeug which is bringing me closer to flask. – fear_matrix Feb 16 '11 at 9:33
feedback

If the ORM limits you then don't use it. Write your own database layer (use a NoSQL db if you want) and keep django's URL mapping, templating, form handling, and view architecture. Or use some of the ORM for things that need it and not for those that don't.

Flask+werkzeug won't give you a database layer so you'll either have to get one, such as SQLAlchemy as you mention, but how long before you run into limits of that ORM?

If you think SQLAlchemy isn't going to have those limits, you can use it with Django.

http://lethain.com/entry/2008/jul/23/replacing-django-s-orm-with-sqlalchemy/

link|improve this answer
thanks for the link. will check it. i wish in near future django completely supports SQLAlchemy. – fear_matrix Feb 15 '11 at 16:44
What do you mean by Django completely supporting SQLAlchemy? It supports it as much as any other framework does. If you mean support SQLAlchemy in the Admin, ModelForms, etc, well, you don't get those for free with Flask or Werkzeug, either. – GDorn Jun 7 '11 at 0:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.