tl;dr Popular Python web frameworks have less significant differences than it appears. Then, there’s Django which makes all competition look micro. Even given the rising popularity of FastAPI, I strongly believe there’s room for at least one another big framework. Comparing Python frameworks Back when I worked for a software house – STX Next I […]
Category: django

How to implement a service layer in Django + Rest Framework
From this article you will learn: what is the service layer? the problem solved by a service layer how to refactor to services from ModelSerializers What is the service layer? A service layer is a set of classes or functions, called services, that together form an API for a single package or application. We can […]