Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions.

learn more… | top users | synonyms

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 ...
39
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 ...
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 + ...
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 ...
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 ...
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 ...
10
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/ ...
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: ...
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 ...
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 ...
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 ...
31
votes
5answers
3k 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 ...
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 ...
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 ...
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 ?
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 ...
9
votes
3answers
5k views

Flask/Werkzeug how to attach HTTP content-length header to file download

I am using Flask (based on Werkzeug) which uses Python. The user can download a file, I'm using the send_from_directory-function. However when actually downloading the file, the HTTP header ...
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' ...
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 ...
5
votes
1answer
723 views

How to generate an html directory list using Python

I am having some problems using Python to generate an html document. I am attempting to create an HTML list of a directory tree. This is what I have so far: def list_files(startpath): for root, ...
3
votes
3answers
2k views

Passing html to template

I'm building an admin for Flask and SQLAlchemy, and I want to pass the html for the different inputs to my view using render_template. The templating framework seems to escape the html automatically, ...
11
votes
2answers
626 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 ...
7
votes
1answer
1k views

SQLAlchemy ordering by count on a many to many relationship

This is a simplified example of my current models (I'm using the Flask SQLAlchemy extension): like = db.Table( 'like', db.Column('uid', db.Integer, db.ForeignKey('users.id')), ...
3
votes
1answer
1k views

Flask not getting any data from jQuery request data

I've a handler for a URL, @app.route("/", methods=['POST']) @crossdomain(origin='*') def hello(): ss=str(request.data) print ss return ss The handler cannot retrive the data part of the ...
7
votes
2answers
2k views

Is it possible to use Mysql with SqlAlchemy and Flask if my mysql socket isn't in /tmp?

The location for mysql.sock on my system is /usr/local/mysql5/mysqld.sock thrilllap-2:tmp reuven$ mysqld --print-defaults mysqld would have been started with the following arguments: ...
3
votes
3answers
1k views

Heroku app crashed after pushing small change. Very confused

I am using Heroku with python and Flask. My app was working fine until I updated a few lines in my python application file. The app runs fine locally, but I now have the following error when I try to ...
2
votes
2answers
321 views

Why is this Jinja nl2br filter escaping <br>'s but not <p>'s?

I am attempting to implement this Jinja nl2br filter. It is working correctly except that the <br>'s it adds are being escaped. This is weird to me because the <p>'s are not being escaped ...
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 ...
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 ...
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 ...
10
votes
4answers
434 views

What is the best way to get a semi long unique id (non sequential) key for Database objects

Iam building a web app and I would like my URL scheme to look something like this: someurl.com/object/FJ1341lj Currently I just use the primary key from my SQL Alchemy objects, but the problem is ...
11
votes
2answers
736 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 ...
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 ...
6
votes
1answer
1k 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'] ...
6
votes
2answers
697 views

Dynamically loading python source code

I'm currently playing with Flask and I can't figure out how the debug mechanism is working. To be more precise when I save the python file with my application I don't need to restart the server, it ...
7
votes
3answers
2k views

Jinja2 escape all HTML but img, b, etc

Jinja2 automatically escapes all HTML tags, but I want to not escape some tags (like img, b, and some others). How can I do it?
6
votes
7answers
3k views

Bootstrapping a web server in Scala

The following is possible using Python: $ apt-get install python $ easy_install Flask $ cat > hello.py from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return "Hello ...
4
votes
2answers
1k views

How to do nested comments in Flask/Jinja?

Like the comments in Hacker News and Reddit. I've looked at Jinja's docs but I can't find anything about recursion (which I assume is how this sort of thing is done). Any ideas? Thanks in advance. ...
2
votes
2answers
1k views

Streaming data with Python and Flask

I can't seem to figure out how to using Flask's streaming. Here's my code: @app.route('/scans/') def scans_query(): url_for('static', filename='.*') def generate(): yield ...
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 ...
8
votes
1answer
520 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 ...
8
votes
3answers
8k views

Getting the array of get params in python

I know in php I could just use $_GET['key1']['key2'] to retrieve get data that is sent in the form of an array but is that something possible in python as I just receive a string and it's not ...
7
votes
2answers
1k views

What's the proper way to run some Python code asynchronously?

I needed to send mail from my plain Flask app, so I thought the simplest way would be to send it using smtplib. But I had to do it asynchronously - you can't just insert a 3 second delay into the ...
6
votes
2answers
4k views

Form sending error, Flask

There is form with two <input type="submit">. But when i'm sending it, second submit causes error. layout: <form action="{{ url_for('index') }}" method="post"> <input ...
5
votes
3answers
2k 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 ...
4
votes
1answer
2k views

Changing default url to static-media in Flask

I've made a website using Flask and I have no problems getting things to work properly on the built-in development server. I've also been able to get things running on my production server under ...
3
votes
1answer
985 views

In python using Flask, how can I write out an object for download?

I'm using Flask and running foreman. I data that I've constructed in memory and I want the user to be able to download this data in a text file. I don't want write out the data to a file on the local ...
3
votes
2answers
3k views

Deploying flask on cherokee and uwsgi [closed]

I'm attempting to deploy a flask web app I've developed using cherokee and uwsgi. I got cherokee and uwsgi installed and working (i think uwsgi works), but when I configure the app in cherokee, i just ...
10
votes
2answers
4k views

What's your folder layout for a Flask app divided in modules?

I am experimenting with flask coming from Django and I really like it. There is just one problem that I ran into. I read the flask docs and the part about big applications or something like that and ...
8
votes
1answer
2k views

How do I use Flask routes with Apache and mod_wsgi?

I've got my Apache server setup and it is handling Flask responses via mod_wsgi. I've registered the WSGI script via the alias: [httpd.conf] WSGIScriptAlias /service ...

1 2 3