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

learn more… | top users | synonyms

0
votes
0answers
8 views

Web Services: WCF or Python based services

Task: We are looking to develop a WebService that basically performs certain management operations on files such as indexing, compression, streaming. the file can be anything from text to images to ...
0
votes
1answer
18 views

flask threading on triggering a different process

In route request in Flask, how do I trigger a thread to start and have it continue right away to the next line. In the code below, how do I get the print "Onto the next already" to occur right after ...
0
votes
0answers
6 views

table event/ chart plotting in python/flask

All, I'm working with python and flask. Have a dataset consisting of multiple time-series with unique series names; this is defined as a list of dictionaries: data_list = ({'name' : 'series ...
1
vote
0answers
14 views

How to buffer results from a webpage to another?

I am using flask for my website. I want to submit data using a form from my website to another website and then format the results page (an html page) before displaying it on the browser on my ...
0
votes
0answers
25 views

Pymongo object has no attribute 'remove'

I have modified list.html template from flask-mongokit exmaple. Added "check boxes" with name "ck" and a delete link. {% extends "base.html" %} {% block body %} <h2>All ...
0
votes
0answers
11 views

Flask-SQLAlchemy TimeoutError

My backend configuration is : Ubuntu 12.04 Python 2.7 Flask 0.9 Flask-SQLAlchemy Postgres 9.2 I've got this error message: TimeoutError: QueuePool limit of size 5 overflow 10 reached, ...
2
votes
1answer
24 views

Flask-login with static user always yielding 401- Unauthorized

I am trying to build a super simple web app for my own use. I'll be the only user, so I don't feel the need to involve a database for user management. I'm trying to use flask-login, but even though ...
0
votes
0answers
18 views

error: 502 bad gateway in flask app on nginx and uwsgi

I am deploying a flask app on Ubuntu server using Nginix, uWSGI. I followed this tutorial... http://www.soundrenalin.com/about I am beginner in Nignix and Sys Admin. But when i run my app it gives ...
0
votes
2answers
37 views

Flask how to calculate tags count

I developing simple blog with tagging support. Actually I would like to add tags cloud functionality and I need to get count of each tag used in blog. My Blog and Tag models looks like: class ...
0
votes
0answers
10 views

How can I use a list function in CouchDB to generate a valid (/normal) ViewResults object?

I have a simple problem I need to solve, and list functions are my current attempt to do so. I have a view that generates almost what I need, but in certain cases there are duplicate entries that make ...
0
votes
0answers
22 views

Celery task hangs when chaining to a group

I'm trying to write a celery workflow that syncs a set of contacts from a remote system to the local database. I would like to split the results of the remote system api call into several batches, so ...
1
vote
2answers
16 views

Do I need to name the url when using app.add_url_rule?

From the Flask docs: def index(): pass app.add_url_rule('/', 'index', index) It also says: endpoint – the endpoint for the registered URL rule. Flask itself assumes the name of the view ...
0
votes
1answer
15 views

Flask: Saving session data manually

I have a Flask application that uses an ajax request, and this request should give a true/false response. The user enters an authorization code, and if the authorization code matches what is needed or ...
13
votes
4answers
158 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 = ...
5
votes
1answer
72 views
+150

Unit test a Flask session - cannot reproduce failure with session_transaction

I am testing a Flask application (Flask 0.9), and in particular I have a session fixture that I would like to run in the documented-way, being something like this (as I understand it): from flask ...
0
votes
1answer
28 views

Uploading CSV to Flask for background processing

I'm looking to use Flask to host a single-page website that would allow users to upload a CSV that would be parsed and put into a database. All of the database shenanigans are complete (through ...
1
vote
2answers
28 views

Allow ALL method types in flask route

How can I allow a route to accept all types of methods? I don't just want to route the standard methods like HEAD, GET, POST, OPTIONS, DELETE & PUT. I would like it to also accept the following ...
0
votes
0answers
20 views

Zero-length URL Segments

