Tagged Questions

WSGI is a python standard Web Server Gateway Interface

learn more… | top users | synonyms

48
votes
4answers
12k views

How Python web frameworks, WSGI and CGI fit together

I have a Bluehost account where I can run Python scripts as CGI. I guess it's the simplest CGI, because to run I have to define the following in .htaccess: Options +ExecCGI AddType text/html py ...
31
votes
12answers
13k views

Django vs other Python web frameworks?

I've pretty much tried every Python web framework that exists, and it took me a long time to realize there wasn't a silver bullet framework, each had its own advantages and disadvantages. I started ...
29
votes
9answers
6k views

How do YOU deploy your WSGI application? (and why it is the best way)

Deploying a WSGI application. There are many ways to skin this cat. I am currently using apache2 with mod-wsgi, but I can see some potential problems with this. So how can it be done? Apache ...
22
votes
2answers
2k views

Web gateway interfaces in Python 3

I've finally concluded that I can no longer afford to just hope the ongoing Py3k/WSGI disasterissues will be resolved anytime soon, so I need to get ready to move on. Unfortunately, my available ...
20
votes
9answers
2k views

Pros and Cons of different approaches to web programming in Python

I'd like to do some server-side scripting using Python. But I'm kind of lost with the number of ways to do that. It starts with the do-it-yourself CGI approach and it seems to end with some pretty ...
10
votes
2answers
397 views

Which web frameworks support Python3 (PEP3333 - WSGI 1.0.1 compliance)

I had recently started learning Python, and with all the research I decided it was good to start with Python3 (that's what even Guido advised at Google IO'11). But lack of support for Python3 by major ...
10
votes
10answers
10k views

How do I stop getting ImportError: Could not import settings 'mofin.settings' when using django with wsgi?

I can't get wsgi to import my settings file for my project 'mofin'. The list of errors from the apache error log are as follows mod_wsgi (pid=4001): Exception occurred within WSGI script ...
9
votes
2answers
237 views

Is it ok to spawn threads in a wsgi-application?

To achieve something similar to google app engines 'deferred calls' (i.e., the request is handled, and afterwards the deferred task is handled), i experimented a little and came up with the solution ...
9
votes
7answers
877 views

How can I tell whether my Django application is running on development server or not?

How can I be certain that my application is running on development server or not? I suppose I could check value of settings.DEBUG and assume if DEBUG is True then it's running on development server, ...
8
votes
1answer
218 views

openID in wsgi with Python 3

I have never done authentication stuff before, but would like to be able to track and authenticate users via openID. I saw a couple modules that allow for openID authentication with WSGI, but all are ...
8
votes
1answer
357 views

Should I use a GZIP compression middleware or not?

Having worked with Django, I've seen that people tend to reccommend the use of GZIP Middleware to compress HTML pages. However, the WSGI v1.0 specification tells us: (Note: applications and ...
8
votes
6answers
2k views

For Python support, what company would be best to get hosting from?

I want to be able to run WSGI apps but my current hosting restricts it. Does anybody know a company that can accommodate my requirements?
7
votes
1answer
680 views

URL building with Flask and non-unique handler names

Flask provides a url_for function to generate URLs to handlers based on the URL pattern. But this would imply that the handler functions must have unique names across the entire application. Is that ...
7
votes
2answers
487 views

What's a good Flask/Python/WSGI analog to the PHP Apache shared memory stores like apc_store/apc_fetch?

I've done a couple of years of large-scale game server development in PHP. A load balancer delegates incoming requests to one server in a cluster. In the name of better performance, we began caching ...
7
votes
1answer
108 views

Do browsers preserve order of inputs with same name on GET/POST?

I have this HTML code with multiple inputs with the same name: <input type="hidden" value="42" name="authors" /> <input type="hidden" value="13" name="authors" /> <input type="hidden" ...
7
votes
3answers
531 views

What is the best way to deploy a Pylons app?

There are many ways to deploy Pylons apps. - Proxying through apache or nginx to paste - Embedding the app with mod_wsgi - using some edgy nginx+uwsgi combo - and probably more... I've read a lot ...
7
votes
4answers
437 views

