Optimizations for mere mortals

Python being a very high-level language, it’s easy to forget that we still have limited resources. Further, code performance has real-world implications. A few milliseconds of delay can mean a significant drop in the conversion rate.Code optimization is very...

FastAPI with Django

Django is a productive web framework with “batteries included” but it lacks a default native way to create REST APIs. Over the last 10 years, different frameworks and methods have come up to facilitate the development of REST APIs in Django. TastyPie and Django Rest...