我正在使用此资源来生成模式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"
]
}
答案 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()
文件名是您的文件路径。