文件名称:json-schema-codegen:从 JSON 模式文件生成代码
文件大小:311KB
文件格式:ZIP
更新时间:2024-08-24 15:48:52
javascript python flow json-schema-generator JavaScript
json-schema-codegen 从 JSON 模式文件生成代码。 目录 介绍 这是一个命令行工具,用于获取文件并自动生成代码。 例如这个json-schema定义: { " $schema " : " http://json-schema.org/draft-04/schema# " , " title " : " Test " , " type " : " object " , " properties " : { " id " : { " type " : " integer " } } } 将生成此 Python 代码: class Test ( object ): def __init__ ( self , data = None ): data = data or {} self . id =