加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
insert2db.py 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
三人禾 提交于 2021-05-21 17:57 . 首次提交
import sqlite3
from GLOBALPATH import Global
if __name__ == '__main__':
db = sqlite3.connect(Global.word2vec_db_path)
cur = db.cursor()
with open(Global.word2vec_txt_path, encoding='utf-8') as f:
txt = f.readline()
print(txt)
i = 1
while txt:
txt = f.readline()
word2vec = txt.split(' ', 1)
# print(word2vec)
# -------- 入库 -------------
sql = 'INSERT INTO W2V (word, vec) VALUES ("{}", "{}")'.format(word2vec[0], word2vec[1])
try:
# 执行sql语句
cur.execute(sql)
if i % 1000 == 0:
# 提交到数据库执行
db.commit()
except Exception as e:
print(e)
# Rollback in case there is any error
db.rollback()
# --------------------------
i += 1
print(i)
# 关闭数据库连接
cur.close()
db.commit()
db.close()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化