Tagged Questions

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

learn more… | top users | synonyms

12
votes
4answers
3k views

Django vs Flask + Werkzeug for complex, scalable and large applications

I am about to get my hands dirty on building a application for one of the trading company entirely on python. I have experimented with django and flask. Here are few of the things i have come up ...
7
votes
4answers
25k views

104, 'Connection reset by peer' socket error, or When does closing a socket result in a RST rather than FIN?

We're developing a Python web service and a client web site in parallel. When we make an HTTP request from the client to the service, one call consistently raises a socket.error in socket.py, in ...
6
votes
1answer
135 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 ...
6
votes
2answers
1k views

Flask/Werkzeug, how to return previous page after login

I am using the Flask micro-framework which is based on Werkzeug, which uses Python. Before each restricted page there is a decorator to ensure the user is logged in, currently returning them to the ...
5
votes
1answer
330 views

How can I override the HTTP methods for PUT and DELETE in a Flask Module?

I am having a hard time trying to modify the Flask request object before routing occurs. My API Module (not my entire Flask app) depends on faking PUT and DELETE operations by sending a special ...
5
votes
1answer
392 views

Using CherryPy/Cherryd to launch multiple Flask instances

Per suggestions on SO/SF and other sites, I am using CherryPy as the WSGI server to launch multiple instances of a Python web server I built with Flask. Each instance runs on its own port and sits ...
5
votes
1answer
281 views

URL Builder for CherryPy

After using werkzeug as a web framework (which is great and simple, but doesnt support some features), i'm now trying cherrypy. Now what I miss in cherrypy is werkzeug's elegant way of building urls ...
4
votes
2answers
229 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 ...
4
votes
1answer
1k views

Flask/Werkzeug how to attach HTTP content-length header to file download

I am using Flask (based on Werkzeug) which uses Python. So the user can download a file, I'm using the send_from_directory function: ...
4
votes
1answer
638 views

How to understand this code of flask?

Could anyone explain this line? g = LocalProxy(lambda: _request_ctx_stack.top.g) code from flask from werkzeug import LocalStack, LocalProxy # context locals _request_ctx_stack = LocalStack() ...
3
votes
1answer
109 views

WSGI, Werkzeug and form based authentication

I would like to implement a WSGI/Werzeug based web application and need help implementing the form based authentication. I found repoze.who and think it solves most of my problems. It works fine with ...
3
votes
1answer
91 views

self.request.form not iterable?

Hello I am making a form in HTML and python and I am having a problem with processing the arguments the problem comes in this section <form method="POST"> <input type="checkbox" ...
3
votes
2answers
83 views

How can I securely pass an arbitrarily deep path to a webapp (Flask, in this case)?

I have a form that sends a string to my Flask app when the form is posted. The string is a filepath, so I'd like to make sure it doesn't contain anything nasty, like ../../../etc/passwd. Werkzeug, ...
3
votes
2answers
2k views

Context processor using Werkzeug and Jinja2

My application is running on App Engine and is implemented using Werkzeug and Jinja2. I'd like to have something functionally equivalent of Django's own context processor: a callable that takes a ...
2
votes
2answers
30 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
2answers
159 views

Werkzeug doesn't include wsgi module

I'm trying to run the 6.1 branch of OpenERP in my development environment that is currently running the 5.0 branch successfully. I'm running on Ubuntu 10.04 Lucid Lynx. I've gotten past a few ...
2
votes
1answer
98 views

Retrieving the url anchor in a werkzeug request

I have a DAV protocol that stores out-of-band data in the url anchor, e.g. the ghi in DELETE /abc.def#ghi. The server is a Flask application. I can see the request come in on the wire via tcpdump, ...
2
votes
1answer
125 views

How to reset the file.stream in flask / werkzeug?

