What are the large distinctions between these two microframeworks? It seems Bottle is more flexible in terms of the templating engine and other configurations, but flask supports many useful plugins like flask-openID.

How are they fundamentally different, and why have they not merged?

link|improve this question

feedback

5 Answers

up vote 84 down vote accepted

The big difference is that Flask is based on other technologies such as Werkzeug and Jinja2 that exist for a longer time and it does not try to reinvent things. Bottle on the other hand tries to stick to the one-file approach. I want to merge them but the Bottle developer does not seem to be very happy about the idea of stepping away from the “one file” requirement.

Regarding flexibility: there are no reasons you shouldn't be able to use flask with other template engines if that's what you're after. In fact, things like Flask-Genshi exist: Flask-Genshi and it's incredible easy to use mako with it, even without extension if you want to.

Bias warning: I am the developer of Flask, Werkzeug and Jinja2.

link|improve this answer
6  
+1: kudos, Jinja2 rocks. – Paulo Scardine Feb 9 '11 at 12:11
21  
Apart from the "one-file" aspect, Bottle supports Python 3.x. Flask does not. – defnull Feb 9 '11 at 19:47
10  
@defnull - that's using 2to3, that's still not clean support. – user183037 Jun 1 '11 at 21:32
Actually Bottle supports Mako, Jinja2 and Cheetah natively as well as it's own templating. – Federico Oct 14 '11 at 12:02
2  
Just saw the slideshow @dgorissen pointed to. I picked bottle. As fast as going clean and simple, bottle wins. @post('/url') is much more readable than @app.route('/url', methods=['POST']). Also it uses the familiar (django-like) notion of request.POST['field']. – Michael Jan 9 at 21:20
feedback

You might find this slideshow that compares 10 micro frameworks (including Flask/Bottle) of intrest.

link|improve this answer
1  
Thank you, that's a nice slideshow. – Sylvain Sep 6 '11 at 15:06
4  
YouTube link to the original presentation by Richard Jones: youtube.com/watch?v=AYjPIMe0BhA – technomalogical Sep 30 '11 at 20:15
feedback

i pick bottle over flask any day, i just migrated from PHP am working on windows and the only framework thats not giving me a headache to set up is bottle, just install python and import bottle then run your app! simple as pie.+ not too verbosy just clean straight up code + most important i think its faster. well on the other hand am ecstatic that you two brilliant developers could consider working together, what i have seen missing in both frameworks is a CRUD wrapper "in PHP we have millins of crud classes one can use to avoid writting the same code over and over" something like junos ,implementation. the one file aspect is brilliant much like mojolicious::lite(Perl), F3 framework(PHP).awesome work guys! :)

link|improve this answer
feedback

I love Bottle too. Bottle is simple and easy to work with. One-file approach makes me easy to embed Bottle as a module into my own web application without concerning about system-wide Bottle dependency

link|improve this answer
feedback

On windows when creating single .exe web apps. Bottle is the only approach I've found to work. The dynamic load features of most other web frameworks breaks tools like py2exe.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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