JSON模式生成器Python

时间:2019-05-08 14:42:56

标签: python json

我正在使用此资源来生成模式https://github.com/wolverdude/GenSON/

我有以下JSON文件

{
 'name':'Sam',
},
{
 'name':'Jack',
}

等等...

我想知道如何遍历大型JSON文件。我想解析每个JSON文件并将其传递给GENSON以生成架构

{
  "$schema": "http://json-schema.org/schema#",
  "type": "object",
  "properties": {
     "name": {
       "type": [
        "string"
      ]
   }
},
  "required": [
    "name"
  ]
}

1 个答案:

答案 0 :(得分:1)

我认为您应该:

import json
from genson import SchemaBuilder

builder = SchemaBuilder()
with open(filename, 'r') as f:
    datastore = json.load(f)
    builder.add_object(datastore )

builder.to_schema()

文件名是您的文件路径。