urls.py 網址入口,關聯到對應的views.py中的一個函數(或者generic類),訪問網址就對應一個函數。python
views.py 處理用戶發出的請求,從urls.py中對應過來, 經過渲染templates中的網頁能夠將顯示內容,好比登錄後的用戶名,用戶請求的數據,輸出到網頁。mysql
models.py 與數據庫操做相關,存入或讀取數據時用到這個,固然用不到數據庫的時候 你能夠不使用。sql
templates 文件夾 views.py 中的函數渲染templates中的Html模板,獲得動態內容的網頁,固然能夠用緩存來提升速度。shell
admin.py 後臺,能夠用不多量的代碼就擁有一個強大的後臺。數據庫
settings.py Django 的設置,配置文件,好比 DEBUG 的開關,靜態文件的位置等。django
===============================================================緩存
1. 安裝python3app
https://www.python.org/downloads/release/python-365/函數
切換使用的python版本url
在環境變量中增長
python3: C:\Users\xiguan\AppData\Local\Programs\Python\Python36-32
C:\Users\xiguan\AppData\Local\Programs\Python\Python36-32\Scripts
修改python2下: python.exe 爲python2.exe
2. 安裝pip
https://pip.pypa.io/en/latest/installing/
python get-pip.py --proxy="http://10.144.1.10:8080"
修改python2下pip.exe爲pip2712
3. 安裝pytz
pip install pytz --proxy="http://10.144.1.10:8080"
若是pip失敗,能夠改用pip3,下同
4. 安裝pymysql
pip install pymysql --proxy="http://10.144.1.10:8080"
pip install mysqlclient --proxy="http://10.144.1.10:8080"
5. 下載安裝django
https://www.djangoproject.com/download
pip install Django==2.0.5 --proxy="http://10.144.1.10:8080"
django-admin startproject demo
執行 python manage.py runserver
查看 127.0.0.1:8080是否能夠
================================================
start your project:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'dj',
'USER': 'root',
'PASSWORD': 'btstest',
'HOST': '10.140.16.201',
'PORT': '3306',
}
}
from django.http import HttpResponse
return HttpResponse("<h1>hello django</h1>")
class entity(models.Model):
first_name = models.CharField(max_length=30)
given_name = models.CharField(max_length=30)
from django.contrib import admin
from demo1.models import entity
# Register your models here.
class entityAdmin(admin.ModelAdmin):
list_display = ('first_name','given_name')
ordering = ('first_name',)
search_fields = ('first_name',)
list_filter = ('first_name',)
admin.site.register(entity, entityAdmin)