Tagged Questions
13
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
...
8
votes
4answers
26k 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
155 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
344 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
420 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
291 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
252 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
2answers
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: ...
3
votes
2answers
238 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 ...
3
votes
1answer
134 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
102 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
84 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
42 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
1answer
150 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
380 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
409 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
3answers
830 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
53 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
0answers
73 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
87 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
1answer
159 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, ...
1
vote
3answers
254 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
126 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
4answers
436 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
572 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
143 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
441 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
621 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
314 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
671 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
1answer
44 views
How to set/delete cross domain cookie?
I need to delete cookie on another domain (controlled by me) without reloading page and opening new window. I'm trying:
var XHR = window.XDomainRequest || window.XMLHttpRequest
var ...
0
votes
2answers
116 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
42 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
0answers
62 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
3answers
185 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
377 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
93 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. ...
0
votes
1answer
1k views
AJAX upload in Python (WSGI) without Flash/Silverlight, with progress bar
I am looking for a pure Javascript/Python upload example, that uses server polling instead of client-side SWF to display upload progress (like the one on rapidshare.com for example)
Currently, ...
-1
votes
1answer
534 views
Werkzeug and SQLAlchemy 0.5x session
Updated:
Hi all,
Going through the Werkzeug link text tutorial, got stack with creating SQLAlchemy session using sessionmaker() instead of create_session() as recommended.
Note: it is not about SA, ...
-2
votes
1answer
76 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.