Python 一路走来 Django
?
Web 框架 (本質:socket)
Python web框架 自己實現socket - Tornado 基于wsgi -djago? 所有web框架由以下擴展:? #!/usr/bin/env python #coding:utf-8import socketdef handle_request(client):buf = client.recv(1024)client.send("HTTP/1.1 200 OK\r\n\r\n")client.send("Hello, Seven")def main():sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)sock.bind(('localhost',8000))sock.listen(5)while True:connection, address = sock.accept()handle_request(connection)connection.close()if __name__ == '__main__':main()client.send 可以換成讀取文件
WSGI(Web Server Gateway Interface)是一種規范,它定義了使用python編寫的web app與web server之間接口格式,實現web app與web server間的解耦。?
自己開發一個web框架(基于wsgi):
?
#!/usr/bin/env python #coding:utf-8from wsgiref.simple_server import make_serverdef RunServer(environ, start_response):start_response('200 OK', [('Content-Type', 'text/html')])return '<h1>Hello, web!</h1>'if __name__ == '__main__':httpd = make_server('', 8000, RunServer)print "Serving HTTP on port 8000..."httpd.serve_forever()# while true:
#socket.accept() #內部本質做了這兩步
MVC/MTV
處理用戶請求 ? 放置HTML模版 ? 操作數據庫
Controllers ? ? ? ?Views ? ? ? ? ? ?Modals
Views ? ? ? ? ? ? ? ?Template ? ? ?Modals
Django ?> MTV
?
?
Django?
安裝:
pip3 install django
添加環境變量
1.創建project
django-admin startproject mysite
mysite
mysite:
-setting.py ?#配置文件
-url.py #路由系統
-wsgi #WSGI
manage.py ? #django程序啟動文件
2. 創建app
teminal cd mysite
python3 manage.py startapp cmdb
?
3。 編寫代碼
urls.py
view.py
4. 啟動django
python3 manage.py runserver 127.0.0.1:8000
5. 使用模版
setting配置
render(request,'路徑')
6.靜態文件配置
STATIC_URL = '/fff/'STATICFILES_DIRS = (
os.path.join(BASE_DIR,'statics'),
)
?7. 連接數據庫
注冊app
settings.py
INTSALLED_APPS -[
'cmdb',
]
models:
class UserInfo(models.Model):user = models.CharField(max_length=32)
email = models.CharField(max_length=32)
執行命令:
python3 manage.py makemigrations python3 manage.py migrate
?
?
?
?
?
?
轉載于:https://www.cnblogs.com/xiaoxinfengjixuchui/p/5836580.html
總結
以上是生活随笔為你收集整理的Python 一路走来 Django的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ActiveMQ的介绍及使用实例.
- 下一篇: [转]密码技术-实现数字信封和数字签名