Using the latest versions of Flask and Flask-RESTful, I have some very basic routes defined as such: def build_uri_rules(uri_map): for cls, uri in uri_map.iteritems(): ...
0
votes
0answers
35 views

Flask+Nginx+uWSGI : ImportError: No module named site

I installed as the http://www.reinbach.com/uwsgi-nginx-flask-virtualenv-mac-os-x.html link's tutorial and when executing the command uwsgi --ini deploy/deploy.ini, the terminal says there was an ...
0
votes
1answer
22 views

Jinja2 template from Flask is failing to render CONTINUE statement

I am trying a simple continue inside a for-loop in Flask with jinja2 {% for num in range(0,10) %} {% if num%2 == 0 %} {% print num %} {% else %} {% continue %} {% endif %} and i get ...
1
vote
1answer
311 views

Flask App Using WTForms with SelectMultipleField

I have a Flask application that uses WTForms for user input. It uses a SelectMultipleField in a form. I can't seem to get the app to POST all items in the field when selected; it only sends the ...
1
vote
2answers
26 views

Static files with Flask in production

Usually, the problem is how to serve static files in development environment, while in my case it is the opposite. So I've deployed a Flask application using Apache and mod_wsgi, configured Apache to ...
0
votes
1answer
27 views

Python : Flask : Catch All Url for login_required

I want the user to not be able to fetch any assets if they aren't logged in. Can any one tell me why the below doesn't work for : http://domain-name:5000/static/index.html. The user gets served ...
0
votes
1answer
26 views

Validating an unknown set of items with WTForms

I have a form that looks something like this: <form method="post"> <input id="1" name="people" type="checkbox" value="1"/> <label for="1">Paul</label> <input ...
0
votes
0answers
23 views

Converting timezone from UTC to IST in App Engine?

Question is related to Jinja2 templating system. But I want to explain the scenario: According to the doc, App Engine always stores and returns datetime in UTC format. I am using ...
0
votes
2answers
49 views

Why the Flask teardown_request can not get exception object under debug mode (always None, but normal when debug=True)?

I want to rollback my db session while exception happens, so I tried: @app.teardown_request def teardown_request(exception): print "Teardown 1 {0!r}".format(exception) if exception: ...
0
votes
2answers
581 views

Is it possible to perform Includes with flask?

Say I have a template layout saved in template.html. This template includes a banner, side navigation, content container, and footer. Can I use flask to break up these page elements in such a way ...
0
votes
0answers
25 views

Can access ViewField from mapped classe in Flask

I have a ViewField in my mapped class. class Keyword(Document): doc_type = 'keyword' content=TextField() search = ViewField( 'docs', "function(doc) {\ ...
2
votes
2answers
233 views

How to make eclipse/pydev happy to see flask extensions on windows?

I stumbled upon this article and followed all steps. But pyDev won't see my flask extensions and that's really annoying. There's only one thing (and I think this is the key): Touch ...
3
votes
3answers
1k views

Using Flask Blueprints, how to fix url_for from breaking if a subdomain is specified?

Inside of a flask blueprint, i have: frontend = Blueprint('frontend', __name__) and the route to my index function is: @frontend.route('/') def index(): #code This works fine but, I am trying ...
68
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 ...
1
vote
1answer
66 views

Python hangs up on returning from a function

So say I have two functions in a fairly complicated Flask application. One function calls the other function. def dispatch_unlock(...): # ... stuff ... log('dis start') # this routine ...
4
votes
4answers
146 views

Lookup speed: State or Database?

I have a bunch of wordlists on a server of mine, and I've been planning to make a simple open-source JSON API that returns if a password is on the list1, as a method of validation. I'm doing this in ...
0
votes
0answers
29 views

Python Flask-Restful - Object has not endpoint

Good Evening, I am having some serious troubles getting flask-restful to work for me, It should be very simple and has been in the past but I am trying to load my libraries in a different format and ...
0
votes
2answers
60 views

rendering forms with flask + wtform

code in question: from flask import Blueprint, render_template, abort from flask.ext.wtf import Form import os from jinja2 import TemplateNotFound from models import Member from ...
2
votes
2answers
47 views

Disabled field is considered for validation in WTForms and Flask

I have some fields in page disabled as for example:(using jinja2 templating system) <html> <body> <form action="" method=POST> {{ form.name(disabled=True) }} {{ form.title ...
1
vote
2answers
55 views

Send Apple Notification Service A Message With Python

I am following the documentation given with the following pyAPNS library: https://github.com/djacobs/PyAPNs apns = APNs(use_sandbox=True, cert_file='ThePushCertificate.pem', ...
0
votes
1answer
24 views

Flask-SQLAlchemy how to delete all rows in a single table

How do I delete all rows in a single table using Flask-SQLAlchemy? Looking for something like this: >>> users = models.User.query.all() >>> models.db.session.delete(users) # but ...
1
vote
1answer
36 views

Case Insensitive Flask-SQLAlchemy Query

I'm using Flask-SQLAlchemy to query from a database of users; however, while user = models.User.query.filter_by(username="ganye").first() will return <User u'ganye'> doing user = ...
9
votes
2answers
1k views

Flask Optional URL parameters

Is it possible to directly declare a flask url optional parameter, currently I'm proceeding the following way: @user.route('/<userId>') @user.route('/<userId>/<username>') def ...
3
votes
0answers
18 views

Cross-database join in Flask-SQLAlchemy

I'm trying to do a cross-database join in Flask-SQLAlchemy: app = Flask(__name__) app.config['SQLALCHEMY_DATABASE_URI'] = '...Master...' app.config['SQLALCHEMY_BINDS'] = { 'Billing': '...Billing...' ...
0
votes
0answers
19 views

Flask app works on localhost but produces 404 in production

I've got a simple site which is being served by Flask. My routes work on localhost, however, when deployed to the production server (apache2 on Webfaction), the index renders fine with all static ...
1
vote
1answer
220 views

Grotesque memory usage and leak with flask-sqlalchemy on Debian Wheezy

I'm making a simple web app that pulls down (a lot? currently over 64000 fields in two tables and rising) of data from a MySQL database using flask-sqlalchemy. I only ran one instance and didn't ...
0
votes
1answer
40 views

How do I configure a Flask-based python app using nginx and uwsgi?

I have a Flask-based python app that needs a bunch of configuration information (e.g. database connection parameters) on app start. In my nginx configuration, I can provide parameters using ...
0
votes
1answer
22 views

RestKit POST object to Python

I am using RestKit for iOS to perform a POST to my Python (Flask) server. The POST arguments is a set of nested dictionaries. When I create my hierarchical argument object on the client side and ...
1
vote
1answer
28 views

Test Suite in Flask with MongoEngine

I have a small app in Flask which I want to accompany with tests. I have used Django tests before, and I'm just getting to grips with the lower level functionality in Flask. My tests currently look ...
1
vote
0answers
13 views

Socketio client switching to xhr-polling running with flask app

I'm running a socketio server with a flask app using gevent. My namespace code is here: class ConversationNamespace(BaseNamespace): def __init__(self, *args, **kwargs): request = ...
0
votes
0answers
30 views

how do I go about streaming images on my site from another site using flask/python

So I have been working on a flask/python project to gain more experience on real world stuff. So far I have created a registration page/login/email. I have a page called reddit (this is all not ever ...
1
vote
1answer
28 views

Rendering a WTForms CheckboxInput in Jinja Template

I can't seem to figure out how to render a WTForms CheckboxInput in my template. When I try to render the field using Flask in my Jinja template I get this error: TypeError: call() takes exactly 2 ...
2
votes
1answer
53 views

How does Flask knows which decorated function to call?

So I'm going through the basic Flask tutorial, and looking at their code there's this snippet: @app.teardown_appcontext def close_db_connection(exception): """Closes the database again at the ...

1 2 3 4 5 38