WSGI, ASGIBefore we know about WSGI(Web Server Gateway Interface) and ASGI(Asynchronous Server Gateway Interface), we have to talk about what is CGI.CGILet's say there's a server and a user. The user sends a request to the server, and the server responds. If the user request a static page, for example, index.html, return it as it is. But what if the request is dynamic? What should we do when the value changes from time to time, such as log-in or requesting membership? For that, web ...