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...
MicroPyramid Blog
Deep dives into Django, Python, Machine Learning, Salesforce, React, Flutter, Svelte, AWS, and the technologies that power modern applications.
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....
Acceptance testing automation for django web and REST applications using a robot testing framework....
Understanding new style of middleware in Django2.0, the difference between old-style & new-style. How to write custom middlewares in new-style and...