GJGobinda Jamakatelingobinda.info.np·Mar 4, 2023 · 2 min readModel Serializer vs Dynamic Fields Model Serializer in DRFThe Django REST Framework (DRF) uses the serializers ModelSerializer and DynamicFieldsModelSerializer to serialize and deserialize Django model instances. ModelSerializer is a serializer that creates fields on the fly using the model's defined fields...00
GJGobinda Jamakatelingobinda.info.np·Sep 10, 2022 · 2 min readPython DecoratorsIn general term, decorators are those who decorates something to make it prettier. Similarly, In python, decorators are those functions which decorates another function. Some Information related to python decorators: Decorators takes a function as a...00