Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the basic knowledge of Django project creation

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

Django project creation and basic knowledge, I believe that many inexperienced people do not know what to do, so this paper summarizes the causes of the problem and solutions, through this article I hope you can solve this problem.

Click Project in File, add the project path, and set the compiler

Appears after clicking Create

Where templates is used to store html template files

Using templates has the following advantages:

Separate the Python code of the business logic from the HTML code of the page design

Make the code cleaner and cleaner and easier to maintain

Make Python programmers and HTML/CSS programmers collaborate separately to improve production efficiency

Separate the HTML code so that it can be reused

There is also a directory test1 which is the same as the root directory of the project, but it is actually a project package, in which there must be a _ _ init__.py file.

The settings.py stores configuration information, such as configuration database, password, application, middleware, etc. The internal default code is as follows

"" Django settings for test1 project.Generated by 'django-admin startproject' using Django 1.11.12.For more information on this file, see https://docs.djangoproject.com/en/1.11/topics/settings/For the full list of settings and their values, see https://docs.djangoproject.com/en/1.11/ref/settings/"""import os# Build paths inside the project like this: os.path.join (BASE_DIR) ...) BASE_DIR = os.path.dirname (os.path.dirname (os.path.abspath (_ _ file__) # Quick-start development settings-unsuitable for production# See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secretaries securely key = 'django.contrib.admin', django.contrib.auth',' django.contrib.contenttypes', 5 'bc3 _ nyg81 ^! 54@dc$1m' # SECURITY WARNING: don't run with debug turned on in production debug = TrueALLOWED_HOSTS = [] # Application definitionINSTALLED_APPS = ['django.contrib.admin',' django.contrib.auth', 'django.contrib.contenttypes',' django.contrib.sessions', 'django.contrib.messages',' django.contrib.staticfiles',]

MIDDLEWARE = ['django.middleware.security.SecurityMiddleware',' django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware',' django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware',' django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware',]

ROOT_URLCONF = 'test1.urls'

TEMPLATES = [{'BACKEND':' django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join (BASE_DIR,' templates')], 'APP_DIRS': True,' OPTIONS': {'context_processors': [' django.template.context_processors.debug' 'django.template.context_processors.request',' django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages',],},},]

WSGI_APPLICATION = 'test1.wsgi.application'# Database# https://docs.djangoproject.com/en/1.11/ref/settings/#databases

DATABASES = {'default': {' ENGINE': 'django.db.backends.sqlite3',' NAME': os.path.join (BASE_DIR, 'db.sqlite3'),}} # Password validation# https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validatorsAUTH_PASSWORD_VALIDATORS = [{' NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',} {'NAME':' django.contrib.auth.password_validation.MinimumLengthValidator',}, {'NAME':' django.contrib.auth.password_validation.CommonPasswordValidator',}, {'NAME':' django.contrib.auth.password_validation.NumericPasswordValidator',} ] # Internationalization# https://docs.djangoproject.com/en/1.11/topics/i18n/LANGUAGE_CODE = 'en-us'TIME_ZONE =' UTC'USE_I18N = TrueUSE_L10N = TrueUSE_TZ = True# Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.11/howto/static-files/

STATIC_URL ='/ static/'

Urls is the URL declaration of the Django project, just like the "directory" of your website; the default port is 8000

Mysite/wsgi.py: as an entry point for your project to run on a WSGI-compatible Web server.

Manager.py: manager

After reading the above, have you mastered the methods of Django project creation and basic knowledge? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 245

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report