$ grep -rn "#Python" ./posts

FastAPI: Create a repeated task

sometimes, you want a task to trigger not just when the server starts but also periodically. For example, you might want to regularly check……

Create REST APIs with FastAPI

A REST API (also known as RESTful API) is an application programming interface (API or web API) that conforms to the constraints of REST……

How to Write Files in Python

Python like many other languages has built-in functions to write files, to write a file we need first to open a file.…

Working With Files in Python

The os module of Python provides an Operating System abstraction layer when we want to perform file operations, to delete a file in Linux……