python练习六—简单的论坛
进行简单的web应用之后,接下来就应该学习python连接数据库,这个练习就是在上个练习的基础上将信息保存到数据库,这个联系也没有什么特别的,有之前java web的经验的话,很好理解,主要还是一个MySQLdb的学习。代码如下(创建数据库就忽略了吧):
从数据库查询message以列表的形式显示main.py
#! /usr/bin/env python
# -*- coding=utf-8 -*- import cgitb
import MySQLdb # 声明文本格式
print 'Content-type:text/html\n' cgitb.enable() # 连接数据库
conn = MySQLdb.connect(user='root', db='test')
curs = conn.cursor() print """
<html>
<head>
<title>主页</title>
</head>
<body>
<h1>论坛帖子列表</h1>
""" # 将数据库中记录读取到dic
curs.execute('select * from messages')
# mysql没有这样的方法
# rows = curs.dictfetchall()
# 获取表的列的名称
names = [d[0] for d in curs.description]
print names
rows = [dict(zip(names, row)) for row in curs.fetchall()]
print rows # 主贴
toplevel = []
# 回复帖
children = {} # 区分出主贴和回复帖
for row in rows:
parent_id = row['reply_to']
if parent_id is None:
toplevel.append(row)
else:
children.setdefault(parent_id, []).append(row) # 格式化帖子列表
def format(row):
print '<p><a href="view.py?id=%(id)s">%(subject)s </a></p>'% row
try:
kids = children[row['id']]
except KeyError:
pass
else:
# 递归格式化帖子的子贴(回复)
print '<blockquote>'
for kid in kids:
format(kid)
print '</blockquote>'
print '<p>' # 调用format格式化帖子
for row in toplevel:
format(row) print """
</p>
<hr />
<p><a href="edit.py">发帖</a></p>
</bofy>
</html>
"""
查看一个具体帖子的详细内容view.py
#! /usr/bin/env python
# -*- coding=utf-8 -*- import cgitb
import sys
import cgi
import MySQLdb # 声明文本格式
print 'Content-type:text/html\n' cgitb.enable() # 接受参数
form = cgi.FieldStorage()
id = form.getvalue('id') try:
id = int(id)
except :
print 'Invalid id'
sys.exit() # 连接数据库
conn = MySQLdb.connect(user='root', db='test')
curs = conn.cursor() print """
<html>
<head>
<title>View message</title>
</head>
<body>
<h1>View Message</h1>
""" # 将数据库中记录读取到dic
curs.execute('select * from messages where id = %i' % id)
# mysql没有这样的方法
# rows = curs.dictfetchall()
# 获取表的列的名称
names = [d[0] for d in curs.description]
#print names
rows = [dict(zip(names, row)) for row in curs.fetchall()]
#print rows # 如果该id查询不到数据,说明不存在该id
if not rows:
print 'Unknow message id'
sys.exit() # 获取返回的第一条数据
row = rows[0] print """
<p>
<b> Subject: </b>%(subject)s <br />
<b> sender: </b>%(sender)s <br />
<pre>%(text)s</pre>
</p>
<hr />
<a href="main.py">back to main page</a>>
|
<a href="edit.py?reply_to=%(id)s"> reply</a>
</bofy>
</html>
""" % row
查看完帖子之后回帖,edit.py
#! /usr/bin/env python
# -*- coding=utf-8 -*- import cgitb
import sys
import cgi
import MySQLdb # 声明文本格式
print 'Content-type:text/html\n' cgitb.enable() # 接受参数
form = cgi.FieldStorage()
reply_to = form.getvalue('reply_to') # 连接数据库
conn = MySQLdb.connect(user='root', db='test')
curs = conn.cursor() print """
<html>
<head>
<title>View message</title>
</head>
<body>
<h1>View Message</h1>
<form action="save.py" method="POST">
""" subject = ''
if reply_to is not None:
print "<input type='hidden' name='reply_to' value='%s' />" % reply_to
curs.execute('select * from messages where id=%s' % reply_to)
subject = curs.fetchone()[1]
print subject
if not subject.startswith('Re:'):
subject = 'Re:'+ subject print """
<b>Subject:</b><br />
<input type='text' size='40' name='subject' value='%s' /><br />
<b>Sender:</b><br />
<input type='text' size='40' name='sender' /><br />
<b>Message:</b><br />
<textarea name='text' cols='40' rows='20'></textarea><br />
<input type='submit' value='Save'/>
</form>
<hr />
<a href='main.py'>Back to the main page</a>'
</body>
</html>
""" % subject
编辑完帖子的时候,提交save.py
#!/usr/bin/python
# -*- coding=utf-8 -*- print 'Content-type: text/html\n' import cgitb; cgitb.enable() # 将单引号转义,在使用insert语句的时候字符串就不需要添加引号
def quote(string):
if string:
return string.replace("'", "\\'")
else:
return string import MySQLdb
conn = MySQLdb.connect(db='test', user='root')
curs = conn.cursor() import cgi, sys
form = cgi.FieldStorage() sender = quote(form.getvalue('sender'))
subject = quote(form.getvalue('subject'))
text = quote(form.getvalue('text'))
reply_to = form.getvalue('reply_to') if not (sender and subject and text):
print 'Please supply sender, subject, and text'
sys.exit() if reply_to is not None:
query = """
insert into messages(reply_to, sender, subject, text)
values(%i, '%s', '%s', '%s')""" % (int(reply_to), sender, subject, text)
else:
query = """
insert into messages(sender, subject, text)
values('%s', '%s', '%s')""" % (sender, subject, text) curs.execute(query)
conn.commit() print """
<html>
<head>
<title>Message Saved</title>
</head>
<body>
<h1>Message Saved</h1>
<hr />
<a href='main.py'>Back to the main page</a>
</body>
</html>s
"""
完整代码
http://pan.baidu.com/s/1gfbLDtx
python练习六—简单的论坛的更多相关文章
- 孤荷凌寒自学python第六十六天学习mongoDB的基本操作并进行简单封装5
孤荷凌寒自学python第六十六天学习mongoDB的基本操作并进行简单封装5并学习权限设置 (完整学习过程屏幕记录视频地址在文末) 今天是学习mongoDB数据库的第十二天. 今天继续学习mongo ...
- 孤荷凌寒自学python第六十五天学习mongoDB的基本操作并进行简单封装4
孤荷凌寒自学python第六十五天学习mongoDB的基本操作并进行简单封装4 (完整学习过程屏幕记录视频地址在文末) 今天是学习mongoDB数据库的第十一天. 今天继续学习mongoDB的简单操作 ...
- 孤荷凌寒自学python第六十四天学习mongoDB的基本操作并进行简单封装3
孤荷凌寒自学python第六十四天学习mongoDB的基本操作并进行简单封装3 (完整学习过程屏幕记录视频地址在文末) 今天是学习mongoDB数据库的第十天. 今天继续学习mongoDB的简单操作, ...
- 孤荷凌寒自学python第六十三天学习mongoDB的基本操作并进行简单封装2
孤荷凌寒自学python第六十三天学习mongoDB的基本操作并进行简单封装2 (完整学习过程屏幕记录视频地址在文末) 今天是学习mongoDB数据库的第九天. 今天继续学习mongoDB的简单操作, ...
- 孤荷凌寒自学python第六十二天学习mongoDB的基本操作并进行简单封装1
孤荷凌寒自学python第六十二天学习mongoDB的基本操作并进行简单封装1 (完整学习过程屏幕记录视频地址在文末) 今天是学习mongoDB数据库的第八天. 今天开始学习mongoDB的简单操作, ...
- 用Python写一个简单的Web框架
一.概述 二.从demo_app开始 三.WSGI中的application 四.区分URL 五.重构 1.正则匹配URL 2.DRY 3.抽象出框架 六.参考 一.概述 在Python中,WSGI( ...
- 简学Python第六章__class面向对象编程与异常处理
Python第六章__class面向对象编程与异常处理 欢迎加入Linux_Python学习群 群号:478616847 目录: 面向对象的程序设计 类和对象 封装 继承与派生 多态与多态性 特性p ...
- 孤荷凌寒自学python第六十天在windows10上搭建本地Mongodb数据服务
孤荷凌寒自学python第六十天在windows10上找搭建本地Mongodb数据服务 (完整学习过程屏幕记录视频地址在文末) 今天是学习mongoDB数据库的第六天.成功在本地搭建了windows ...
- Python正则表达式的简单应用和示例演示
前一阵子小编给大家连续分享了十篇关于Python正则表达式基础的文章,感兴趣的小伙伴可以点击链接进去查看.今天小编给大家分享的是Python正则表达式的简单应用和示例演示,将前面学习的Python正则 ...
随机推荐
- Z-Stack - Modification of Zigbee Device Object for better network access management
写一份赏心悦目的工程文档,是很困难的事情.若想写得完善,不仅得用对工具(use the right tools),注重文笔,还得投入大把时间,真心是一件难度颇高的事情.但,若是真写好了,也是善莫大焉: ...
- html或者jsp页面刷新问题
setTimeout(function(){window.location.reload();//刷新当前页面.},2000) window.location.reload();//刷新当前页面.pa ...
- 安装MySQL5.7.19 网上的文章参考 并做了部分修改
1,从官方网址下载MySQL5.7.19源码包 http://dev.MySQL.com/downloads/mysql/#downloads 2,安装好CentOS6.7 64位操作系统. ...
- Djangoの1
有ip无路由是404,ip也无是无法访问此网站.url中?前的是路由,?后是GET请求的各组参数. 子项目和子应用下的两类urls.py:[]内的各个路由函数url,其首参网址的开头无/,结尾有/ ...
- ACM计划
原文 :http://027xbc.blog.163.com/blog/static/128159658201141371343475/ ACM主要是考算法的,主要时间是花在思考算法上,不是花在写程序 ...
- 关于NGUI Shader 和 Draw Call的优化 & 模糊shader
序: 1.项目过程中不可避免的需要用到大量Shader 和 UITexture,由于Ngui对Shader支持非常糟糕,导致项目drawCall异常的高 2.Panel裁剪无法裁剪自定义shader内 ...
- logminer日志挖掘
参考自:https://blog.csdn.net/yes_is_ok/article/details/79296614 原文转自:http://blog.itpub.net/26736162/vie ...
- PYTHON黑帽编程 4.1 SNIFFER(嗅探器)之数据捕获--补充
荒废了一个多月了,重新捡起来,手生了不少.发现在<4.1下>的文章里没有 提到pcap库,实在是不应该. 在网络数据分析的工具中,tcpdump绝对是大名鼎鼎,tcpdump底层是libp ...
- 在Spring-Boot中实现通用Auth认证的几种方式
code[class*="language-"], pre[class*="language-"] { background-color: #fdfdfd; - ...
- ZKWeb网页框架2.1正式发布
2.1.0更新的内容有 更新引用类库 NHibernate 5.1.0 Npgsql 3.2.7 MySqlConnector 0.37.0 Dapper 1.50.4 Dommel 1.10.1 Z ...