检查 python 中的 JSON 验证器输出 True 或 False
你好,我使用 python lib“from jsonschema import validate” 当我使用它时,我猜它似乎正在工作,但是,当我执行这个脚本时,如何在 CLI 中得到确认。
Python 文件
from jsonschema import validate
import yaml
yaml_schema = open("test.yaml", "r")
json_schema = open("test.json", "r")
validate(yaml.full_load(json_schema.read()), yaml.full_load(yaml_schema.read())) # passes
test.yaml 文件
type: object
properties:
testing:
type: array
items:
enum:
- this
- is
- a
- test
test.json
{
"testing": ["this", "is", "a", "test"]
}
我如何从终端获得确认,有人给我一个方法
Hi im using the python lib "from jsonschema import validate"
When I using it with it seems it's working I guess but, how can I get a confirm in my CLI when I'm executing this script.
Python file
from jsonschema import validate
import yaml
yaml_schema = open("test.yaml", "r")
json_schema = open("test.json", "r")
validate(yaml.full_load(json_schema.read()), yaml.full_load(yaml_schema.read())) # passes
test.yaml file
type: object
properties:
testing:
type: array
items:
enum:
- this
- is
- a
- test
test.json
{
"testing": ["this", "is", "a", "test"]
}
how can I get a confirm from the terminal, has someone a method for me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论