Posts for Django

Django is a Python-based free and open-source web framework, which follows the model-template-view architectural pattern
Jekay
Jekay wrote

Setting up a virtual environment for your Django Project

One of the tasks that could be confusing for a beginner starting out with Python on the Windows Operating System (OS) is creating a virtual environment for projects. In this article, we will go through how to create a virtual environment for a Django project in Windows 10 virtualenv : is a Python tool used […]

July 28, 2020 in Beginners & Django
Jekay
Jekay wrote

Creating Django REST API Documentation with Swagger UI

An Application Programming Interface (API) is a method by which two computers are can communicate with each other. Web APIs are the type of APIs used on the internet. APIs allow developers to separate concerns in software either as functional components or a service-oriented manner. Django is a Python framework that allows for building web […]

July 14, 2020 in Django
Deven
Deven wrote

Flask vs Django – An In-Depth Comparison

According to the 2020 Stack Overflow developer survey, Python has risen in the ranks of programming languages. This popularity is not only due to applications in artificial intelligence or big data. Python can be used to build server-side web applications. In this article, we’ll compare two widely used Python Web Frameworks Flask vs Django Both Django and Flask are hugely […]

March 5, 2020 in Django
Deven
Deven wrote

Setting up Authentication in Django

Authentication is a process that confirms a user’s identity. Usually, this is done through a username (or email) and a password. You enter your username (or email) and password, which allows the system to confirm your identity; Authentication means also verify user emails for retention or marketing stuff. This tutorial is the best place if you’re looking to […]

March 2, 2020 in Django & Tutorials
Deven
Deven wrote

Build a Crud application using Vue and Django

As a developer, CRUD (Create-Read-Update-Delete) is one of the basic operations to know. In this tutorial, I’ll show you how to build an API with Django REST Framework and a SPA with Vue.js. I am going to show you step by step from scratch. Before we kick off Learn Vue.js and modern, cutting-edge front-end technologies […]

December 14, 2019 in Django & Tutorials & Vue