1 Star 0 Fork 10

地球的聪/chinese-poetry

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
test_poetry.py 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
OAO 提交于 2019-07-22 21:45 . Fix: 文件夹名字没有改
#! -*- coding: utf-8 -*-
# import sqlite3
import os
import json
import sys
import traceback
import functools
def check_json(f, _dir):
if not f.endswith('.json'):
return True
filepath = os.path.join(_dir, f)
with open(filepath) as file:
try:
_ = json.loads(file.read())
return True
except:
sys.stderr.write(traceback.format_exc())
assert False, u"校验(%s)失败" % f
def __check_path__(path):
"""校验 指定目录 中的 json 文件"""
[ check_json(f, path) for f in os.listdir(path) ]
test_shi = functools.partial(__check_path__, './json')
test_ci = functools.partial(__check_path__, './ci')
test_shijing = functools.partial(__check_path__, './shijing')
test_lunyu = functools.partial(__check_path__, './lunyu')
test_huajianji = functools.partial(__check_path__, u'./wudai/huajianji/')
test_nantang2 = functools.partial(__check_path__, u'./wudai/nantang/')
test_youmengying = functools.partial(__check_path__, u'./youmengying/')
test_sishuwujing = functools.partial(__check_path__, u'./sishuwujing/')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/ixcong/chinese-poetry.git
[email protected]:ixcong/chinese-poetry.git
ixcong
chinese-poetry
chinese-poetry
master

搜索帮助