1 Star 1 Fork 0

Tippy/FollowAnime

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
DBUtil.py 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
import pymysql
from config import *
class DBUtil:
db = None
cursor = None
def __init__(self):
self.db = pymysql.connect(host=DB_ADDRESS, port=3306, user=DB_USER, password=DB_PASSWORD, database=DB_BASE)
self.cursor = self.db.cursor()
def get_follows(self):
"""
获取追番列表
:return:
"""
sql = "SELECT * FROM follow"
try:
self.cursor.execute(sql)
return self.cursor.fetchall()
except:
return []
def delete_follow(self, tmid):
"""
删除一条数据
:param tmid: 数据的tmId
:return:
"""
sql = "DELETE FROM follow where tmId=" + str(tmid)
try:
self.cursor.execute(sql)
self.db.commit()
except:
self.db.rollback()
def close(self):
"""
关闭数据库
:return:
"""
if self.cursor:
self.cursor.close()
if self.db:
self.db.close()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/tippy_q/FollowAnime.git
git@gitee.com:tippy_q/FollowAnime.git
tippy_q
FollowAnime
FollowAnime
master

搜索帮助