Pushing data once a URL is requested

Given, when a user requests /foo on my server, I send the following HTTP response (not closing the connection): Content-Type: multipart/x-mixed-replace; boundary=----------------------- ...
7
votes
3answers
615 views

It is said best way to deploy django is using wsgi, I am wondering why?

We are deploying django application, I found in the documentation that it is recommended to use WSGI appoach for doing that. Before deploying I wanted to know, why it is recommended over other two ...
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
2answers
131 views

Where can I find Plone 4.1 wsgi config examples?

While Zope 2.13 have native wsgi support, I haven't been able to find any documentation/deployment tutorial/article/blog yet. Would anyone point/post a working example ?
6
votes
1answer
1k views

Web.py on dotcloud with wsgi

I'm trying to deploy my web.py app on dotcloud, but can't figure out how to do it. I went through this tutorial fine: http://docs.dotcloud.com/static/tutorials/firststeps/ And then I looked at ...
6
votes
1answer
1k views

Bottle-friendly WSGI authentication library/middleware

What I need is a lightweight authentication/ACL library or middleware which is preferably capable of openID (though this is not crucial), and would play nice with bottle framework (i.e, maybe not use ...
6
votes
2answers
291 views

WSGI request and response wrappers for Python 3

Are there WSGI request and response wrappers for Python 3? WebOb looks nice (although there is some critique), but it seems to be written in Python <3. Werkzeug seems also to be written in Python ...
6
votes
1answer
271 views

Could somebody give me a high-level technical overview of WSGI details behind the scenes vs other web interface approaces with Python?

Firstly: I understand what WSGI is and how to use it I understand what "other" methods (Apache mod-python, fcgi, et al) are, and how to use them I understand their practical differences What I ...
6
votes
5answers
1k views

Why should I use WSGI?

Been using mod_python for a while, I read more and more articles about how good WSGI is, without really understanding why. So why should I switch to it? What are the benefits? Is it hard, and is the ...
6
votes
2answers
474 views

How does wsgi handle multiple request headers with the same name?

In WSGI headers are represented in the environ as 'HTTP_XXX' values. For example the value Cookie: header is stored at the HTTP_COOKIE key of the environ. How are multiple request headers with the ...
6
votes
2answers
3k views

Is there a speed difference between WSGI and FCGI?

From the web I've gleaned that WSGI is a CGI for python web development/frameworks. FCGI seems to be a more generalised gateway for a variety of languages. Don't know the performance difference ...
6
votes
4answers
5k views

Accessing POST Data from WSGI

I can't seem to figure out how to access POST data using WSGI. I tried the example on the wsgi.org website and it didn't work. I'm using Python 3.0 right now. Please don't recommend a WSGI framework ...
6
votes
2answers
1k views

Minimal, Standalone, Distributable, cross platform web server

I've been writing a fair number of smaller wsgi apps lately and am looking to find a web server that can be distributed, preconfigured to run the specific app. I know there are things like twisted ...
6
votes
5answers
4k views

Deploying Django at Dreamhost

I'm trying to get the Poll tutorial working at my Dreamhost account (I don't have any prior experience of deploying Django). I downloaded the script I found here ...
5
votes
3answers
906 views

uWSGI vhost problem

