当前位置:   article > 正文

【python】flask+pymysql 实现Web端操作数据库!_python flask mysql

python flask mysql

Flask是一个使用 Python 编写的轻量级 Web 应用框架。其 WSGI 工具箱采用 Werkzeug ,模板引擎则使用 Jinja2 。Flask使用 BSD 授权。
Flask也被称为 “microframework” ,因为它使用简单的核心,用 extension 增加其他功能。Flask没有默认使用的数据库、窗体验证工具。

PyMySQL 是在 Python3.x 版本中用于连接 MySQL 服务器的一个库,Python2 中则使用 mysqldb。

PyMySQL 遵循 Python 数据库 API v2.0 规范,并包含了 pure-Python MySQL 客户端库。

一.环境配置

flask库和pymysql库使用pip接口进行安装:

  1. pip install flask
  2. pip install pymysql

pip接口详细说明可以看:https://blog.csdn.net/pengneng123/article/details/129556320

二.实际应用

1.首先先实现mysql的主程序,新建xxx.py文件:

  1. import pymysql
  2. class Mysql(object):
  3. def __init__(self):
  4. try:
  5. self.db = pymysql.connect(host="localhost",user="root",password="密码",database="数据库名称")
  6. #游标对象
  7. self.cursor = self.db.cursor()
  8. print("连接成功!")
  9. except:
  10. print("连接失败!")
  11. # 查询数据函数
  12. def getdata(self):
  13. sql = "select * from 表名"
  14. #执行sql语句
  15. self.cursor.execute(sql)
  16. #获取所有的记录
  17. results = self.cursor.fetchall()
  18. return results
  19. #关闭
  20. def __del__(self):
  21. self.db.close()

2.然后新建另一个xxx.py文件,运行flask框架,调用编好的html,实现web端输出数据库表内容。

flask文件

  1. from flask import Flask,render_template,request
  2. app = Flask(__name__)
  3. @app.route("/select",methods=['GET','POST'])
  4. def select():
  5. #调用
  6. db = Mysql()
  7. results = db.getdata()
  8. return render_template("select.html",results=results)
  9. if __name__ == "__main__":
  10. app.run(app.run(debug=True,port=5000,host='127.0.0.1'))

html文件

  1. <body>
  2. <div>
  3. <h4>查询数据</h4>
  4. <table border="1" width="30%" weight="30%">
  5. <thead>
  6. <tr>
  7. <th>id</th>
  8. <th>worknumber</th>
  9. <th>name</th>
  10. <th>gender</th>
  11. <th>age</th>
  12. <th>idcard</th>
  13. <th>entrydate</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. {% for result in results %}
  18. <tr>
  19. <td>{{ result[0]}}</td>
  20. <td>{{ result[1]}}</td>
  21. <td>{{ result[2]}}</td>
  22. <td>{{ result[3]}}</td>
  23. <td>{{ result[4]}}</td>
  24. <td>{{ result[5]}}</td>
  25. <td>{{ result[6]}}</td>
  26. <td><a href="/delete?id={{ result[0] }}"><button>删除</button></a></td>
  27. <td><a href="/submit_insert"><button>插入</button></a></td>
  28. <td><a href="/submit_update"><button>修改</button></a></td>
  29. </tr>
  30. {% endfor %}
  31. </tbody>
  32. </table>
  33. </div>

3.运行flask文件,网页输入http://127.0.0.1:5000/select

输出:

三.总结

删除、插入、修改等操作同查询一样,这边就不放代码了!

想获取源码的小伙伴,点击下方关注下我的微信公众号,后台私信我奥!

公众号不定期也会更新一些有意思的小项目及教程等~

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/432151
推荐阅读
相关标签
  

闽ICP备14008679号