一,web.py简介
web.py是一款轻量级的python web开发框架,简单,高效,学习成本低,特别适合作为python web开发的入门框架。官方站点:http://webpy.org/
二,web.py安装
1,下载:http://webpy.org/static/web.py-0.33.tar.gz
2,解压并进入web.py-0.33目录,安装:python setup.py install
三,创建简易博客
1,目录说明:主目录博客/,模板目录博客/模板
2,在数据库“测试”中创建表“条目”
- CREATE TABLE条目(
- id INT AUTO_INCREMENT,
- 标题文字,
- 内容文字,
- posted_on DATETIME,
- 主键(id)
- );
3,在主目录创建blog.py,博客/ blog.py
- #载入框架
- 导入网站
- #载入数据库操作模型(稍后创建)
- 进口模式
- #URL映射
- urls =(
- '/','索引',
- '/ view /(/ d +)','查看',
- '/ new','新',
- '/ delete /(/ d +)','删除',
- '/ edit /(/ d +)','编辑',
- '/ login','登录',
- '/ logout','退出',
- )
- app = web.application(urls,globals())
- #模板公共变量
- t_globals = {
- 'datestr':web.datestr,
- 'cookie':web.cookies,
- }
- #指定模板目录,并设定公共模板
- render = web.template.render('templates',base ='base',globals = t_globals)
- #创建登录表单
- login = web.form.Form(
- web.form.Textbox( '用户名'),
- web.form.Password( '密码'),
- web.form.Button( '登录')
- )
- #首页类
- 类索引:
- def GET(个体经营):
- login_form = login()
- posts = model.get_posts()
- return render.index(posts,login_form)
- def POST(个体经营):
- login_form = login()
- 如果login_form.validates():
- 如果login_form.d.username =='admin'/
- 和login_form.d.password =='admin':
- web.setcookie('username',login_form.d.username)
- 提高web.seeother('/')
- #查看文章类
- 课程查看:
- def GET(self,id):
- post = model.get_post(int(id))
- return render.view(post)
- #新建文章类
- 新课程:
- form = web.form.Form(
- web.form.Textbox( '标题',
- web.form.notnull,
- 大小= 30,
- description ='帖子标题:'),
- web.form.Textarea( '内容',
- web.form.notnull,
- 行= 30,
- COLS = 80,
- description ='发布内容:'),
- web.form.Button('帖子条目'),
- )
- def GET(个体经营):
- form = self.form()
- return render.new(form)
- def POST(个体经营):
- form = self.form()
- 如果不是form.validates():
- return render.new(form)
- model.new_post(form.d.title,form.d.content)
- 提高web.seeother('/')
- #删除文章类
- 类删除:
- def GET(self,id):
- model.del_post(INT(ID))
- 提高web.seeother('/')
- #编辑文章类
- 课程编辑:
- def GET(self,id):
- post = model.get_post(int(id))
- form = New.form()
- form.fill(POST)
- return render.edit(post,form)
- def POST(self,id):
- form = New.form()
- post = model.get_post(int(id))
- 如果不是form.validates():
- return render.edit(post,form)
- model.update_post(int(id),form.d.title,form.d.content)
- 提高web.seeother('/')
- #退出登录
- 退出:
- def GET(个体经营):
- web.setcookie('username','',expires = -1)
- 提高web.seeother('/')
- #定义404错误显示内容
- def notfound():
- return web.notfound(“抱歉,找不到您要查找的页面。”)
- app.notfound = notfound
- #运行
- 如果__name__ =='__ main__':
- app.run()
4,在主目录创建model.py,博客/ model.py
- 导入网站
- 导入日期时间
- #数据库连接
- db = web.database(dbn ='mysql',db ='test',user ='root',pw ='123456')
- #获取所有文章
- def get_posts():
- return db.select('entries',order ='id DESC')
- #获取文章内容
- def get_post(id):
- 尝试:
- return db.select('entries',where ='id = $ id',vars = locals())[0]
- 除了IndexError:
- 返回无
- #新建文章
- def new_post(标题,文字):
- db.insert( '条目',
- title = title,
- content = text,
- posted_on = datetime.datetime.utcnow())
- #删除文章
- def del_post(id):
- db.delete('entries',where ='id = $ id',vars = locals())
- #修改文章
- def update_post(id,title,text):
- db.update( '条目',
- where ='id = $ id',
- vars = locals(),
- title = title,
- content = text)
5,在模板目录依次创建:base.html文件,edit.html,index.html的,new.html,view.html
- <! - base.html - >
- $ def with(page)
- <HTML>
- <HEAD>
- <title>我的博客</ title>
- <!MCE:风格> <! -
- #menu {
- 宽度:200px;
- 漂浮:对;
- }
- - > </ mce:style> <style mce_bogus =“1”> #menu {
- 宽度:200px;
- 漂浮:对;
- }
- </样式>
- </ HEAD>
- <BODY>
- <ul id =“menu”>
- <li> <a href="/" mce_href="">主页</a> </ li>
- $ if cookie()。get('username'):
- <li> <a href="/new" mce_href="new">新帖</a> </ li>
- </ UL>
- $:页
- </ BODY>
- </ HTML>
- <! - edit.html - >
- $ def with(post,form)
- <h1>编辑$ form.d.title </ h1>
- <form action =“”method =“post”>
- $:form.render()
- </ FORM>
- <h2>删除帖子</ h2>
- <form action =“/ delete / $ post.id”method =“post”>
- <input type =“submit”value =“删除帖子”/>
- </ FORM>
- <! - index.html - >
- $ def with(posts,login_form)
- <h1>博客帖子</ h1>
- $ if not cookie()。get('username'):
- <form action =“”method =“post”>
- $:login_form.render()
- </ FORM>
- $ ELSE:
- 欢迎$ cookie()。get('用户名')!<a href="/logout" mce_href="logout">退出</a>
- <UL>
- $帖子帖子:
- <LI>
- <a href="/view/$post.id" mce_href="view/$post.id"> $ post.title </a>
- 在$ post.posted_on上
- $ if cookie()。get('username'):
- <a href="/edit/$post.id" mce_href="edit/$post.id">修改</a>
- <a href="/delete/$post.id" mce_href="delete/$post.id"> Del </a>
- </ LI>
- </ UL>
- <! - new.html - >
- $ def with(form)
- <h1>新博文</ h1>
- <form action =“”method =“post”>
- $:form.render()
- </ FORM>
- <! - view.html - >
- $ def with(post)
- <H1> $ post.title </ H1>
- $ post.posted_on <br />
- $ post.content
6,进入主目录在命令行下运行:python blog.py,将启动web服务,在浏览器输入:http:// localhost:8080 /,简易博客即已完成。
注意:html中药以$开头,不能以注释开头(比如<! - view.html - > )否则会报错