Authentication and Authorisation is the key to protect resource on the web server. There are different types of authentication models such as Basic, Token and Session. Thanks to Django Rest Framework, it provides a work with one or many of…
Django the popular web development framework for Python. It is based on Model View and Template referred as MVT. Install Django as follows This article takes to the directory structure of whole Django framework and explains what each package and…
To enable cross origin resource sharing we need to enable some headers to authorize origin (browser ) to make requests to cross(different) origin. Browsers make preflight request to determine whether the given origin can make request to cross origin web…
Python is general purpose, high level scripting language. It is known for it’s elegant syntax, readability and productivity. As it is said, python is general purpose programming language such that it can be used to create backend web applications. For…
Django delegates the files handing to the storage backend. By default Django uses the FileSystemStorage to store files on local filesystem. It is possible to customize storage system to use different storage backend such as AWS S3. This article will…
A fixture is a collection of file that hold the serialized content of the database. Files that comprise the fixture can be distributed across multiple directories and application in the Django project Fixtures are useful to prepopulate selected tables with…
Django provides the ORM which is database and vendor agnostic, as a result we can perform operations on database regardless kind of database running behind.Thus, developer may not need expertise on specifiec database, all he needs is how to play…
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Ok