Metadata-Version: 1.1
Name: SRJSON2Mantle
Version: 1.1.1
Summary: Generate Mantle models using JSON files
Home-page: https://github.com/seandeng/SRJSON2Mantle
Author: seandeng
Author-email: dsr_22@foxmail.com
License: MIT
Description: # SRJSON2Mantle
        
        A macOS command line tool that generates Mantle data models based on JSON data.
        
        Feel free to modify the code it creates for you.
        
        ## Features
        
        - Supports nested JSON data, which means JSON2Mantle can generate the correct number of classes that the JSON file contains.
        - Convert field name like var_name to varName automatically.
        
        ## How to install it
        ```
        $ sudo pip install SRJSON2Mantle
        ```
        
        ## How to use it
        ```
        $ srjson2mantle [-h] [--prefix PREFIX] json_file output_dir
        ```
        
        ## Example
        ```
        $ srjson2mantle model.json class --prefix ABC
        ```
        
        will generate Mantle models according to your api_model.json structure. The output files will be created under output_dir directory and the Objective-C classes have the prefix ABC.
        
Keywords: mantle parser objective-c
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Objective C
Classifier: Topic :: Text Processing
