Django is a python based web- application development framework. Setting up a sample app and running it as easy as pie. Nginx is a webserver and like ...
MicroPyramid Blog
Deep dives into Django, Python, Machine Learning, Salesforce, React, Flutter, Svelte, AWS, and the technologies that power modern applications.
E-commerce is integration is becoming almost essential for every web application now a days. There are so many payment gateways to integrate with our ...
Some times in the production level there may be a chance of adding new fields to our model.With the normal django models when we add new field to the ...
Django’s template system comes with a wide variety of built-in tags and filters designed to address the presentation logic needs of your application. ...
Django comes with a simple permissions system. It provides a way to assign permissions to specific users and groups of users. We can have permissions ...
Django has MVT architecture. A view in django is just a callable that takes a request and returns a response. But this can be more than just a functio...
Serializers are used for “translating” Django models into other formats like xmi,json,yaml(YAML Ain’t a Markup Language)...
Now we are going to index text content which is stored in structured files such as PDFs, Microsoft Office documents, images, etc using haystack and so...
Haystack works as a search plugin for Django. You can use different backends Elastic-search, Whose, Sorl, Xapian to search objects. All backends work ...
A decorator is a function that takes another function and returns a newer,prettier version of that function.To know more about decorators in python se...