Flask is a micro-framework for Python 2.x. To quote its creator: Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions It has exceptional documentation, a large number of extensions and a friendly community. What does "microframework" mean? In this case, it ...
45
votes
4answers
8k 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 ...
44
votes
7answers
9k views
Django vs Flask for a long-term project
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 + ...
30
votes
3answers
3k 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 ...
29
votes
7answers
6k 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 ...
16
votes
5answers
2k 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:
...
13
votes
2answers
730 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 ...
13
votes
1answer
486 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 ...
13
votes
4answers
3k 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
...
13
votes
3answers
2k 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 ...
12
votes
4answers
1k views
Is Flask recommened for inexpereienced 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 ...
11
votes
3answers
2k views
How does Pyramid compare against Flask
I am building a website and have the option of choosing either Flask or Pyramid.
I want to work with Mako and SQLAlchemy, both frameworks will allow me do it. Which one do you think is:
1 - Easier ...
10
votes
2answers
258 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 ...
10
votes
1answer
924 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 ...
8
votes
1answer
346 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. ...
8
votes
1answer
256 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 ...
8
votes
5answers
810 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 ...
8
votes
2answers
1k 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 ...
8
votes
3answers
444 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 ...
8
votes
5answers
3k 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 ...
7
votes
1answer
473 views
Adding REST behavior to a class with flask, case for blueprints?
I am dealing with a python application that consists of multiple distributed lightweight components that communicate using RabbitMQ & Kombu.
A component listens on two queues and can receive ...
7
votes
1answer
627 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 hell if I've gotten anywhere. Since I am almost sure there's ...
7
votes
1answer
143 views
Do Python generator objects become “unusable” after being traversed?
I was working on a Flask project, getting some data from an API wrapper. The wrapper returned a generator object, so I print the values (for obj in gen_object: print obj) before passing it to Flask's ...
7
votes
1answer
770 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 ...
7
votes
2answers
502 views
What's a good Flask/Python/WSGI analog to the PHP Apache shared memory stores like apc_store/apc_fetch?
I've done a couple of years of large-scale game server development in PHP. A load balancer delegates incoming requests to one server in a cluster. In the name of better performance, we began caching ...
6
votes
1answer
155 views
Create a Flask public url decorator
I'd like to create a decorator for Flask routes to flag certain routes as public, so I can do things like this:
@public
@app.route('/welcome')
def welcome():
return ...
6
votes
1answer
279 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 ...
6
votes
2answers
1k views
Flask/Werkzeug, how to return previous page after login
I am using the Flask micro-framework which is based on Werkzeug, which uses Python.
Before each restricted page there is a decorator to ensure the user is logged in, currently returning them to the ...
6
votes
2answers
1k views
How deploy Flask application on Webfaction?
Anybody know how to deploy a simple Flask application on Webfaction?
I know Webfaction support mod_wsgi and I read the guide on the Flask site but still I can't make my app working. Anybody have a ...
5
votes
1answer
61 views
What does thread local mean in Flask framework?
I am evaluating python frameworks to build a REST API. I have gone through many frameworks including flask and found Flask pretty interesting and easy to use with all the features needed to build a ...
5
votes
1answer
170 views
Serving static homepage with nginx and rest through uwsgi
I have a nginx + uwsgi website (using Flask for dynamic python pages).
I would like to serve the homepage which is static directly through nginx and route everything else to uwsgi.
The following ...
5
votes
1answer
140 views
500 Error without anything in the apache logs
I am currently developing an application based on flask. It runs fine spawning the server manually using app.run(). I've tried to run it through mod_wsgi now. Strangely, I get a 500 error, and nothing ...
5
votes
2answers
171 views
How to organize code for a Flask application with multiple set of templates
I'm writing an application with Flask and I'd like to generate different code for desktop and mobile browsers. IMHO it should be a good idea to keep the application code identical and push the problem ...
5
votes
1answer
445 views
Nginx configuration for static sites in root directory, Flask apps in subdirectories
I'd like to have a static site in my root public_html directory, then Flask apps in their own subdirectories (e.g. public_html/foo). The static root directory functions as expected.
I have spent ...
5
votes
2answers
275 views
Testing REST API with database backend
I want ask what is the best practice to test a REST API which use a database backend? I developed the api with Flask in Python and want to use unittest or nose.
But my problem is some resources ...
5
votes
2answers
443 views
Force Content-Type or expose request.data in Flask for known content-type
I am recreating a service in Python/Flask and am running into an issue with the way the existing clients authenticate. I have to match the existing clients scheme for compatibility reasons.
The ...
5
votes
2answers
126 views
Webapp technology questions and advices
I decided to write a long introduction in order to give you a better idea of what I'm trying to achieve. This will be my first real... commercialy aimed application.
Disclaimer: Even though I've been ...
5
votes
4answers
279 views
How to preserve database connection in a python web server
I am looking at the Flask tutorial, and it suggests to create a new database connection for each web request. Is it the right way to do things ? I always thought that the database connection should ...
5
votes
1answer
343 views
How can I override the HTTP methods for PUT and DELETE in a Flask Module?
I am having a hard time trying to modify the Flask request object before routing occurs.
My API Module (not my entire Flask app) depends on faking PUT and DELETE operations by sending a special ...
5
votes
1answer
291 views
Dynamic use of templates in Jinja2
I have to following scenario:
a python list of python dictionaries l = [a,b,c,...,n]
each element of the list is a python dictionary that looks something like this:
d = {}
d['type'] = 5
d['content'] ...
5
votes
1answer
420 views
Using CherryPy/Cherryd to launch multiple Flask instances
Per suggestions on SO/SF and other sites, I am using CherryPy as the WSGI server to launch multiple instances of a Python web server I built with Flask. Each instance runs on its own port and sits ...
5
votes
3answers
1k views
WSGI Middleware for OAuth authentication
I have build a very small web application using Flask. Now I would like to add very basic authentication to the site (I don't need authorization). As Flask does not support auth&auth out of the ...
5
votes
2answers
626 views
See anything wrong with my attempt to get Flask running? (mod_wsgi + virtualenv)
I have a VPS running a fresh install of Ubuntu 10.04 LTS. I'm trying to set up a live application using the Flask microframework, but it's giving me trouble. I took notes while I tried to get it ...
5
votes
1answer
1k views
Get ip address of visitors using Python (specifically Flask micro-framework)
I am using the Flask micro-framework (based on Werkzeug) which uses Python (2.6 in my case).
I'm making a website where users can log on and download files.
I need to get the ip address of users ...
5
votes
1answer
754 views
Flask for Python - architectural question regarding the system
I've been using Django and Django passes in a request object to a view when it's run. It looks like (from first glance) in Flask the application owns the request and it's imported (as if it was a ...
5
votes
1answer
838 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:
...
5
votes
1answer
450 views
Multilingual flask application
Is there a preferred way to make a Flask application multilingual? Ideally, the solution would enable to @app.route the same view to use different urls for each languages, like ...
4
votes
1answer
99 views
+100
flask cherrypy and static content
I know there are plenty of questions about flask and cherrypy and static files but I still can't seem to get this working.
There's a snippet to deploy a flask app on cherrypy here:
...
4
votes
1answer
48 views
How do I simulate an AJAX request with Flask test client?
Testing Flask applications is done with:
# main.py
from flask import Flask, request
app = flask.Flask(__name__)
@app.route('/')
def index():
s = 'Hello world!', 'AJAX Request: ...
4
votes
1answer
69 views
read slave , read-write master setup
I have a Flask,SQLAlchemy webapp which uses a single mysql server. I want to expand the database setup to have a read-only slave server such that I can spread the reads between both master and slave ...
4
votes
1answer
123 views
Connecting to mongodb in a testable way
I'm planning to write a webapp in python using Flask and MongoDB (and probably Ming as ODM). The problem is I would like to keep my model and controller really well separated, one reason for this ...