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(): ...
1
vote
0answers
18 views

flask application timeout with amazon load balancer

I'm trying to use a Flask application behind an Amazon Load Balancer and the Flask threads keep timing out. It appears that the load balancer is sending a Connection: keep-alive header and this is ...
0
votes
1answer
35 views

Flask permanently redirects to /index after raising RequestRedirect('index')

So I am using flask 0.9 with python 2.7. In an attempt to be sneaky without actually understanding what I'm doing, I messed up my url routing. I am using flask-admin to whip up a quick interface. ...
5
votes
2answers
156 views

Flask SecureCookie replacing pickle with json results in encoding error

So I was plucking around in the werkzeug source and I saw the little diddy about replacing pickle with json. The default implementation uses Pickle as this is the only module that used to be ...
2
votes
1answer
74 views

Threads and local proxy in Werkzeug. Usage

At first I want to make sure am I rightly understand assignment of the feature. The local proxy functionality assigned to share a variables (objects) through modules (packages) within a thread. Am I ...
0
votes
1answer
74 views

How do I send cookies with request when testing Flask applications through nosetests?

I'm having some trouble sending a cookie with my test request. I've tried something like this: # First request to log in, retrieve cookie from response response = self.app_client.post('/users/login', ...
2
votes
2answers
103 views

Get IP Address when testing flask application through nosetests

My application depends on request.remote_addr which is None when i run tests through nosetests which uses app.test_client().post('/users/login', ....). How can I emulate an IP (127.0.0.1 works fine) ...
0
votes
2answers
301 views

Flask url_for generating http URL instead of https

I an using url_for to generate redirect url when a user has logged out. return redirect(url_for('.index', _external=True)) However when I changed the page to a https connection, the url_for still ...
0
votes
1answer
89 views

Route two modules to the same URL in Flask by session

I have a not-logged-in module/blueprint, welcome, and a logged-in blueprint, home. I want a user with a valid session to go to home.index, and a user that is a guest to go to welcome.index. However, I ...
0
votes
1answer
88 views

flask deployment using internal werkzeug development server

Why is it not recommended to use the flask/werkzeug internal development webserver in production? What sort of issues can arise? I'm asking because in work I'm being forced to do so and use a make ...
0
votes
2answers
169 views

getlist on flask

using the request.form.getlist in Flask, I only get the last value of a list. Here below the .py code and html related. If I suppress the following three lines, then I get the full list, but so doing ...
0
votes
1answer
357 views

in a Flask unit-test, how can I mock objects on the request-global `g` object?

I have a flask application that is setting up a database connection in a before_filter, very similar to this: @app.before_request def before_request(): g.db = connect_db() Now: I am writing ...
1
vote
1answer
184 views

Flask routes order matters?

I'm just started to play with Flask, so in all likelihood this is a seriously noobish question. This app is running on Google App Engine SDK 1.7.4. Flask 0.9, Werkzeug 0.9 and Jinja2 2.6. The ...
1
vote
1answer
162 views

How make work werkzeug / custom error pages with flask + Gevent-socketio

I have a flask + Gevent-socketio mini website. Is launched: app = Flask(__name__) app.debug = True @werkzeug.serving.run_with_reloader def runServer(): print 'Listening on %s...' % WEB_PORT ...
1
vote
1answer
133 views

Is there a way to get the value of nested dict in Immutabledict sent via request of werkzeug(flask)?

I asked question in past, but still facing the problem. address_dict = {'address': {'US': 'San Francisco', 'US': 'New York', 'UK': 'London'}} When above parameters was sent via requests, how can ...
0
votes
1answer
217 views

Can't run Flask debug mode on Google App Engine

I'm running Flask 0.9 / Werkzeug 0.8.3 on Google App Engine with Python 2.7, and I desperately want Werkzeug debugger running. After trying to use werkzeug_appengine_debugger I have the following ...
1
vote
1answer
76 views

