软件工程 | 网络工程1934 |
---|---|
这个作业要求在哪里 | 项目冲刺 |
这个作业的目标 | 站立式会议、燃尽图、签入记录、运行截图、每日总结 |
一、每日站立式会议
昨天完成的工作:
- 完成了背单词以及复习单词模块
- 对单词数据库的增删改查
工作中遇到的困难:
- 后台链接数据库,再让前端使用后台的接口
- 背单词模块从后台到前端的返回值
今天计划完成的工作:
- 完成查单词模块
- 继续进行单词本管理的开发
二、项目燃尽图
三、成员代码
创建单词表
def createtable(userid):#创建单词表
db = pymysql.connect(host="localhost",user="root",password="28853379", database="group6")
cursor=db.cursor()
sql="create table group6.word(wordid int not null auto_increment primary key,english char(50),chinese char(100),book char(50));"
#sql="create table group6.user-%s(wordid int identitiy,status char(10));".format(userid)
cursor.execute(sql)
db.commit()
导入单词本
def importwords(path):#导入自己单词本的函数
english=[]
chinese=[]
with open(path, 'r',encoding="gbk") as f:
file = f.readlines()
#file.split("\n")
for data in file:
words=re.sub('\n','',data).split()
# data.split(" ")
english.append(words[0])
chinese.append(words[1])
return english,chinese
四、程序运行截图
五、每日总结
啊啦,暂时没有哦