python 操作mysql数据库简单封装
第一步,安装pymysql库:pip install pymysql第二步,创建一个db_utils.py第三步,上封装好的代码:class MySqlUtils: def __init__(self, host=None, port=0, user=None, passwd=None, db=None, charset='utf8'): self.conn = pymysql.connect(host=host,