Blog

Comments In Python

Comments In Python A comment is a text within a program that is not executed (ignored by compiler and interpreters). It can be used to provide additional information to aid… Read More

Web layer

Web layer The web layer of FastAPI, which manages HTTP requests and responses, is the framework’s vital component. Imagine it as the glue that binds your application together.  The Web… Read More

Web Games with FastAPI

Web Games with FastAPI Games come in various forms, from text-based adventures to immersive 3D experiences. In this article, we’ll explore the creation of a simple game using FastAPI, a… Read More

The Modern Web

The Modern Web The visionary creator of the World Wide Web, Tim Berners-Lee, once said, “We have not yet seen the Web as I had imagined it to be. The… Read More

Pydantic, Type Hints, and Models

Pydantic, Type Hints, and Models (Data validation and settings management using Python type hints) FastAPI stands largely on a Python package called Pydantic. This uses models (Python object classes) to… Read More