1 Star 0 Fork 3

朱罗俊/QQchatbot

forked from 蔡子辰/QQchatbot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
load_dictionary.py 797 Bytes
一键复制 编辑 原始数据 按行查看 历史
jiangyuxiaoxiao 提交于 2021-11-13 10:43 . ok
import json
dictionary = {}
indexname = ".\\Bot_data\\Dictionary\\index.json"
def dictionary_initial():
# 读取词库目录索引文件
with open(indexname, encoding="utf-8") as index_file:
index = json.load(index_file)
index = index['index']
print(index)
# 遍历读取每个词库
for dictionary_name in index:
with open(dictionary_name, encoding="utf-8") as dict_file:
dict_piece = json.load(dict_file)
# 遍历插入字典
for sentence in dict_piece:
# 防止词库冲突 先加载的词库优先级高,不会被后加载的词库覆盖
if sentence not in dictionary:
dictionary[sentence] = dict_piece[sentence]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/zhuluojun/QQchatbot.git
git@gitee.com:zhuluojun/QQchatbot.git
zhuluojun
QQchatbot
QQchatbot
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385