uWSGI config [uwsgi] socket = /tmp/uwsgi.sock chmod-socket = 666 processes = 1 master = true vhost = true no-site = true Nginx config server { listen 80; server_name www.site1.com; ...
5
votes
3answers
989 views

WSGI Middleware for OAuth authentication

I have build a very small web application using Flask. Now I would like to add very basic authentication to the site (I don't need authorization). As Flask does not support auth&auth out of the ...
5
votes
1answer
725 views

Flask for Python - architectural question regarding the system

I've been using Django and Django passes in a request object to a view when it's run. It looks like (from first glance) in Flask the application owns the request and it's imported (as if it was a ...
5
votes
3answers
237 views

Embedded WSGI backend for Python desktop app using webkit

Disclaimer: I'm not very familiar with any of the things mentioned in the question title. Would it be possible to use a browser control (like Webkit) as a frontend for a WSGI app (using a framework ...
5
votes
4answers
1k views

WSGI Authentication: Homegrown, Authkit, OpenID…?

I want basic authentication for a very minimal site, all I personally need is a single superuser. While hard-coding a password and username in one of my source files is awfully tempting, especially ...
4
votes
2answers
113 views

Implementing a WSGI Streaming Service: (how to detect client disconnects)

So what I am doing is writing a WSGI streaming service which makes use of a Queue wrapped in an iterator to implement a multicast push. What follows is a simplified model of the service: # this is ...
4
votes
1answer
88 views

What is the most simple / lightest-weight WSGI framework?

Which of the WSGI frameworks are super lightweight and minimal? If you are familar with ruby, then I'm looking for something similar to Rails Metal. WSGI == Rack Rails == Django Sinatra == Flask ...
4
votes
1answer
90 views

Using twisted words in a WSGI container

I am running django on twisted in a wsgi container. Obviously I am avoiding all the async stuff with deferreds inside my django code because according to the documentation, twisted async abilities are ...
4
votes
3answers
108 views

Deciding to WSGI or Django for new web app

I'm in the process of setting up a new web app and deciding whether to just do it with WSGI or go the full framework route with Django. The app's foremost requirements: 1) The app has no UI what so ...
4
votes
2answers
269 views

PyPy + PHP on a single webserver

I'm in the process of setting up a webserver from scratch, mainly for writing webapps with Python. On looking at alternatives to Apache+mod_wsgi, it appears that pypy plays very nicely indeed with ...
4
votes
2answers
172 views

Does my code prevent directory traversal?

Is the following code snippet from a Python WSGI app safe from directory traversal? It reads a file name passed as parameter and returns the named file. file_name = request.path_params["file"] file = ...
4
votes
3answers
446 views

gunicorn via mod_proxy is redirecting outside of the project's scope, despite ProxyPassReverse

I have a WSGI-app (a Django project) running under gunicorn on 127.0.0.1:18731 and I use Apache with mod_proxy to redirect requests from http://example.com/my-project/* to http://127.0.0.1:18731/*. ...
4
votes
3answers
177 views

What are WSGI and CGI in plain English?

Every time I read either WSGI or CGI I cringe. I've tried reading on it before but nothing really has stuck. What is it really in plain English? Does it just pipe requests to a terminal and ...
4
votes
1answer
376 views

Twisted: Creating a ThreadPool and then daemonizing leads to uninformative hangs

I am developing a networked application in Twisted, part of which consists of a web interface written in Django. I wish to use Twisted's WSGI server to host the web interface, and I've written a ...
4
votes
1answer
366 views

Using paste.progress In A Pyramid Project

I need to keep track of a file's upload progress and found the paste.progress middleware. It seems like what I want. How would I add and use the paste.progress middleware in a Pyramid project?
4
votes
1answer
2k views

Differences and uses between WSGI, CGI, FastCGI, and mod_python in regards to Python?

I'm just wondering what the differences and advantages are for the different CGI's out there. Which one would be best for python scripts, and how would I tell the script what to use? Thanks!
4
votes
3answers
4k views

Django and Python + uWSGI

Using instruction I try to connect Python + uWSGI. I made default project in a folder /home/sanya/django/pasteurl. However, have opened it in a browser I get uWSGI Error wsgi application not found ...
4
votes
3answers
729 views

How to serve data from UDP stream over HTTP in Python?

I am currently working on exposing data from legacy system over the web. I have a (legacy) server application that sends and receives data over UDP. The software uses UDP to send sequential updates to ...
4
votes
3answers
509 views

Can't get mod_wsgi and Apache with Django to work

This is the error I get in my Apache error log: [Sun Aug 22 16:52:06 2010] [error] [client 127.0.0.1] ImportError: No module named settings This is my .wsgi file, per this blog post: import sys ...
4
votes
3answers
298 views

what is the recommended way of running a embedded web server within a desktop app (say wsgi server with pyqt)

The desktop app should start the web server on launch and should shut it down on close. Assuming that the desktop is the only client allowed to connect to the web server, what is the best way to ...

1 2 3 4 5 9