Flask Blueprints and werkzeug.contrib.cache

I am using werkzeug caching to cache a commonly used object in memory between requests. I have been doing a lot of refactoring and started using blue prints, but now the application hard crashes when ...
14
votes
1answer
442 views

Flask slow at retrieving post data from request?

I'm writing flask application that accepts POST requests with json data. I noticed huge differences in response time based on data size being passed to application. After debugging I narrowed down ...
0
votes
1answer
66 views

CNAME value instead of HOST value

If we have a customer with a cname record, sub1.notourserver.com, pointing to something like abcdefg.ourserver.com, we read the host as sub1.notoursever.com. Is it possible for us to somehow get the ...
2
votes
1answer
541 views

Flask - 'NoneType' object is not callable

I am working on my first Flask application. Taking some code directly out of this, I am trying to make sure that a value is present in the user's cookies. def after_this_request(f): if not ...
1
vote
2answers
123 views

Keep simpleserver active even on syntax errors

Is there a way to configure the simple-server that Flask uses to not exit on every single syntax error? app = Flask(__name__) app.run(host='0.0.0.0', debug=True, use_debugger=True, ...
0
votes
1answer
130 views

How can I test multi-part uploads with FlaskClient (for unit testing)

The docs don't talk much about these, just basic params with PUT/POST/GET/DELETE, but I have a multipart upload that accompanies PUT, how can I do test it? Thanks!
2
votes
0answers
234 views

How can I authorize using werkzeug when accessed via Javascript?

I implemented Basic Authorization in Flask. (references this snippet) It works really well. def check_auth(username): user_id = get_user_id(username) return user_id is not None def ...
1
vote
1answer
785 views

Flask route query parameter

Say I have two routes set up with Flask: app.add_url_rule('/example', view_func = example.Index.as_view('example')) app.add_url_rule('/example/<string:example_key>', view_func = ...
2
votes
1answer
292 views

Flask/Werkzeug debugger, process model, and initialization code

I'm writing a Python web application using Flask. My application establishes a connection to another server at startup, and communicates with that server periodically in the background. If I don't ...
5
votes
3answers
1k views

nginx + uwsgi + flask - disabling custom error pages

Is it possible to disable nginx's custom error pages - if I may call them that - to display my framework's exception pages? I can't really see my werkzeug debugger tool rendered in html... UPDATE ...
0
votes
1answer
101 views

How can I use mutable dict in werkzeug Request class?

I would like to use mutable dict in a request context. Is there any way to use a mutable dict in Werkzeug?
5
votes
2answers
297 views

How to make very simple http proxy using werkzeug or other python requests framework?

Is it possible to setup a listener on say port 9090 and add a header, like Host: test.host to each request incoming on 9090 and send it on to say 8080? Thanks EDIT: I went with a reverse-proxy for ...
1
vote
3answers
257 views

How to have an alias of URL on Python Flask?

I'm using Flask 0.8. How to have an alias of a URL like this: @app.route('/') def index(): # I want to display as http://localhost/index, BUT, I DON'T WANT TO REDIRECT. # KEEP URL with only ...
1
vote
2answers
1k views

How can I get value of the nested dictionary using ImmutableMultiDict on Flask?

address_dict = {'address': {'US': 'San Francisco', 'US': 'New York', 'UK': 'London'}} When above parameters was sent via requests, how can I get values in address key using request.form on Flask? ...
2
votes
1answer
736 views

How to make Flask/ keep Ajax HTTP connection alive?

I have a jQuery Ajax call, like so: $("#tags").keyup(function(event) { $.ajax({url: "/terms", type: "POST", contentType: "application/json", data: ...
1
vote
1answer
581 views

Where does Flask store uploaded files?

Where does Flask store uploaded files before the application code has a chance to save the file? Unless I've missed something it doesn't appear to be showing up in the /tmp directory, which is what ...
3
votes
2answers
717 views

Flask - headers are not converted to unicode?

I'm developping a small web service in python using: Flask (v. 0.8) storm ORM (v. 0.19) Apache with mod_wsgi I have a custom HTTP header, Unison-UUID which I'm using at some point to retrieve ...
6
votes
1answer
699 views

Formatting a blog post in Flask / WTForms / Google App Engine

Here's the question in brief: My blog posts at... http://www.seanbradley.biz/blog ...totally lacks formatting. They're just a big block of plaintext. Any code or HTML tags such as /n or < br / ...
6
votes
4answers
1k views

Posting JSON and python Flask - any techniques to use the Werkzeug debugger?

Alright, I'm working with a RESTful backend on my project, and submitting data via jquery. I must say the werkzeug debugger is excellent for debugging specially when you're a terrible python ...
1
vote
1answer
947 views

Flask auto-reload and long-running thread

I'm implementing a long-running thread within a Flask application. In debug mode, with the reloader activated, the long-running thread is not killed upon reload. Instead, because the code that ...
4
votes
1answer
679 views

Why use werkzeug when there is flask [closed]

I am just curious to know as why should we use werkzeug when flask is there. Any specific reason to consider werkzeug over flask.
1
vote
1answer
579 views

What's the right approach for calling functions after a flask app is run?

I'm a little confused about how to do something that I thought would be quite simple. I have a simple app written using Flask. It looks something like this: from flask import Flask app = ...
1
vote
1answer
284 views

ImportError on inspect in Flask WSGI deployment

I'm trying to deploy a "hello world" Flask app via mod_wsgi, but I haven't been able to get around what's presumably a Python pathing issue. The traceback ends with File ...
1
vote
5answers
2k views

Build error with variables and url_for in Flask

Have found one or two people on the interwebs with similar problems, but haven't seen a solution posted anywhere. I'm getting a build error from the code/template below, but can't figure out where the ...
3
votes
2answers
857 views

exception for non existing parameter in FLASK

I have a form that sends parameters. In my form I have a checkbox. If my checkbox is not checked then I will not get any parameters. If in my module I have : var = request.form['mycheckbox'] and ...
2
votes
6answers
2k views

How to set up autoreload with Flask+uWSGI?

I am looking for something like uWSGI + django autoreload mode for Flask.
2
votes
1answer
2k views

url structure and form posts with Flask

In Flask you write the route above the method declaration like so: @app.route('/search/<location>/') def search(): return render_template('search.html') However in HTML as form will post to ...
6
votes
1answer
642 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 ...
2
votes
1answer
492 views

Why is only one Flask teardown_request function being called when view raises Exception?

This simple application, has two teardown_request handlers, and I'd expect both of them to be called for every request, no matter what happens in the view implementation, as per the documentation ...
4
votes
2answers
1k views

Parse X-Forwarded-For to get ip with werkzeug on Heroku

Heroku proxies requests from a client to server, so you have to parse the X-Forwarded-For to find the originating IP address. The general format of the X-Forwarded-For is: X-Forwarded-For: client1, ...
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 ...
1
vote
1answer
856 views

Werkzeug AttributeError: 'module' object has no attribute 'InteractiveInterpreter'

Using Flask (0.8) and Werkzeug (0.8.1) when attempting to run code with app.run(debug=True) I get the below described error. There are no errors when using app.run() The error Traceback (most recent ...
1
vote
1answer
163 views

On exceptions, get a interactive shell in the browser

I wonder if we can have in Rails an interactive shell when exceptions occurs accessible directly in the browser (so interacting with server via javascript) I love this functionality bring up by ...
12
votes
2answers
2k views

How do I use url_for if my method has multiple route annotations?

So I have a method that is accessible by multiple routes: @app.route("/canonical/path/") @app.route("/alternate/path/") def foo(): return "hi!" Now, how can I call url_for("foo") and know that ...

1 2