Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Middleware for both Django and Pylons

It appears to me that Django and Pylons have different ideas on how middleware should work. I like that Pylons follows the standardized PEP 333, but Django seems to have more widespread adoption. Is it possible to write middleware to be used in both?

The project that involves said middleware is porting a security toolkit called ESAPI from Java to Python. Because Java is so standards oriented, it is pretty easy to be framework agnostic. In Python, different frameworks have different ideas on how basic things like HttpRequest objects and middleware work, so this seems more difficult.

Apparently, new users cannot post more than one hyperlink. See below for links to Django and Pylons middleware info.

like image 223
Craig Younkins Avatar asked Nov 22 '25 01:11

Craig Younkins


1 Answers

Pylons uses standard WSGI middleware. If you deploy Django via WSGI, you can also use WSGI middleware at that point. You can't, however, currently use WSGI middleware via the standard Django MIDDLEWARE_CLASSES option in settings.py.

That said, there is currently a Google Summer of Code project to enable the use of WSGI middleware in Django itself. I haven't been following the status of this project, but the code is available in the Http WSGI improvements branch.

like image 188
Daniel Roseman Avatar answered Nov 25 '25 00:11

Daniel Roseman