Metadata-Version: 1.1
Name: jimit
Version: 0.17
Summary: James Iter's common library by python.
Home-page: https://github.com/jamesiter/jimitlib-py.git
Author: James Iter
Author-email: james.iter.cn@gmail.com
License: BSD
Description: James Iter's library by python
        ==============================
        
        建议
        ----
        
        -  基于各主干的枝叶状态码从50开始，如412主干，则用户自定义枝叶状态码由41250起。
        
        --------------
        
        示例
        ----
        
        -  枝叶状态码合并
        
        .. code:: python
        
            own_state_branch = {
                    '41250': {
                        'code': '41250',
                        'zh-cn': '账密不匹配'
                        }
                    }
            ji.state_code.index_state['branch'] = dict(ji.state_code.index_state['branch'], **own_state_branch)
            print json.dumps(ji.Commons.exchange_state(41250), ensure_ascii=False)
        
            {
                "code": "412",
                "zh-cn": "先决条件失败",
                "en-us": "Precondition Failed",
                "sub": {
                    "zh-cn": "账密不匹配",
                    "code": "41250"
                }
            }
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
