Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions.
107
votes
8answers
30k views
Python Flask vs Bottle
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 ...
90
votes
8answers
24k views
Django vs Flask for a long-term project [closed]
I am looking for a comparison of django and flask for a project that will live for a long time, and will need to be maintained, built upon and grow as the months progress.
I am considering Flask + ...
70
votes
1answer
2k views
Heroku truncates HTTP responses?
I am running a Flask/Gunicorn Python app on a Heroku Cedar dyno. The app returns JSON responses to its clients (it's an API server, really).
Once in a while clients get 0-byte responses. It's not me ...
63
votes
3answers
10k views
Flask vs webapp2 for Google App Engine
I'm starting new Google App Engine application and currently considering two frameworks: Flask and webapp2. I'm rather satisfied with built-in webapp framework that I've used for my previous App ...
51
votes
2answers
11k views
Typical Angular.js workflow and project structure (with Python Flask)
I am pretty new to this whole MV* client-side framework frenzy. It doesn't have to be Angular.js, but I picked it because it feels more natural to me than either Knockout, Ember or Backbone. Anyway ...
40
votes
7answers
8k views
Python Framework for small website
I am planning a small, simple website to showcase myself as an engineer. My preferred language is Python and I hope to use it to create my website.
My pages will be mostly static, with some database ...
35
votes
8answers
11k views
Static files in Flask - robot.txt, sitemap.xml (mod_wsgi)
Is there any clever solution to store static files in Flask's application root directory.
robots.txt and sitemap.xml are expected to be found in /, so my idea was to create routes for them:
...
31
votes
2answers
4k views
Does Flask support regular expressions in its URL routing?
I understand that Flask has the int, float and path converters, but the application we're developing has more complex patterns in its URLs.
Is there a way we can use regular expressions, as in ...
31
votes
5answers
4k views
Is Flask recommended for inexperienced Python programmers?
Regarding Flask, the basic docs look cool, but I understand that in order to use it efficiently, I would have to use Werkzeug libraries.
I don't know if I would be able to understand all those ...
24
votes
2answers
10k views
Flask user authentication
I have an appliation that will use flask and mongodb; I will probably host it on rackspace.
I need to understand how flask authenticating works. I have not found much information on the subject. Is ...
22
votes
3answers
10k views
json.dumps vs flask.jsonify
I am not sure I understand the purpose of flask.jsonify method. I try to make json string from this:
data = {"id": str(album.id), "title": album.title}
but what I get with json.dumps differs from ...
22
votes
2answers
2k views
Python - How are signals different from pubsub?
Django and Flask make use of signals — the latter uses the Blinker library. In the context of Python, Blinker and the Python pubsub library, how do signals and pubsub compare? When would I use one or ...
21
votes
5answers
10k views
cherrypy vs flask/werkzeug
I want to write a Python "information server":
Various types of information will be displayed: tables of data, docs, etc. Some is dynamic and some static. I'd like to use HTML templating, and am ...
18
votes
2answers
5k views
Get IP address of visitors using Python + Flask
I'm making a website where users can log on and download files, using the Flask micro-framework (based on Werkzeug) which uses Python (2.6 in my case).
I need to get the IP address of users when they ...
18
votes
4answers
5k views
Django vs Flask + Werkzeug for complex, scalable and large applications
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
...
18
votes
1answer
3k views
web.py and flask
For these pythonic web frameworks;
They looks similar, except a few minor differences like their url handling schemes. So it is very hard to choose one of them.
I want to learn from your ...
17
votes
6answers
3k views
Which Python web framework that novice web developer should learn? Flask? Django? or …?
I'm a former sysadmin, an intermediate programmer with zero experience on web development(I only code system script with Bash/Perl before). I learned Python in 6 months & coded some system tools ...
17
votes
1answer
3k views
MongoKit vs MongoEngine vs Flask-MongoAlchemy for Flask [closed]
Anyone has experiences with MongoKit, MongoEngine or Flask-MongoAlchemy for Flask?
Which one do you prefer? Positive or negative experiences?. Too many options for a Flask-Newbie.
Thank you in ...
17
votes
3answers
6k views
using Flask and Tornado together?
I am a big fan of Flask - in part because it is simple and in part because has a lot of extensions. However, Flask is meant to be used in a WSGI environment, and WSGI is not a non-blocking, so (I ...
17
votes
1answer
2k views
Flask-SQLAlchemy import/context issue
I want to structure my Flask app something like:
./site.py
./apps/members/__init__.py
./apps/members/models.py
apps.members is a Flask Blueprint.
Now, in order to create the model classes I need ...
15
votes
3answers
3k views
MongoDB - will it fit a small hobby web application?
I'm working on a small web application using the Python Flask framework. For a few happy weeks SQLAlchemy was a perfect fit for my needs. In the meantime I found out more about MongoDB, played with ...
15
votes
2answers
5k views
How to organize a relatively large Flask application?
I'm building my first Flask app and i can't figure it out a good, clean Pythonic way of organizing my application.
I don't want to have everything in a single .py file as in their example.
I would ...
14
votes
4answers
3k views
How to send image generated by PIL to browser?
I'm using flask for my application. I'd like to send an image (dynamically generated by PIL) to client without saving on disk.
Any idea how to do this ?
14
votes
2answers
2k views
Flask: current page in request variable
In a template, how do I get what page I'm currently on? I'd rather not pass a variable like page , especially when I know some request.xxx can provide me with the information.
<li {% if ...
14
votes
1answer
3k views
Flask error: werkzeug.routing.BuildError
I modify the login of flaskr sample app, the first line get error. But www.html is in the template dir.
return redirect(url_for('www'))
#return redirect(url_for('show_entries'))
display error:
...
14
votes
1answer
452 views
Flask slow at retrieving post data from request?
I'm writing flask application that accepts POST requests with json data. I noticed huge differences in response time based on data size being passed to application. After debugging I narrowed down ...
13
votes
5answers
7k views
jsonify a SQLAlchemy result set in Flask
I'm trying to jsonify a SQLAlchemy result set in Flask/Python.
The Flask mailing list suggested the following method ...
13
votes
1answer
2k views
URL building with Flask and non-unique handler names
Flask provides a url_for function to generate URLs to handlers based on the URL pattern. But this would imply that the handler functions must have unique names across the entire application. Is that ...
13
votes
2answers
2k views
How do I get the user agent with Flask?
I'm trying to get access to the user agent with Flask, but I either can't find the documentation on it, or it doesn't tell me.
13
votes
2answers
4k views
Flask-principal tutorial (auth + authr)
Anybody know of a good tutorial about flask-principal? I'm trying to do authentication and authorization (needRole and needIdentity) and I haven't gotten anywhere.
I am almost sure there's no really ...
13
votes
1answer
2k views
Flask - Accessing the config variable in the template
I am using Flask version 0.7. I have stored the path of static content in a configuration file and loaded it using
app.config.from_envvar(<file_name>)
Can I be able to access this config ...
13
votes
4answers
3k views
Flask and Redis
What is best way to interact with Redis in a Flask app? Do you just import Redis and ...
r = redis.Redis()
r.connect()
or is there an ORM or something I haven't seen yet?
13
votes
2answers
3k views
How do you set up a Flask application with SQLAlchemy for testing?
It seems common practice in Flask to start like this:
from flask import Flask
from flaskext.sqlalchemy import SQLAlchemy
app = Flask(__name__)
SQLALCHEMY_DATABASE_URI = 'something'
...
13
votes
4answers
170 views
Connect to a Database in Flask, Which Approach is better?
Method One: Using special g object from http://flask.pocoo.org/docs/tutorial/dbcon/ and http://flask.pocoo.org/docs/patterns/sqlite3/
import sqlite3
from flask import g
DATABASE = ...
13
votes
3answers
2k views
Flask authentication using LDAP
I've googled an answer for this but have found nothing - maybe because it's so obvious. But I want to make sure.
What is the correct way to authenticate users using an LDAP server in a Flask web ...
12
votes
2answers
2k views
How do I use url_for if my method has multiple route annotations?
So I have a method that is accessible by multiple routes:
@app.route("/canonical/path/")
@app.route("/alternate/path/")
def foo():
return "hi!"
Now, how can I call url_for("foo") and know that ...
12
votes
2answers
5k views
Flask and Mongo [closed]
Thinking of a web service entirely built on top of MongoDB, while I am pretty confortable with PyMongo, I would like to know if you guys have any positive or negative experiences/stories about either ...
12
votes
1answer
2k views
How to implement server push in Flask framework?
I am trying to build a small site with the server push functionality on Flask micro-web framework, but I did not know if there is a framework to work with directly.
I used Juggernaut ...
12
votes
2answers
4k views
Django, Flask or Ruby on Rails for a very big project
I'm going to start a very large project, and I'm choosing between these three frameworks. The application will have lots of accesses per day, and the project itself will be divided in many different ...
12
votes
2answers
2k views
Structure of flask applications
I'm trying to create a simple, but not trivial application with Flask and I keep running into a situation which is not explained well in the docs.
I'd like my app to be split between different ...
12
votes
1answer
5k views
Flask blueprints proper usage
I have a question regarding blueprints. I have an app which is structured like this
app
/run.py
/APP
/__init__.py
/VIEWS
/__init__.py
/general.py
...
11
votes
3answers
4k views
flask blueprint template folder
My flask app layout is:
myapp/
run.py
admin/
__init__.py
views.py
pages/
index.html
main/
__init__.py
views.py
pages/
...
11
votes
2answers
634 views
Slow Requests on Local Flask Server
Just starting to play around with Flask on a local server and I'm noticing the request/response times are way slower than I feel they should be.
Just a simple server like the following takes close to ...
11
votes
3answers
1k views
What are some good web apps for learning Flask?
I'm looking for apps source code with user registration, login, session, oauth and SQLAlchemy for learning Flask. I have looked at the source for flask.pocoo.org website and also some repos at Github. ...
11
votes
2answers
741 views
Is it ok to spawn threads in a wsgi-application?
To achieve something similar to google app engines 'deferred calls' (i.e., the request is handled, and afterwards the deferred task is handled), i experimented a little and came up with the solution ...
11
votes
2answers
4k views
Python (Flask): How to get whole raw post body?
So, while ago I asked similar question:
How to get whole request POST body in Python (Flask)
And I got an answer that actually flask.request.data is the raw POST BODY. But that seems to work only if ...
11
votes
1answer
918 views
Request and basic profiling information for Flask
Most web frameworks let you know the amount of time that it took to process a certain page request. I'm starting to work with Flask framework now and am very much in need of this information but ...
11
votes
4answers
701 views
Flask static_folder hosted on S3
I am trying to reroute all of my /static content to host on Amazon S3. My first thought was to use global config['path'] throughout my jinja templates, but this won't work for external css and js ...
11
votes
1answer
254 views
When should Flask.g be used?
I saw that g will move from the request context to the app context in Flask 0.10, which made me confused about the intended use of g.
My understanding (for Flask 0.9) is that:
g lives in the ...
11
votes
1answer
1k views
How to implement user_loader callback in Flask-Login
I'm attempting to use Flask and the Flask-Login extension to implement user authentication in a Flask app. The goal is to pull user account information from a database and then log in a user, but I'm ...

