Hacker News new | ask | show | jobs
Ask HN: What is your python stack?
7 points by lothiraldan 3701 days ago
Hi, I'm working at https://www.sqreen.io/, the security as a service platform, on the python agent and we're currently setup the integration tests. We plan to run all of the following configurations regularly with a distributed Docker cluster, more details in a future blog post!

So far we test theses configurations:

  - Python 2.7.8
  - Python 3.5
  - Pypy
Framework:

  - Django 1.7
  - Django 1.8
  - Django 1.9
WSGI Server:

  - Gunicorn
  - Chaussette
  - Uwsgi
  - mod_wsgi
  (- Passenger)
The icing on the cake:

  - No gevent
  - Gevent
I still try to find some relevant information about python deployment, so what is your deployment? Do you use a specific version of a Framework not listed below or a wsgi server configured in a very specific way?
2 comments

Hi @lothiraldan

At Serenytics our backend stack is based on:

  - python 2.7
  - gunicorn
  - gevent
  - flask
  - sqlalchemy + postgres
  - redis
  - MRQ for asynchronous worker tasks (using redis+mongo)
  - multiple python SQL drivers to query on every compatible SQL database ;-)
Our Python stack is Python 2.7 on old Apache2 / mod_wsgi, with Flask. We may soon turn to Nginx / Gunicorn. No Gevent so far.