I've recently been playing with Gunicorn to serve an ML model (I know, I'll shift to Nx soon!) and wanted to understand what exactly it does for us and how it works under the hood. Here are my notes on its pre-fork worker model and why Nginx is needed in front of it.
This post explores what web servers are and how you can develop one by yourself. The best way to learn about a software system is to develop it from scratch, which is exactly what we will be doing in this post. Dive in to know more about web servers and how you can create a basic one yourself!
What lies underneath all those nice abstractions and simplicities that a web framework like Flask provides? What actually happens under the hood? This post is an attempt to understand how a webserver works.
This post explains how to build a Simple Weather WebApp following the MVC Software Development Pattern. The WebApp was made with Python Flask, and uses the DarkSky API. The app has been deployed on Heroku. The project source code can be found on GitHub.
In this post, we shall explore APIs and how to use them in Python. We will develop a simple command line based Weather app to show us the weather of a particular city. We will use the Requests library and OpenWeatherMap API.
Let's know more about Peewee, a simple, easy to understand Object Relational Mapper (ORM) in Python that will make your life easy by mapping your Database tables to Python objects.
Hello! Today we will explore a bit about web scraping - what it is, why is it useful, and how it's implemented. As an example, we shall harvest some data from a website called Consumer Reports.
Hello! Today we will explore a bit about how to use Python in the context of developing website or a WebApp, and how to host a Python webapp on a cPanel based Linux Shared Hosting.