Writing Simple Views for Your First Python Django Application

In the previous article Activate Admin Application for Your Python Django Website, we learned how to activate the built-in Admin Application from Django in your website. In this article, we are going to write simple views for your website. What is a view? In Django, a view is an endpoint that can be accessed by [...]

Read More

Activate Admin Application for Your Python Django Website

In the previous article , we learned how to write two models Post and Comment for your Django application myblog. In this article, we are going to learn how to activate Django’s automatic admin site that provides a convenient interface for users or administrators of your website myblog to create, read, update and delete (CRUD) [...]

Read More

Writing Models for Your First Python Django Application

The previous article Writing Your First Python Django Application is a step-by-step guide on how to write a simple Django application from scratch. In this article, you will learn how to write models for your new Django application. Software Architectural Patterns Before we dive into the code, let’s review two of the most popular server-side [...]

Read More

Writing Your First Python Django Application

Create A Django Project The previous article Introduction to Python’s Django presented an overview of the Django Framework. In this article, we are going to write a simple Django application from scratch. The first step is to create a project using one of Django’s built-in commands django-admin.py. In a Virtualenv, type this command: django-admin.py is [...]

Read More

Introduction to Python’s Django

What is Django? Django is a Python-based web framework. It endorses the doctrine of clear Model-View-Controller design pattern and provides convenient APIs and shortcuts for programmers to maximize their efficiency when creating a website. So, what is a web framework? Web frameworks are programming libraries and tools that are used by programmers to create web [...]

Read More