It seems to me, that you cannot access file.stream.read() after the file has been written with file.save('path',filename') and vice versa. Example code (derived from the file uploading pattern): ...
2
votes
1answer
355 views

How do I stream a file using werkzeug?

I want to stream a big file via werkzeug. Currently my wsgi application looks like this: from werkzeug.wrappers import Request, Response from werkzeug.wsgi import ClosingIterator, wrap_file import os ...
2
votes
1answer
397 views

Which framework is better for creating a complete software as a service (SaaS) application in Python [closed]

I would like to create a billing application and would like to have it as a software as a service (SaaS) so that the hotels and banks could use that application. I have heared about many framework ...
2
votes
2answers
412 views

Catch-all routing using Tipfy

Using tipfy, how does one express a catch-all route in urls.py if more specific routes do not match? Tipfy uses Werkzeug-like routing, so there's this (in urls.py): def get_rules(app): rules = [ ...
2
votes
3answers
819 views

Getting HTTP GET variables using Tipfy

I'm currently playing around with tipfy on Google's Appengine and just recently ran into a problem: I can't for the life of me find any documentation on how to use GET variables in my application, ...
2
votes
3answers
1k views

Werkzeug in General, and in Python 3.1

I've been looking really hard at all of the way**(s)** one can develop web applications using Python. For reference, we are using RHEL 64bit, apache, mod_wsgi. History: PHP + MySQL years ago PHP + ...
1
vote
1answer
67 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 ...
1
vote
0answers
58 views

Twisted alongside Werkzeug

Been working on implementing a WSGI app that will answer calls for the data tier in a SOA type project. After working through some example apps for Twisted and browsing the general community ...
1
vote
1answer
67 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 ...
1
vote
3answers
186 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
111 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
3answers
172 views

Debugging Django with Werkzeug under WSGI/Passenger - problems

I'm trying to use the werkzeug debugger, but despite installing it as recommended, I just get the normal django error page. from my passenger_wsgi.py: import django.core.handlers.wsgi from ...
1
vote
0answers
48 views

unittest with @login_required decorator

I use tipfy & gae for my project. I write unittests, and I to be confronted with a question: How I can test the handler which has @login_required decorator? class ...
1
vote
1answer
961 views

Is Flask + Werkzeug faster than django? [closed]

I dont know whether this question makes sense but seriously is flask faster than django. The reason why i am saying this is that i have deployed one intranet application which is built in Django for a ...
1
vote
4answers
417 views

Virtualenv issue with flask-werkzeug

I have installed virtualenv along with flask, werkzeug, jinja2 and SQLAlchemy. I was following the tutorial mentioned on the flask website and i came across the below error when executing flask code ...
1
vote
4answers
540 views

Guidelines of creating a application as software as a service (saas) in Python

I just wanted to know what all things should I keep in mind before developing a business application in python. The things which I wanted to know is: Which web server is good and what about the ...
1
vote
1answer
140 views

Run_simple dev web server from werkzeug does not run using reloader under Windows

I can not run the run_simple dev web server from werkzeug under windows and use_reloader=True : run_simple("localhost", 8090, application, use_reloader=True) Eventually it throws too many values to ...
1
vote
2answers
425 views

How to access Gunicorn's configuration params from application code?

I have a Werkzeug application served on gunicorn. The script directory layout looks like this: prj/ __init__.py application.py :which has a WSGI application object "wsgi_app". ...
1
vote
1answer
580 views

Redirecting an old URL to a new one with Flask micro-framework

I'm making a new website to replace a current one, using Flask micro-framework (based on Werkzeug) which uses Python (2.6 in my case). The core functionality and many pages are the same. However by ...
1
vote
1answer
296 views

trying to run werkzeug on apache (wsgi error)

My data_site.wsgi file: import main application = application() Error i get at apache: [Thu Apr 29 07:07:41 2010] [error] [client 81.167.201.136] Traceback (most recent call last): [Thu Apr 29 ...
1
vote
2answers
657 views

werkzeug mapping urls to views (via endpoint)

Starting using werkzeug, i try to map urls (from a file urls.py) to views (from a folder views and then in different files to manage differents kinds of view), my folder organisation looks like that : ...
0
votes
2answers
48 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 ...
0
votes
1answer
29 views

Starting a separate thread in a WSGI environment

Having trouble finding other cases where something like this has been implemented. I have a WSGI app that was built with Werkzeug, and I'd like to run some background cleanup processes in the same ...
0
votes
3answers
74 views

How to set up autoreload with Flask+uWSGI?

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

How to return an error in Werkzeug?

I'm getting started learning Werkzeug. I see how to create a simple response: def __call__(self, environ, start_response): response = Response('hi there!') return response(environ, ...
0
votes
0answers
38 views

send http put request in werkzeug

in my web app, I use werkzeug to listen and process requests. In one of the functionalities, I need to listen to request(say from A) and send an http put request to another server (B), then after I ...
0
votes
1answer
124 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, ...
0
votes
1answer
65 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 ...
0
votes
1answer
118 views

Django over Werkzeug for debugging/deploying?

i've just tried the "django_extensions", and it seems it has good stuff, but there are two questions about that: 1 - when using runserver_plus it seems that the webpage dont update when i update the ...
0
votes
3answers
178 views

Werkzeug without ORM

How do I use the Werkzeug framework without any ORM like SQLAlchemy? In my case, it's a lot of effort to rewrite all the tables and columns in SQLAlchemy from existing tables & data. How do I ...
0
votes
2answers
359 views

Using ip address to track visitors, is there a better way? (using Flask micro-framework)

I am going to use Flask micro-framework (based on Werkzeug, and I'll be using Python 2.7 or 2.6) to make a games website. I want to allow users to vote (simple 1-5 stars) on games, and also to track ...
0
votes
2answers
89 views

Using Python, getting the name of files in a zip archive

I have several very large zip files available to download on a website. I am using Flask microframework (based on Werkzeug) which uses Python. Is there a way to show the contents of a zip file (i.e. ...
0
votes
4answers
260 views

Help with Python in the web

I've been using Werkzeug to make WSGI compliant applications. I'm trying to modify the code in the front page. Its basic idea is that you go to the /hello URL and you get a "Hello World!" message. ...

1 2