Tom Huibregtseblog.tomhuibregtse.com·Sep 1, 2024FeaturedA Minimal ASGI ServerASGI stands for Asynchronous Server Gateway Interface. It is a successor to Web Server Gateway Interface (WSGI). It adds support for async handlers. Both ASGI and WSGI servers act as middleware, a piece of technology that sits in between two other te...28 likes·1.1K readsPython
Ahmad Asyraf Arifinashyokhei.hashnode.dev·Jan 2, 2024How to Deploy Django with Uvicorn (ASGI) on Windows IISDjango is a high-level web framework written in Python that encourages rapid development and clean pragmatic design. It's designed to help developers build web applications quickly and efficiently by providing a robust set of tools, libraries, and fu...170 readspep333
Ajithajithkpm.hashnode.dev·Jun 5, 2023Websockets in Django (without Channels)What are websockets? WebSocket is a computer communications protocol, providing full-duplex communication channels over a single TCP connection. Introduction of Asynchronous Programming in python. Unlike Javascript asynchronous execution wasn't supp...60 readswebsockets