An IntroductiontothePython Web Server Gateway Interface
WSGIis a specification, laid out inPEP 333, for a standardized interface between Web servers and Python Web frameworks/applications.The goal is to provide a relatively simple yet comprehensive interface capable of supporting all(ormost)interactions between a Web server and a Web framework. (Think “CGI” but programmaticrather thanI/O based.)
Choice is good;WSGImakes choice a matter of developer opinion rather than technical compatibility.