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
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, ...
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
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

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 ...
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
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 ...
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
21 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
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
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
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 ...
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
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
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
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
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
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) {\ ...
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
1answer
25 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 = ...
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 ...
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
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
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
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

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
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 ...
0
votes
0answers
12 views

Restoring form data across a redirect to request.refferer in flask

I have a route that receives post data from a form and processes it via some external function. Essentially it can be summarized as the following: def process(): success, message = render( ...
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
vote
1answer
20 views

flask app with subdomain on openshift

I created python flask app, and deployed to openshift. It can be accessed at https://ledgerware-hj.rhcloud.com Now I'd like to use subdomain names for language code. On my local pc I added the ...
1
vote
1answer
28 views

How to keep track of Form field changes in Flask-WTF?

I have model with members field as shown below: class Team(db.Model): --- some fields --- members = ListProperty(db.Key) # Using App Engine datastore as backend. I am using Flask-WTFforms ...
1
vote
1answer
33 views

Flask route for AngularJS with HTML5 URL mode

I have an AngularJS app being served via Flask. I am using the HTML5 routing mode and thus need to redirect several URLs to the client app. I'm not sure how to do the wildcard matching needing to do ...
1
vote
2answers
56 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', ...
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 ...
2
votes
2answers
39 views

Flask-SQLAlchemy InvalidRequestError: Object is already attached to session

I'm creating a forum project using Flask, and managing all the users, threads, posts, etc. using Flask-SQLAlchemy. However, I've found that when I attempt to do x (e.g. edit a post), I get an ...
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 ...
-1
votes
1answer
26 views

How to generate a hashed share link using flask

I am developing an app, and I want to realize the "share" function, which can share the content to facebook or twitter. Every content has its own id, and I want to generate a hashed link when the ...
1
vote
2answers
21 views

Flask+Apache and 500 Error

I am using Flask and Apache to build a website and the site is up and running. However I met this strange 500 error: one 500 error will take the website down, and the site will never come online ...
1
vote
1answer
39 views

Conflicting imports

I've installed 2 python libraries, Flask and the Dropbox SDK. Both have a module called "session". Whenever I call session, it tries calling it on both Flask and Dropbox, but then my application ...
-1
votes
2answers
44 views

flask application with mysql tutorial [closed]

In the flask tutorial at Step 2: Application Setup Code, I'd like to use mysql instead of sqlite3. Do I just do this: # all the imports import mysql
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: ...
1
vote
1answer
46 views

Is it possible to load jinja2 templates without having variables replaced?

Suppose we have the following structure templates/modal.html <div class="title"> {% block title %} {% endblock %} </div> <div class="content"> {% block content %} {% ...
1
vote
2answers
22 views

Flask Application not starting up, server says HTTP 500

My flask app is in $OPENSHIFT_REPO_DIR/repo directory with files as ..repo$ ls runserver.py app.py and my app.py looks like def run_simple_httpd_server(app, ip, port=8080): from ...

1 2 3 4 5 38