Python Django

How To Create / Remove Django Project Application

Each Django project can have multiple applications. Each application can have multiple models and each model has mapped to one table in the backend database. This article will tell you how to create Django project application. How to remove all database table of the application and how to remove the application completely.

How To Create / Remove Django Project Application Read More »

Django User Registration And Login Use Built-in Authorization Example

Django framework provides built-in user management and authorization feature. You can use it to add a user group and user account to the Django project admin web page. You can also use the module django.contrib.auth to integrate the user authorization feature in your python source code. This article will tell you how to use it

Django User Registration And Login Use Built-in Authorization Example Read More »

How To Make A Website With Python And Django

Django web project consists of applications, and each Django web project can contain multiple applications. This article will tell you how to create and add a Django application to a web project. All the operation is implemented in a virtual environment. Please read How To Install Python Django In Virtual Environment first if you do not

How To Make A Website With Python And Django Read More »

How To Install Python Django In Virtual Environment

When you develop a Python application, you may want to make your develop environment-used libraries independent from other libraries that the system provided or other projects used. And then create the project in that isolated environment, so that the project can use the library it needs only and each project will not influence each other.

How To Install Python Django In Virtual Environment Read More »

Python Automation Scripts Examples Use Django And Selenium

Django is the most popular web framework in the python world. You can use it to create a website quickly and simply. Selenium is the most popular website automation testing framework, it can be used to implement website automation function testing in source code with coding language python, java, etc. This example will tell you

Python Automation Scripts Examples Use Django And Selenium Read More »

,