Posts in Modern Python

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

File Handling in FastAPI

File Handling in FastAPI Building APIs requires careful file handling, which is a critical component of web development. We will look at how FastAPI makes file uploading, downloading, and serving… Read More