检查 python 中的 JSON 验证器输出 True 或 False

发布于 2025-01-10 06:36:11 字数 647 浏览 1 评论 0原文

你好,我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文