web架構
web架構(web framework)是一種開發架構,用來支援動态網站、網絡應用和網絡服務的開發。這大多數的web架構提供了一套開發和部署網站的方式,也為web行為提供了一套通用的方法。web架構已經實作了很多功能,開發人員使用架構提供的方法并且完成自己的業務邏輯,就能快速開發web應用了。浏覽器和伺服器的是基于HTTP協定進行通信的,也可以說web架構就是在以上十幾行代碼基礎上擴充出來的,有很多簡單友善使用的方法,大大提高了開發的效率。
1.wsgiref子產品
最簡單的web應用就是先把HTML用檔案儲存好,用一個現成的HTTP伺服器軟體,接收使用者請求,從檔案中讀取HTML,傳回。
如果要動态生成HTML,就需要把上述步驟自己來實作。不過,接收HTTP請求,解析HTTP請求,發送HTTP響應都是苦力活,如果我們自己來寫這些底層代碼,還沒開始寫動态HTML呢,就得花個把月去讀HTTP規範。
正确的做法是底層代碼由專門的伺服器軟體實作,我們用Python專注于生成HTML文檔。因為我們不希望接觸到TCP連接配接、HTTP原始請求和響應格式,是以,需要一個統一的接口協定來實作這樣的伺服器軟體,讓我們專心用Python編寫Web業務。這個接口就是WSGI:Web Server Gateway Interface。而wsgiref子產品就是python基于wsgi協定開發的服務子產品。
from wsgiref.simple_server import make_server
def application(environ, start_response):
start_response('200 OK', [('Content-Type', 'text/html')])
return [b'<h1>Hello, web!</h1>']
httpd = make_server('', 8080, application)
print('Serving HTTP on port 8000...')
# 開始監聽HTTP請求:
httpd.serve_forever()
2.DIY一個web架構
models.py
import pymysql
#連接配接資料庫
conn = pymysql.connect(host='127.0.0.1',port= 3306,user = 'root',passwd='',db='web') #db:庫名
#建立遊标
cur = conn.cursor()
sql='''
create table userinfo(
id INT PRIMARY KEY ,
name VARCHAR(32) ,
password VARCHAR(32)
)
'''
cur.execute(sql)
#送出
conn.commit()
#關閉指針對象
cur.close()
#關閉連接配接對象
conn.close()
models.py
啟動檔案manage.py
from wsgiref.simple_server import make_server
from app01.views import *
import urls
def routers():
URLpattern=urls.URLpattern
return URLpattern
def applications(environ,start_response):
path=environ.get("PATH_INFO")
start_response('200 OK', [('Content-Type', 'text/html'),('Charset', 'utf8')])
urlpattern=routers()
func=None
for item in urlpattern:
if path==item[0]:
func=item[1]
break
if func:
return [func(environ)]
else:
return [b"<h1>404!<h1>"]
if __name__ == '__main__':
server=make_server("",8889,applications)
print("server is working...")
server.serve_forever()
manage.py
urls.py
from app01.views import *
URLpattern = (
("/login/", login),
)
urls.py
views
import pymysql
from urllib.parse import parse_qs
def login(request):
if request.get("REQUEST_METHOD")=="POST":
try:
request_body_size = int(request.get('CONTENT_LENGTH', 0))
except (ValueError):
request_body_size = 0
request_body = request['wsgi.input'].read(request_body_size)
data = parse_qs(request_body)
user=data.get(b"user")[0].decode("utf8")
pwd=data.get(b"pwd")[0].decode("utf8")
#連接配接資料庫
conn = pymysql.connect(host='127.0.0.1',port= 3306,user = 'root',passwd='',db='web') # db:庫名
#建立遊标
cur = conn.cursor()
SQL="select * from userinfo WHERE NAME ='%s' AND PASSWORD ='%s'"%(user,pwd)
cur.execute(SQL)
if cur.fetchone():
f=open("templates/backend.html","rb")
data=f.read()
data=data.decode("utf8")
return data.encode("utf8")
else:
print("OK456")
return b"user or pwd is wrong"
else:
f = open("templates/login.html", "rb")
data = f.read()
f.close()
return data
views.py
login.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h4>登入頁面</h4>
<form action="" method="post">
使用者名 <input type="text" name="user">
密碼 <input type="text" name="pwd">
<input type="submit">
</form>
</body>
</html>
login.html
backend.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h4>welcome to oldboy!</h4>
</body>
</html>
backend.html
yuan這個package就是一個web架構,下載下傳這個web架構就可以快速實作一些簡單的web功能,比如檢視時間。