Skip to content

Instantly share code, notes, and snippets.

@luchiago
Created July 10, 2020 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luchiago/e6865b324fc268cb8ad0e8d266baa9f2 to your computer and use it in GitHub Desktop.
Save luchiago/e6865b324fc268cb8ad0e8d266baa9f2 to your computer and use it in GitHub Desktop.
[BACKEND][PYTHON][DJANGO] WSGI

WSGI

Web server gateway interface From Wikpedia: Is a simple calling convention for web servers to forward requests to web applications or frameworks written in Python. Originally specified as PEP-333

The wsgi.py file in Django

It is a file that we can barely write. Or need to.

What it does

Is a web server that communicates with out application and handle all requests and responses. The django project need it, to work as a web application.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment