Recent posts

Django Rest Framework Function Based Views

3 minute read

Rest framework provides simple set of decorators for regular Django function to wrap around, allowing function to receive the instance of Request (rather th...

Refresh Materialized View With Django Q

3 minute read

We have already created a materialized view and used it to retrieve data in previous blogs. But the problem with materialized view is that, it does not get ...

How To Use PostgresSQL With Django

1 minute read

Django is a Python-based web framework that supports model-template-view design principles. It is free, open-source, and high-level. This framework promotes...

Materialized View in Django

2 minute read

A “materialized view” is a database object which stores the result of a precalculated database query and makes it easy to refresh this result as needed.(cyb...

Django REST Framework Validators

3 minute read

Validation in REST framework is entirely performed on serializer class. There are no any hidden behavior on model instance. All of the validation rule can b...