Hacker News new | ask | show | jobs
by sirn 4835 days ago
Since most Python frameworks are just WSGI application (except when you go Tornado or Twisted route), you can easily apply deployment instruction for one framework with others. I've found Deploying Flask to be a good tutorial on how to deploy WSGI application:

http://flask.pocoo.org/docs/deploying/

There's also uWSGI, which is possibly the most underrated deployment option in Python world but Nginx has native support for it (and its documentation is pretty good nowadays):

http://uwsgi-docs.readthedocs.org/en/latest/WSGIquickstart.h...

Edit: all -> most

1 comments

Not all Python web frameworks use WSGI. (e.g. Tornado).
Well, true. Let's change that to "most". :-)