时间:2021-05-22
本文实例讲述了Python实现手写一个类似django的web框架。分享给大家供大家参考,具体如下:
用与django相似结构写一个web框架。
启动文件代码:
from wsgiref.simple_server import make_server #导入模块from views import *import urlsdef routers(): #这个函数是个元组 URLpattern=urls.URLpattern return URLpattern #这个函数执行后返回这个元组def application(environ,start_response): print("ok1") path=environ.get("PATH_INFO") print("path",path) start_response('200 OK',[('Content-Type','text/html')]) urlpattern=routers() #讲函数的返回值元组赋值 func=None for item in urlpattern: #遍历这个元组 if path==item[0]: #item[0]就是#路径后面的斜杠内容 func=item[1] #item[1]就是对应的函数名 break if func: #如果路径内容存在函数就存在 return func(environ) #执行这个函数 else: print("ok5") return [b"404"] #如果不存在就返回404if __name__=='__main__': print("ok0") t=make_server("",9700,application) print("ok22") t.serve_forever()urls.py文件代码:
from views import *URLpattern = ( ("/login", login), ("/alex", foo1), ("/egon", foo2), ("/auth", auth))views.py文件代码:
def foo1(request): # 定义函数 f=open("templates/alex.html","rb") #打开html 以二进制的模式 data=f.read() #读到data里 f.close() #关闭 return [data] #返回这个datadef foo2(request): f=open("templates/egon.html","rb") data=f.read() f.close() return [data]def login(request): f=open("templates/login.html","rb") data=f.read() f.close() return [data]def auth(request): print("+++",request) user_union,pwd_union=request.get("QUERY_STRING").split("&") _,user=user_union.split("=") _,pwd=pwd_union.split("=") if user=='Yuan' and pwd=="123": return [b"login,welcome"] else: return [b"user or pwd is wriong"]templates目录下的html文件:
alex.html
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta http-equiv="x-ua-compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Title</title></head><body><div>alex</div></body></html>login.html
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body><h2>登录页面</h2><form action="http://127.0.0.1:9700/auth"> <p>姓名:<input type="text" name="user"></p> <p>密码:<input type="password" name="pwd"></p> <p> <input type="submit"> </p></form></body></html>下面如图,是目录结构
访问ip+prot+路径 即为相应的html,功能简单,只是为了熟悉django
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python Socket编程技巧总结》、《Python URL操作技巧总结》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》及《Python入门与进阶经典教程》
希望本文所述对大家Python程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Django2.0通过URL访问上传的文件(pdf、picture等)Django是一个成熟的web框架,基于python实现,有很多的优点,很容易快速上手(详
由于项目需要,最近在用基于Python语言的一个后端框架Django开发web应用。不得不说,Django继承了Python的简洁性,用它来开发web应用简单清
Django是一种基于Python的Web开发框架一、在命令行中创建Django项目(Windows平台、python3.6)1、建立虚拟环境(创建一个独立的P
Django教程Python下有许多款不同的Web框架。Django是重量级选手中最有代表性的一位。许多成功的网站和APP都基于Django。Django是一个
Flask是一个使用Python编写的轻量级Web应用框架。其WSGI工具箱采用Werkzeug,模板引擎则使用Jinja2。很多功能的实现都参考了django