Skip to content

Web Server

Gunicorn (Green Unicorn)

Gunicorn is a WSGI server for Python applications, well known for its advanced process management features.

Gunicorn

If you have Python 3.5 and later, you can install Gunicorn using pip:

Tip

bash
$ pip install gunicorn

Uvicorn

Uvicorn is an ASGI server implementation for Python.

Tip

bash
$ pip install uvicorn[standard] 
# includes installation of optional and Cython-based dependencies

Daphne

Daphne is one of the first ASGI server implementations used as a reference for ASGI server implementations.

Tip

bash
$ pip install daphne

Reference