Werkzeug is a WSGI utility library for Python. It's widely used and BSD licensed.

learn more… | top users | synonyms

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. ...
0
votes
1answer
32 views

how to write a wsgi wrapper for php applications?

Is it possible to write a wsgi (werkzeug) application, that returns the output of a php application? In detail, i have the following problem: We have a couple of old, legacy php applications and need ...
0
votes
0answers
24 views

How to use Werkzeug interactive traceback debugger in a Django project hosted on Heroku?

With django-extensions installed in your Django project, on a local machine you can use manage.py runserver_plus to have the very useful Werkzeug debugger active, so that the 500 error page lets you ...
3
votes
1answer
71 views

Python/Django generate runtime exception

I'm using werkzeug in a Django project using Apache/mod_wsgi. What I want to do is access the werkzeug python shell without there actually being an error. The only way I can figure to do this is to ...
5
votes
2answers
158 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 ...
1
vote
1answer
50 views

Can I call the werkzeug debugger in Django without needing to raise an exception or using assertions?

I'm currently using Werkzeug together with django-extensions and I'm able to call the werkzeug debugger by raising an exception or making a false assertion. Is it possible to just set a breakpoint for ...
1
vote
1answer
74 views

Embedding a Python web-based shell (Werkzeug?)

I'm looking for a way to embed a python interpreter in a web page. Specifically, something similar to a textarea/REPL having access to the scope of a Django template. Werkzeug Does something similar, ...
2
votes
1answer
75 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
104 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
306 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
90 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
1answer
325 views

Minimal HTTP server with Werkzeug - Internal Server Error

To demonstrate basics HTTP handling, I'm in the process of trying to define a really minimal HTTP server demonstration. I have been using the excellent werkzeug library that I'm trying to "dumb" down ...
0
votes
2answers
170 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
364 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
163 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 ...
0
votes
0answers
125 views

werkzeug server failed to handle request

I'm trying to run this gevent server from gevent import pywsgi from Index import application import paste.urlparser import os # http server: serves up static files print "static ...
0
votes
1answer
164 views

gevent static file rendering

How to serve static files like css with a WSGI application written using werkzeug and pure python.. No frameworks used.. this is my server.. from gevent import pywsgi from Index import ...
1
vote
1answer
135 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 ...
-1
votes
1answer
145 views

escape character confusion with mysql and python

I want to upload logo image from http://werkzeug.pocoo.org/ After saving it I tried the following. I'm a noob so please help.. the received stream when i upload through a html forms is ...
0
votes
1answer
219 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 ...
0
votes
1answer
59 views

Changing values on a werkzeug request object

I have a request object that comes from werkzeug. I want to change a value on this request object. This is not possible because werkzeug request objects are immutable. I understand this design ...
0
votes
1answer
178 views

How to implement private/public apikey with werkzeug/bottle?

I am developing a RESTful web service with Bottle, probably soon to migrate to Werkzeug. I'd like to implement an auth scheme that works based on a private/public key pair where the server only has to ...
2
votes
3answers
2k views

Run python script as daemon at boot time (Ubuntu)

I've created small web server using werkzeug and I'm able to run it in usual python way with python my_server.py. Pages load, everything works fine. Now I want to start it when my pc boots. What's the ...
1
vote
1answer
77 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
444 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
0answers
82 views

Trouble with setting a cookie

I know that you can set a cookie by using Response.set_cookie, but (code below) Response is in the wsgi_app method, and I need set the cookie from the set_cookie method: class app(): def ...
0
votes
1answer
57 views

Listing specific category first in Python

I have a list of categories from DB as following and it works fine + sorted by ID. {% for category in menu_categories|sort(attribute="id"): %} <div> {{ category.name }} </div> {% ...
2
votes
2answers
113 views

Mysql custom column

I am trying to create MySql column that I want to be a five digit integer. The first two digits I want to use from my software and the last three to generate from dabatabase. Example: Store number 10 ...
0
votes
2answers
131 views

Websocket for wsgi, which compatible with werkzeug

Need websocket wsgi library, which is compatible with werkzeug.
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 ...
1
vote
1answer
109 views

Werkzeug URL map with method-based endpoints return only Method Not Allowed

Here is a truncated version of our mapping: url_map = Map([ Rule('/actions/<int:id>/', endpoint='actions.get_action', methods=('GET')), Rule('/actions/<int:id>/', ...
1
vote
1answer
218 views

CherryPy + Werkzeug Debugger?

I was comparing CherryPy and Flask when I ran into the Werkzeug Debugger, which I really like. What wonders me: Is it possible to integrate Werkzeug's debugger into CherryPy? If so: how? When I ...
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
124 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
235 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
57 views

page is being received too long

I have rewritten web application from using mod_python to using mod_wsgi. Problem is that now it takes at least 15 seconds before any request is served (firebug hints that almost all of this time is ...
1
vote
1answer
786 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 ...
1
vote
0answers
83 views

werkzeug gets empty stream

input content type was multipart/form-data. In this situation the stream will be empty and form will contain the regular POST / PUT data, files will contain the uploaded files as FileStorage ...
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 ...
1
vote
1answer
94 views

Bottle web framework: any way to run a console/shell and get it to work with Werkzeug?

I searched but couldn't find an easy way to run a console or shell akin to Django's manage.py shell or Rail's rails console Since I just started using Bottle for an existing project, I just wanted to ...
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 2 3