Sakshi from KushoAIsoftware-deep-dives.hashnode.dev·Dec 18, 2024What is WSGI? Why is this needed for running apps in production?This blog is written by Jeremy Rivera at KushoAI. We're building the fastest way to test your APIs. It's completely free and you can sign up here. What is WSGI? As a web developer doing much more work with Python, I’ve recently found deployment trick...wsgi
ritiksharmaaaritiksharmaaa.hashnode.dev·Oct 13, 2024FeaturedUnderstanding WSGI, ASGI, HTTP and Web Servers: Clarifying the ConfusionIn the world of web development, especially when working with Python, developers often encounter various concepts like WSGI (Web Server Gateway Interface), ASGI (Asynchronous Server Gateway Interface), and web servers like Nginx. This article aims to...43 likes·652 readsgeneralngni
Kanglin Wukanglin.hashnode.dev·Aug 26, 2024Run flask via waitressBackground 在開發階段 Flask default 所提供的 WSGI ( Python Web Server Gateway Interface ) 連官方都提醒僅適用於開發環境,那之前我都是透過 Gunicorn 跑在前面,這次我想嘗試看看用 Waitress,因此產出了這篇筆記。 Purpose 為了避免 Flask 不穩,先改用 waitress 取代原本的 Werkzeug。 Enable SSL。 手順 1. 安裝 waitress 透過 pip 套件管理安裝,...waitress
Berthran Danieldanielberthran.hashnode.dev·Aug 19, 2024Why You Shouldn't Use Flask's Development Server in Production: A Cautionary TaleAs a young software engineering student, Joe loved using Flask to build and share his apps. Flask’s built-in server, invoked with the flask run command, was convenient and straightforward for development. Joe enjoyed showing his apps to friends, but ...44 readsFlask Framework
Maxat Akbanovmaxat-akbanov.com·Mar 17, 2024What is Web Server Gateway Interface (WSGI) in Flask?Flask applications are WSGI (Web Server Gateway Interface) applications. WSGI is essentially a specification that defines how web servers interact with Python based web frameworks like Flask. It acts as a middle layer, standardizing how web servers h...34 readspythonDevops
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
Rashid Mahmoodcodewithrashid.hashnode.dev·May 28, 2023A brief overview of WSGI and usage of Gunicorn and Nginx in DjangoThis article will briefly explain the functionality and usage of WSGI, Gunicorn and Nginx in collaboration with Django. It will help you to understand the process of deploying Django applications on the server and will clarify the role of WSGI file. ...103 readsPython