Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions.
1
vote
1answer
7 views
Flask-WTForms testing (with py.test)
I am building an application using flask and flask-wtforms, and i was writing a test for my login form.
I am doing it like this:
with app.test_client() as c:
c.post('/login', ...
1
vote
0answers
21 views
AttributeError: 'RequestContext' object has no attribute 'user'
I'm getting this error, and I'd like any sort of input because it is a brick wall right now.
I have an application, that is using flask-security, which imports current_user through flask-login. Any ...
1
vote
1answer
14 views
Why does Flask-Security Cause a new KVSession Record for Each Request?
I'm trying out using Flask-KVSession as an alternative session implementation for a Flask web site. I've created a test website (see Code 1 below). When I run this, I can use the browser to store ...
1
vote
1answer
26 views
Routing three URLs to single endpoint ? Using Flask and Jinja2
I need to map three URLs to single view function.
@app.route('/items/', defaults={"item_name": "all", "status": "available"}, methods=['GET', 'POST'])
@app.route('/items/<item_name>/')
...
0
votes
1answer
29 views
Unable to run 2 different flask apps on same server
Here is my nginx config
server {
listen 80;
server_name site.com;
location / {
include uwsgi_params;
uwsgi_pass unix:/tmp/uwsgi.sock;
uwsgi_param ...
0
votes
1answer
22 views
Flask-WTForms: how to check if a field is required?
I defined a form in the following way:
class LoginForm(Form):
login = EmailField(u'Email address', [required(), length(min=5, max=2048), validators.Email()])
password = ...
0
votes
1answer
32 views
Python: no such test method: How can I execute a test method by calling it explicitly from another method?
Here is my LoginResourceHelper Test class
from flask.ext.testing import TestCase
class LoginResourceHelper(TestCase):
content_type = 'application/x-www-form-urlencoded'
def ...
0
votes
1answer
33 views
Flattening an array in Flask API
I'm making an API with flask that takes as a POST message body a nested array, and then returns a list of the values. An example would be curl …. –d ”(([[1, [], [2, 3]], [[4]], 5])” would return ...
2
votes
2answers
34 views
Longest 200 byte string - database validation max_length
So, working to a specification which dictates a byte length for a given variable (200 bytes) provided by end users/apps.
Using a python string, what is the maximum character length of a string, which ...
0
votes
2answers
10 views
check variable type inside Jinja2 in Flask
The template file i created contains this:
{% if type({'a':1,'b':2}) is dict %}
print "Oh Yes!!"
{% else %}
print "Oh No!!!"
{% endif %}
Then Jinja2 responds by saying:
...
1
vote
0answers
34 views
Populate a WTForms form object with a datetime.date
I'm cooking up a crud interface for an object representing a bill, as in the water bill, the electric bill, etc.
I'm using sqlalchemy to handle the data, wtforms to handle the forms, and flask to ...
0
votes
1answer
20 views
ImportError: No module named httplib2 on Heroku
Here is my import libraries in my python code which i hosted on heroku
import os
from flask import Flask, render_template
import sys, httplib2, json;
Its shows error ImportError: No module named ...
1
vote
0answers
26 views
Best way to use Jinja2 template in Javascript?
I'm trying to AJAXify some functionality of a page that uses Jinja2 and Flask. Problem is that I want the entire Jinja2 template to be rendered by Javascript but, this isn't possible with some of the ...
0
votes
0answers
41 views
Is there any authentication plugin for Python Flask?
I'm curious about what would be the best way to implement a solid authentication system in Flask. Like with ACL levels, bells and whistles. Thanks for your input!
1
vote
1answer
45 views
Can push notifications be done with an AngularJS+Flask stack?
I have a Python/Flask backend and an Angular frontend for my website. At the backend there is a process that occasionally checks SQS for messages and I want it to push a notification to the client ...
2
votes
1answer
64 views
Python/Flask best practice for service layer
I'm a little new to Python ( I come from a Java/C++ background ). I've been playing around with Flask for web development. My question relates somewhat to dependecy injection and thread safety. In the ...
1
vote
1answer
26 views
Looking for techniques to debug external Python Flask Extensions
I'm using several third party flask-extensions (flask-login, flask-security, flask-principal, flask-mongoengine etc...the list is about 12 deep) in an application that is failing silently in ...
0
votes
1answer
11 views
SQLAlchemy InvalidRequest on adding to relationship collection
I adding kind of 'migration' functionality to my Flask project. Initially I want to add user and roles which relates as many-to-many following way:
users_to_roles_association_table = ...
0
votes
0answers
17 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
24 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 ...
1
vote
0answers
18 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
1answer
16 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
21 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
1answer
33 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
1answer
17 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
28 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
33 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
29 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
46 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
46 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
31 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
32 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
31 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
30 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
30 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
28 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
1answer
29 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
32 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
30 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
46 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
19 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
22 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
30 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
17 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
43 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
31 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
31 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 ...


