Django Rest Swagger is used to Document your API for eg., Listing all Your project Rest API's in the browser with brief description about the API...
MicroPyramid Blog
Deep dives into Django, Python, Machine Learning, Salesforce, React, Flutter, Svelte, AWS, and the technologies that power modern applications.
This blog describes about how to work with django-plugins. Django Plugin is a Simple Plugin Framework for Django. By using django-plugins, you can mak...
Django provides built in authentication which is good for most of the cases, but you may have needs that are being served with the existing system. Fo...
Single sign on is a way for users to issue a security token for the first time login, login into multiple applications using one set of credentials i....
By using routers in django-rest-framework we can avoid writing of url patterns for different views. Routers will save a lot of time for developing the...
We use sorl-thumbnail for scaling images by keeping the original one intact. Sorl proven to be great tool for generating different sized images throug...
Django rest-framework passes extra context data to serializers for the best design of rest applications. we can use "context" parameter in s...
Authentication backends allow the ability to change what method checks your users credentials.For web services, ie Facebook authentication, you don&#x...
The main Usage of a proxy model is to override the main functionality of existing Model. It is a type of model inheritance without creating a new tabl...
Using SQL Queries in Django ORM - Filtering extra objects within in a single query, to reduce the number of queries....