加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
image_utils.py 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
韩林峰 提交于 2024-04-24 21:52 . added a file
import json
import os
import logging
# 创建日志记录器
def create_logger():
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s | 文件:%(filename)s,函数:%(funcName)s')
return logging
# 加载语言数据
def load_language_data():
print(os.getcwd())
if os.path.exists('language.json') and os.path.getsize('language.json') > 0:
with open('language.json', 'r', encoding = 'utf-8') as f:
try:
language_data = json.load(f)
return language_data
except json.JSONDecodeError:
print("JSONDecodeError: Could not parse the file")
else:
print("File does not exist or the file is empty")
# 写入语言数据
def write_language_data(language_data, key, value):
language_data[key] = value
with open('language.json', 'w', encoding='utf-8') as f:
json.dump(language_data, f, ensure_ascii=False, indent=4)
#################### 以下是载入代码 ####################
language_data = load_language_data()
logging = create_logger()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化