文件名称:json_to_model:通过代码生成的iOS ORM
文件大小:17KB
文件格式:ZIP
更新时间:2024-06-03 10:21:27
Python
JSON建模 将JSON api转换为Objective-C和Swift模型源文件。 厌倦了编写模型和JSON解析器? 然后自动生成它们! 请考虑贡献代码。 请向我发送错误报告和问题。 用法 假设您有一个json文件input/comment.json : { " __class__ " : " User " , " username " : " Alice " , " age " : 17 , " email " : " alice@somemail.com " , " registered " : true } 跑步: pip install json_to_model json_to_model -i input/ -o output/ -l objc 你会得到: ~/models/User.h ~/models/User.m
【文件预览】:
json_to_model-master
----README.md(1KB)
----tests()
--------output_objc()
--------build_models.sh(105B)
--------input()
--------output_swift()
----LICENSE(1KB)
----setup.py(876B)
----.travis.yml(192B)
----json_to_model()
--------generators()
--------parser.py(3KB)
--------__init__.py(42B)
--------console.py(1KB)